/* ═══════════════════════════════════════════════
   ZBA Apex UAE — Home Page Styles
   Covers: Hero content, Partner Strip, Gateways,
           Services, Why Us, Reviews, Blog, Contact Form
═══════════════════════════════════════════════ */


/* ───────────────────────────
   SHARED SECTION LAYOUT
─────────────────────────── */
.hp-section {
    padding: 96px 0;
    position: relative;
}

.hp-section--alt {
    background: var(--section-alt);
}

.hp-section + .hp-section::before {
    content: '';
    display: block;
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 80%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-a15), transparent);
}

.section-head {
    margin-bottom: 52px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-family: var(--en);
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    display: block;
    width: 26px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
    opacity: 0.5;
}

.section-eyebrow::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 14px;
    font-family: var(--en);
}

.section-title .gold { color: var(--gold); }

.section-desc {
    font-size: 15px;
    color: var(--tl);
    line-height: 1.82;
    max-width: 540px;
}

/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.18s; }
.reveal-d3 { transition-delay: 0.26s; }
.reveal-d4 { transition-delay: 0.34s; }
.reveal-d5 { transition-delay: 0.42s; }
.reveal-d6 { transition-delay: 0.50s; }


/* ───────────────────────────
   HERO LEFT CONTENT
─────────────────────────── */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--gold-a08);
    border: 1px solid var(--gold-a25);
    color: var(--gold);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 26px;
    animation: fadeUp 0.7s ease both 0.1s;
    font-family: var(--en);
}

.eyebrow-dot {
    width: 5px; height: 5px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .35; transform: scale(.65); }
}

.hero-headline {
    font-size: clamp(36px, 4.2vw, 62px);
    font-weight: 900;
    line-height: 1.06;
    margin-bottom: 22px;
    color: var(--white);
    animation: fadeUp 0.7s ease both 0.22s;
    font-family: var(--en);
}

.hero-headline .glow {
    color: var(--gold);
    text-shadow: 0 0 60px var(--gold-a35), 0 0 120px var(--gold-a15);
}

.hero-sub {
    font-size: 15.5px;
    color: var(--tl);
    line-height: 1.80;
    margin-bottom: 36px;
    max-width: 490px;
    animation: fadeUp 0.7s ease both 0.34s;
    font-family: var(--en);
}

.hero-sub.ar {
    font-family: var(--ar);
    direction: rtl;
    text-align: right;
    font-size: 15px;
    line-height: 2.0;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    animation: fadeUp 0.7s ease both 0.46s;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    animation: fadeUp 0.7s ease both 0.58s;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--surface-4);
    border: 1px solid var(--border-bold);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-faint);
    letter-spacing: 0.05em;
    white-space: nowrap;
    font-family: var(--en);
}

.hero-badge .badge-dot {
    width: 4px; height: 4px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}


/* ───────────────────────────
   PARTNER STRIP
─────────────────────────── */
.partner-strip {
    background: var(--card-bg);
    border-top: 1px solid var(--gold-a12);
    border-bottom: 1px solid var(--gold-a12);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}

/* Fade edges */
.partner-strip::before,
.partner-strip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.partner-strip::before {
    left: 0;
    background: linear-gradient(90deg, var(--card-bg), transparent);
}

.partner-strip::after {
    right: 0;
    background: linear-gradient(-90deg, var(--card-bg), transparent);
}

.strip-track {
    display: flex;
    align-items: center;
    gap: 52px;
    width: max-content;
    animation: stripScroll 30s linear infinite;
}

@keyframes stripScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-faint);
    letter-spacing: 0.05em;
    transition: color 0.25s;
    padding: 4px 0;
    cursor: default;
    font-family: var(--en);
}

.strip-item:hover { color: var(--gold); }

.strip-icon {
    width: 28px; height: 28px;
    border-radius: 7px;
    background: var(--gold-a08);
    border: 1px solid var(--gold-a18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    transition: background 0.25s, border-color 0.25s;
}

.strip-item:hover .strip-icon {
    background: var(--gold-a15);
    border-color: var(--gold-a35);
}

.strip-sep {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--gold-a25);
    flex-shrink: 0;
}


/* ───────────────────────────
   GATEWAY PORTAL CARDS
─────────────────────────── */
.gateways-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 52px;
}

.gateway-card {
    display: block;
    text-decoration: none;
    background: var(--surface-1);
    border: 1px solid var(--border-mid);
    border-radius: 20px;
    padding: 48px 44px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.gateway-card::before {
    content: '';
    position: absolute;
    top: -70px; right: -70px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-a06) 0%, transparent 70%);
    transition: transform 0.5s;
    pointer-events: none;
}

