:root {
    --abv-bg: #f6f6f7;
    --abv-surface: #ffffff;
    --abv-black: #111111;
    --abv-wine: #c60d18;
    --abv-wine-2: #a30b14;
    --abv-border: #e6e6e8;
    --abv-text: #171717;
    --abv-muted: #666666;
    --abv-radius: 18px;
    --abv-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] {
    --abv-bg: #0f0f10;
    --abv-surface: #171719;
    --abv-black: #f8f8f8;
    --abv-wine: #c60d18;
    --abv-wine-2: #a30b14;
    --abv-border: #2a2a2d;
    --abv-text: #f4f4f5;
    --abv-muted: #aaaaaa;
    --abv-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Cairo', sans-serif;
    background: var(--abv-bg);
    color: var(--abv-text);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.abv-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.abv-page-shell {
    min-height: 100vh;
}

.abv-page-hero {
    padding: 70px 0 30px;
}

.abv-page-eyebrow {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(198, 13, 24, 0.08);
    color: var(--abv-wine);
    font-size: 12px;
    font-weight: 700;
}

.abv-page-title {
    margin: 16px 0 10px;
    font-size: 40px;
    line-height: 1.1;
}

.abv-page-desc {
    max-width: 760px;
    color: var(--abv-muted);
    line-height: 1.8;
}

.abv-page-section {
    padding: 24px 0 60px;
}

.abv-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.abv-card {
    background: var(--abv-surface);
    border: 1px solid var(--abv-border);
    border-radius: var(--abv-radius);
    padding: 22px;
    box-shadow: var(--abv-shadow);
}

.abv-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--abv-wine), var(--abv-wine-2));
    color: #ffffff;
    border: none;
    font-weight: 800;
}

.abv-form-card {
    background: var(--abv-surface);
    border: 1px solid var(--abv-border);
    border-radius: var(--abv-radius);
    padding: 24px;
    display: grid;
    gap: 14px;
    box-shadow: var(--abv-shadow);
}

.abv-form-row {
    display: grid;
    gap: 8px;
}

.abv-form-row input,
.abv-form-row select,
.abv-form-row textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--abv-border);
    background: var(--abv-bg);
    color: var(--abv-text);
}

/* Global phone number direction */
a[href^="tel:"],
a[href*="wa.me/"],
.abv-phone-ltr,
.abv-phone-number,
.abv-contact-phone,
.abv-footer-contact-list a[href^="tel:"],
.abv-footer-contact-list a[href*="wa.me/"] {
    direction: ltr;
    unicode-bidi: isolate;
    text-align: left;
    display: inline-block;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

html[dir="rtl"] a[href^="tel:"],
html[dir="rtl"] a[href*="wa.me/"],
html[dir="rtl"] .abv-phone-ltr,
html[dir="rtl"] .abv-phone-number,
html[dir="rtl"] .abv-contact-phone,
html[dir="rtl"] .abv-footer-contact-list a[href^="tel:"],
html[dir="rtl"] .abv-footer-contact-list a[href*="wa.me/"] {
    direction: ltr;
    unicode-bidi: bidi-override;
    text-align: left;
}

.abv-phone-ltr {
    letter-spacing: 0.02em;
}

@media (max-width: 900px) {
    .abv-card-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== Global page shell spacing ===== */
.abv-page-shell{
  padding-top:82px;
  min-height:100vh;
}

@media (max-width:700px){
  .abv-page-shell{
    padding-top:76px;
  }
}

/* STABLE-VIEWPORT: permanent root scrollbar so the fixed navbar never shifts horizontally on load */
html{overflow-y:scroll}