.gateway-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-a30);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4);
}

.gateway-card:hover::before {
    transform: scale(1.6);
}

/* Top accent bar */
.gateway-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-a40), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.gateway-card:hover::after {
    opacity: 1;
}

.gw-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 28px;
    border: 1px solid var(--border-mid);
}

.gw-dream .gw-icon { background: rgba(79, 140, 255, 0.08); }
.gw-visa  .gw-icon { background: rgba(46, 180, 120, 0.08); }

.gw-name {
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 6px;
    font-family: var(--en);
    line-height: 1.15;
}

.gw-sub {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--en);
}

.gw-desc {
    font-size: 14.5px;
    font-weight: 400;
    color: var(--tl);
    line-height: 1.75;
    margin-bottom: 28px;
    font-family: var(--en);
}

.gw-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 32px;
}

.gw-tag {
    font-size: 11.5px;
    font-weight: 500;
    color: var(--text-faint);
    border: 1px solid var(--border-mid);
    padding: 4px 12px;
    border-radius: 20px;
    font-family: var(--en);
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.gateway-card:hover .gw-tag {
    color: var(--gold);
    border-color: var(--gold-a25);
}

.gw-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.09em;
    font-family: var(--en);
    transition: gap 0.2s;
}

.gateway-card:hover .gw-cta { gap: 14px; }

.gw-arrow { font-size: 18px; }


/* ───────────────────────────
   SERVICES GRID
─────────────────────────── */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px;
}

.svc-card {
    background: var(--surface-1);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 30px 26px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.25s;
}

.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.svc-card:hover {
    border-color: var(--gold-a18);
    transform: translateY(-4px);
}

.svc-card:hover::after {
    transform: scaleX(1);
}

.svc-icon {
    font-size: 34px;
    display: block;
    margin-bottom: 18px;
}

.svc-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    font-family: var(--en);
}

.svc-text {
    font-size: 13.5px;
    color: var(--tl);
    line-height: 1.72;
    font-family: var(--en);
}


/* ───────────────────────────
   WHY US
─────────────────────────── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    margin-top: 52px;
}

/* Left visual card */
.why-visual {
    position: relative;
    height: 460px;
}

.why-main-card {
    position: absolute;
    inset: 0;
    background: var(--surface-1);
    border: 1px solid var(--gold-a18);
    border-radius: 20px;
    overflow: hidden;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* top gold line */
.why-main-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-a45), transparent);
}

.why-card-eyebrow {
    font-size: 10px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-family: var(--en);
}

.why-card-headline {
    font-size: 34px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 14px;
    font-family: var(--en);
}

.why-card-headline .glow {
    color: var(--gold);
    font-style: italic;
    text-shadow: 0 0 40px var(--gold-a30);
}

.why-card-desc {
    font-size: 13.5px;
    color: var(--tl);
    line-height: 1.75;
    font-family: var(--en);
}

.why-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.why-mini-card {
    background: var(--gold-a06);
    border: 1px solid var(--gold-a15);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.why-mini-num {
    font-size: 34px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
    font-family: var(--en);
}

.why-mini-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--tl);
    letter-spacing: 0.10em;
    text-transform: uppercase;
    font-family: var(--en);
}

/* watermark text */
.why-watermark {
    position: absolute;
    bottom: 12px; right: 20px;
    font-size: 80px;
    font-weight: 900;
    color: var(--gold-a06);
    pointer-events: none;
    line-height: 1;
    font-family: var(--en);
    user-select: none;
}

/* Right: points list */
.why-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-point {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.why-point-num {
    width: 36px; height: 36px;
    border-radius: 9px;
    background: var(--gold-a08);
    border: 1px solid var(--gold-a18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: var(--gold);
    flex-shrink: 0;
    font-family: var(--en);
}

.why-point-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
    font-family: var(--en);
}

.why-point-text {
    font-size: 13.5px;
    color: var(--tl);
    line-height: 1.68;
    font-family: var(--en);
}


/* ───────────────────────────
   GOOGLE REVIEWS
─────────────────────────── */
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 24px;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface-1);
    border: 1px solid var(--border-mid);
    border-radius: 14px;
    padding: 12px 20px;
    flex-shrink: 0;
}

.google-g {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 900;
    font-family: 'Arial', sans-serif;
    flex-shrink: 0;
}

.google-g span {
    background: linear-gradient(135deg, #4285f4, #ea4335, #fbbc05, #34a853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.google-score {
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 3px;
    font-family: var(--en);
}

.google-stars { color: #fbbc05; font-size: 13px; letter-spacing: 1px; }

.google-count {
    font-size: 11px;
    color: var(--tl);
    font-family: var(--en);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--surface-1);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 26px;
    transition: border-color 0.3s, transform 0.25s;
}

.review-card:hover {
    border-color: var(--gold-a20);
    transform: translateY(-4px);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
    font-family: var(--en);
}

.reviewer-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    font-family: var(--en);
}

.reviewer-meta {
    font-size: 11px;
    color: var(--tm);
    font-family: var(--en);
}

.review-stars {
    color: #fbbc05;
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.review-text {
    font-size: 13.5px;
    color: var(--tl);
    line-height: 1.72;
    font-family: var(--en);
}

.review-footer {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    color: var(--text-faint);
    letter-spacing: 0.06em;
    font-family: var(--en);
}

.review-verified-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #34a853;
    flex-shrink: 0;
}


/* ───────────────────────────
   BLOG SECTION
─────────────────────────── */
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr 1fr;
    gap: 22px;
}

.blog-card {
    display: block;
    text-decoration: none;
    background: var(--surface-1);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-a22);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.4);
}

/* Image placeholder — themed gradient squares */
.blog-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    position: relative;
    overflow: hidden;
    background: var(--surface-2);
}

.blog-card--featured .blog-thumb {
    aspect-ratio: 16/10;
    font-size: 72px;
}

/* Overlay gradient on thumb */
.blog-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--thumb-dark) 0%, transparent 55%);
}

.bt-1 { background: linear-gradient(135deg, var(--n800), var(--n600)); }
.bt-2 { background: linear-gradient(135deg, var(--n750), #1a1206); }
.bt-3 { background: linear-gradient(135deg, var(--n800), #061a0d); }

.blog-body {
    padding: 22px 24px;
}

.blog-cat {
    font-size: 10px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--en);
}

.blog-cat::before {
    content: '';
    display: block;
    width: 16px; height: 1.5px;
    background: var(--gold);
    border-radius: 1px;
}

.blog-title {
    font-size: 19px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.24;
    margin-bottom: 10px;
    transition: color 0.2s;
    font-family: var(--en);
}

.blog-card--featured .blog-title { font-size: 24px; }

.blog-card:hover .blog-title { color: var(--gold); }

.blog-excerpt {
    font-size: 13px;
    color: var(--tl);
    line-height: 1.68;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: var(--en);
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11.5px;
    color: var(--text-faint);
    font-family: var(--en);
}

.blog-read-more {
    color: var(--gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
    white-space: nowrap;
}

.blog-card:hover .blog-read-more { gap: 8px; }


/* ───────────────────────────
   CONTACT FORM SECTION
─────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    margin-top: 52px;
    align-items: start;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px; height: 44px;
    border-radius: 11px;
    background: var(--gold-a08);
    border: 1px solid var(--gold-a18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-family: var(--en);
}

.contact-item-val {
    font-size: 14.5px;
    color: var(--text-body);
    font-family: var(--en);
}

.brands-box {
    background: var(--surface-1);
    border: 1px solid var(--gold-a15);
    border-radius: 14px;
    padding: 20px 22px;
}

.brands-box-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-family: var(--en);
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--surface-2);
    border: 1px solid var(--border-mid);
    border-radius: 9px;
    text-decoration: none;
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--en);
    transition: color 0.2s, border-color 0.2s;
    margin-bottom: 10px;
}

.brand-link:last-child { margin-bottom: 0; }

.brand-link:hover {
    color: var(--gold);
    border-color: var(--gold-a30);
}

.brand-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Contact form */
.cf-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cf-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cf-group label {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--tl);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--en);
}

.cf-group input,
.cf-group textarea,
.cf-group select {
    background: var(--surface-input);
    border: 1px solid var(--border-strong);
    border-radius: 9px;
    padding: 12px 16px;
    color: var(--text-body);
    font-family: var(--en);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    resize: vertical;
}

.cf-group input:hover,
.cf-group textarea:hover,
.cf-group select:hover {
    background: var(--input-hover);
}

.cf-group input:focus,
.cf-group textarea:focus,
.cf-group select:focus {
    border-color: var(--gold-a45);
    background: var(--input-hover);
}

.cf-group select option,
.cf-group select optgroup {
    background: var(--n750);
    color: #fff;
}

.cf-submit {
    background: var(--gold);
    color: var(--n900);
    border: none;
    padding: 15px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 800;
    font-family: var(--en);
    cursor: pointer;
    letter-spacing: 0.06em;
    transition: background 0.2s, transform 0.15s;
    margin-top: 4px;
}

.cf-submit:hover {
    background: var(--gold-l);
    transform: translateY(-1px);
}


/* ───────────────────────────
   RESPONSIVE
─────────────────────────── */
@media (max-width: 960px) {
    .gateways-grid  { grid-template-columns: 1fr; gap: 20px; }
    .why-grid       { grid-template-columns: 1fr; gap: 40px; }
    .why-visual     { display: none; }
    .contact-grid   { grid-template-columns: 1fr; gap: 40px; }
    .reviews-grid   { grid-template-columns: 1fr 1fr; gap: 16px; }
    .blog-grid      { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .svc-grid       { grid-template-columns: 1fr 1fr; }
    .reviews-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
    .svc-grid       { grid-template-columns: 1fr; }
    .cf-row         { grid-template-columns: 1fr; }
    .gateway-card   { padding: 32px 24px; }
    .reviews-header { flex-direction: column; align-items: flex-start; }
}


/* ═══════════════════════════════════════════════
   ANIMATION ADDITIONS
   Typewriter, Gateway tilt glow, Carousel,
   Blog parallax, Form focus line, Divider draw,
   Section stagger delays
═══════════════════════════════════════════════ */

/* ── Typewriter cursor ── */
.tw-cursor {
    display: inline-block;
    color: var(--gold);
    font-weight: 300;
    animation: tw-blink 0.75s step-end infinite;
    margin-left: 2px;
}

@keyframes tw-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* ── Gateway card: dynamic glow follows cursor via JS --glow-x/--glow-y ── */
.gateway-card {
    will-change: transform;
}

.gateway-card::before {
    background: radial-gradient(
        circle at var(--glow-x, 70%) var(--glow-y, 10%),
        var(--gold-a09) 0%,
        transparent 60%
    );
    transition: background 0.15s ease;
}

/* ── Reviews carousel ── */
.reviews-carousel {
    position: relative;
    overflow: hidden;
}

#reviews-track {
    display: flex;
    gap: 20px;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Each card: 3-up desktop, 1-up mobile */
#reviews-track .review-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 0;
}

.reviews-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.rv-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--border-mid);
    color: var(--tl);
    font-size: 16px;
    cursor: pointer;
    font-family: var(--en);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.rv-btn:hover {
    background: var(--gold-a10);
    border-color: var(--gold-a35);
    color: var(--gold);
}

.reviews-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.r-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-bold);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.r-dot.active {
    background: var(--gold);
    width: 22px;
    border-radius: 4px;
}

@media (max-width: 960px) {
    #reviews-track .review-card {
        flex: 0 0 100%;
    }
}

/* ── Blog thumb parallax (activated by .parallax-ready class) ── */
.blog-thumb {
    overflow: hidden;
}

.blog-thumb .thumb-icon {
    display: inline-block;
    transition: none;
    position: relative;
    z-index: 1;
}

.blog-card.parallax-ready .blog-thumb .thumb-icon {
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.blog-card.parallax-ready:hover .blog-thumb .thumb-icon {
    transform: translateY(-12px) scale(1.15);
}

/* ── Contact form: gold focus line ── */
.cf-group {
    position: relative;
}

.cf-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-l));
    border-radius: 0 0 9px 9px;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.cf-group.field-focused::after {
    width: 100%;
}

/* Focus border — subtler since the line takes over */
.cf-group.field-focused input,
.cf-group.field-focused textarea,
.cf-group.field-focused select {
    border-color: var(--gold-a30);
    background: var(--input-hover);
    outline: none;
}

/* ── Section divider line draw ── */
.hp-section + .hp-section::before {
    width: 0;
    transition: width 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp-section + .hp-section.divider-drawn::before {
    width: 80%;
}

/* ── Services grid — stagger reveal ── */
.svc-grid .svc-card:nth-child(1) { transition-delay: 0.00s; }
.svc-grid .svc-card:nth-child(2) { transition-delay: 0.08s; }
.svc-grid .svc-card:nth-child(3) { transition-delay: 0.16s; }
.svc-grid .svc-card:nth-child(4) { transition-delay: 0.24s; }
.svc-grid .svc-card:nth-child(5) { transition-delay: 0.32s; }
.svc-grid .svc-card:nth-child(6) { transition-delay: 0.40s; }

/* ── Load curtain & progress bar (global — declared here for page scope) ── */
#load-curtain {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-d), var(--gold), var(--gold-l));
    z-index: 99999;
    pointer-events: none;
}

#scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-d), var(--gold), var(--gold-l));
    z-index: 99998;
    pointer-events: none;
    transition: width 0.08s linear;
}

/* ── Cursor glow (desktop only) ── */
#cursor-glow {
    position: fixed;
    top: 0; left: 0;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, var(--gold-a06) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}
