/*
 * GBXU Salter — Page Styles v2
 * Original layout — unique design language
 */


/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--header-h);
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow var(--t-mid) var(--ease);
}
.site-header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.08); }

.scroll-progress {
    position: absolute; bottom: 0; left: 0; height: 2.5px; width: 0%;
    background: var(--gradient-gold); z-index: 10;
}

.nav-bar {
    display: flex; justify-content: space-between; align-items: center;
    height: var(--header-h); max-width: var(--max-w); margin: 0 auto;
    padding: 0 var(--gutter);
}

.logo a { display: flex; align-items: center; }
.logo img { height: 58px; background: none; transition: transform var(--t-fast) var(--ease); }
.logo img:hover { transform: scale(1.04); }

.nav-links ul { display: flex; gap: 8px; }
.nav-links a {
    font-family: var(--ff-head); font-weight: 700; font-size: 13px;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--brown); padding: 8px 16px; border-radius: var(--r-full);
    transition: all var(--t-fast) var(--ease);
}
.nav-links a:hover { background: var(--gold-soft); color: var(--gold-dark); }
.nav-links a.active { background: var(--gold-soft); color: var(--gold-dark); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
    background: var(--white); min-width: 240px; padding: var(--s2);
    border-radius: var(--r-md); box-shadow: var(--sh-md); border: 1px solid var(--line);
    opacity: 0; visibility: hidden; transition: all var(--t-fast) var(--ease);
    display: flex; flex-direction: column; gap: 4px; z-index: 100;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
    display: block; padding: 10px 16px; border-radius: var(--r-sm);
    text-transform: none; letter-spacing: 0; font-size: 14px; font-weight: 600;
}
.dropdown a:hover { background: var(--surface); color: var(--gold-dark); }

.header-cta .btn { padding: 11px 28px; font-size: 13px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 24px; height: 2.5px; background: var(--brown); border-radius: 2px; transition: all var(--t-mid) var(--ease); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ═══════════════════════════════════════
   HERO — Split Layout (unique)
   ═══════════════════════════════════════ */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    background: var(--dark); overflow: hidden; margin-top: calc(-1 * var(--header-h));
}
.hero-bg {
    position: absolute; inset: 0; z-index: 1;
    background: url('../images/hero_banner.jpg') center/cover no-repeat;
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(105deg, rgba(26,14,8,0.94) 0%, rgba(26,14,8,0.82) 50%, rgba(59,35,20,0.6) 100%);
}
/* Decorative floating orbs */
.hero-orb {
    position: absolute; border-radius: 50%; z-index: 3;
    filter: blur(60px); opacity: 0.12; animation: float 10s ease-in-out infinite;
}
.hero-orb--1 { width: 500px; height: 500px; background: var(--gold); top: -120px; right: 10%; }
.hero-orb--2 { width: 300px; height: 300px; background: var(--gold-light); bottom: -60px; left: 5%; animation-delay: -5s; }

.hero-inner {
    position: relative; z-index: 4; width: min(var(--max-w), 92vw); margin: 0 auto;
    padding: calc(var(--header-h) + 60px) var(--gutter) 80px;
    display: grid; grid-template-columns: 1fr 1fr; gap: var(--s8); align-items: center;
}
.hero-text h1 { color: var(--white); margin-bottom: var(--s3); line-height: 1.06; }
.hero-text p { color: var(--txt-on-dark); font-size: 1.1rem; max-width: 480px; margin-bottom: var(--s5); }
.hero-text .tag { color: var(--gold-light); }
.hero-text .tag::before { background: var(--gold-light); }
.hero-btns { display: flex; gap: var(--s2); flex-wrap: wrap; }

/* Right side — abstract feature showcase */
.hero-visual {
    display: flex; justify-content: center; align-items: center;
    position: relative;
}
.hero-feature-ring {
    width: 380px; height: 380px; border-radius: 50%;
    border: 2px solid rgba(212,168,67,0.2);
    display: flex; align-items: center; justify-content: center;
    position: relative; animation: float 8s ease-in-out infinite;
}
.hero-feature-ring::before {
    content: ''; position: absolute; inset: 20px; border-radius: 50%;
    border: 1px solid rgba(212,168,67,0.12);
}
.hero-ring-center {
    width: 140px; height: 140px; border-radius: 50%;
    background: var(--gradient-gold); display: flex; align-items: center; justify-content: center;
    font-size: 56px; box-shadow: 0 0 80px rgba(212,168,67,0.4);
    position: relative; z-index: 5;
}
.hero-ring-center svg {
    color: var(--dark);
    animation: handset-pulse 4s ease-in-out infinite;
}
@keyframes handset-pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

/* Radar Waves */
.hero-radar {
    position: absolute;
    inset: 0;
    border: 2px solid var(--gold);
    border-radius: 50%;
    animation: radar-ping 4s cubic-bezier(0.1, 0, 0.3, 1) infinite;
    z-index: -1;
    pointer-events: none;
}
.hero-radar:nth-child(2) { animation-delay: 1.33s; }
.hero-radar:nth-child(3) { animation-delay: 2.66s; }
@keyframes radar-ping {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(3.5); opacity: 0; }
}

.hero-ring-badge {
    position: absolute; background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-lg); padding: 14px 22px;
    font-weight: 700; font-size: 13px; color: var(--white);
    white-space: nowrap; z-index: 6;
}
.hero-ring-badge span { color: var(--gold-light); display: block; font-size: 11px; font-weight: 400; margin-top: 2px; }
.hero-ring-badge--1 { top: 20px; right: -30px; animation: float-badge 6s ease-in-out infinite alternate; }
.hero-ring-badge--2 { bottom: 40px; left: -40px; animation: float-badge 7s ease-in-out infinite alternate-reverse; }
.hero-ring-badge--3 { top: 50%; right: -60px; transform: translateY(-50%); animation: float-badge-middle 8s ease-in-out infinite alternate; }

@keyframes float-badge {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-15px); }
}
@keyframes float-badge-middle {
    0% { transform: translateY(-50%) translateY(0px); }
    100% { transform: translateY(-50%) translateY(-15px); }
}

/* Scroll prompt */
.scroll-cue {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 4;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-cue-dot {
    width: 22px; height: 36px; border-radius: 11px; border: 2px solid rgba(255,255,255,0.25);
    position: relative;
}
.scroll-cue-dot::before {
    content: ''; width: 3px; height: 7px; background: var(--gold);
    border-radius: 2px; position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
    animation: scroll-dot 1.4s ease-out infinite;
}
.scroll-cue span { font-size: 9px; text-transform: uppercase; letter-spacing: 0.25em; color: rgba(255,255,255,0.35); }


/* ═══════════════════════════════════════
   TRUST BAR (overlaps hero)
   ═══════════════════════════════════════ */
.trust-bar {
    position: relative; z-index: 10; margin-top: -52px;
}
.trust-bar-inner {
    background: var(--white); border-radius: var(--r-xl); box-shadow: var(--sh-lg);
    padding: var(--s5) var(--s6);
    display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s4);
    text-align: center; border: 1px solid var(--line);
}
.trust-item h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--gold-dark); margin-bottom: 2px; }
.trust-item p { color: var(--charcoal); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin: 0; }


/* ═══════════════════════════════════════
   PAGE HEADER (Inner pages)
   ═══════════════════════════════════════ */
.page-hero {
    position: relative; overflow: hidden; background: var(--dark);
    padding: calc(var(--header-h) + 80px) 0 80px 0;
    margin-top: calc(-1 * var(--header-h));
    text-align: center;
}
.page-hero .hero-bg { opacity: 0.35; }
.page-hero .hero-overlay {
    background: linear-gradient(180deg, rgba(26,14,8,0.95) 0%, rgba(59,35,20,0.85) 100%);
}
.page-hero-content { position: relative; z-index: 4; }
.page-hero h1 { color: var(--white); margin-bottom: var(--s2); }
.page-hero p { color: var(--txt-on-dark); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.page-hero .tag { justify-content: center; }

/* Breadcrumb */
.breadcrumb {
    display: flex; justify-content: center; gap: 8px; margin-top: var(--s3);
    font-size: 0.85rem; color: var(--txt-on-dark);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { text-decoration: underline; }


/* ═══════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════ */
.section-intro { max-width: 600px; margin-bottom: var(--s8); }
.section-intro.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-intro.centered .tag { justify-content: center; }


/* ═══════════════════════════════════════
   FEATURE CARDS — Side accent bar
   ═══════════════════════════════════════ */
.fcard {
    background: var(--white); border-radius: var(--r-lg); padding: var(--s5);
    box-shadow: var(--sh-sm); border: 1px solid var(--line);
    transition: all var(--t-mid) var(--ease); position: relative;
    border-left: 4px solid transparent;
}
.fcard:hover {
    transform: translateY(-6px); box-shadow: var(--sh-lg);
    border-left-color: var(--gold);
}
.fcard-icon {
    width: 52px; height: 52px; border-radius: var(--r-md);
    background: var(--gold-soft); display: flex; align-items: center; justify-content: center;
    margin-bottom: var(--s3); font-size: 22px; transition: all var(--t-mid) var(--ease);
}
.fcard:hover .fcard-icon { background: var(--gold); color: var(--white); box-shadow: var(--sh-gold); }
.fcard h3 { margin-bottom: var(--s1); }
.fcard .link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--gold-dark); font-weight: 700; font-size: 0.85rem; margin-top: var(--s2);
    transition: gap var(--t-fast) var(--ease);
}
.fcard .link:hover { gap: 12px; }


/* ═══════════════════════════════════════
   HOW WE WORK — Process Steps
   ═══════════════════════════════════════ */
.process-steps { counter-reset: step; }
.step {
    display: grid; grid-template-columns: 80px 1fr; gap: var(--s4);
    align-items: start; margin-bottom: var(--s6); position: relative;
}
.step:last-child { margin-bottom: 0; }
.step::before {
    content: ''; position: absolute; left: 39px; top: 80px; bottom: -48px;
    width: 2px; background: var(--line);
}
.step:last-child::before { display: none; }
.step-num {
    counter-increment: step;
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--white); border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--ff-head); font-weight: 900; font-size: 1.5rem;
    color: var(--gold-dark); position: relative; z-index: 2;
    box-shadow: var(--sh-sm); transition: all var(--t-mid) var(--ease);
}
.step-num::after { content: counter(step, decimal-leading-zero); }
.step:hover .step-num { background: var(--gold); color: var(--white); box-shadow: var(--sh-gold); }
.step-body h3 { margin-bottom: var(--s1); margin-top: var(--s2); }


/* ═══════════════════════════════════════
   LAYERED BROWN BACKGROUNDS (CREATIVE)
   ═══════════════════════════════════════ */
/* 
   PREVIOUS BASIC VERSION (Uncomment if you want to revert)
   .layered-brown-bg { position: relative; overflow: hidden; background: var(--dark); }
   .layered-brown-bg::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(105deg, rgba(59,35,20,0) 30%, rgba(59,35,20,0.6) 80%, rgba(74,53,37,0.8) 100%); z-index: 0; }
   .layered-brown-bg::after { content: ''; position: absolute; bottom: -20%; left: -10%; width: 50%; height: 140%; background: var(--brown); opacity: 0.4; transform: rotate(12deg); border-radius: 40px; z-index: 0; filter: blur(8px); }
*/

/* NEW CREATIVE ANIMATED VERSION */
.layered-brown-bg {
    position: relative;
    overflow: hidden;
    background: #3C2814; /* User requested rich dark brown */
}

/* Organic animated floating layer 1 (Top Left) */
.layered-brown-bg::before {
    content: '';
    position: absolute;
    top: -20%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.25) 0%, rgba(138, 97, 43, 0.5) 50%, transparent 80%);
    border-radius: 43% 57% 65% 35% / 45% 45% 55% 55%;
    animation: blob-spin 25s linear infinite;
    z-index: 0;
    pointer-events: none;
}

/* Organic animated floating layer 2 (Bottom Right) */
.layered-brown-bg::after {
    content: '';
    position: absolute;
    bottom: -30%; right: -10%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(106, 74, 31, 0.6) 0%, rgba(85, 59, 25, 0.5) 50%, transparent 80%);
    border-radius: 53% 47% 45% 55% / 55% 35% 65% 45%;
    animation: blob-spin 35s linear infinite reverse;
    z-index: 0;
    pointer-events: none;
}

/* Architectural diagonal slice layer */
.bg-slice-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(70, 48, 19, 0.6) 100%);
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 85%);
    z-index: 1;
    pointer-events: none;
}

.layered-brown-bg > * {
    position: relative;
    z-index: 3; /* ensure content is above all layers */
}

@keyframes blob-spin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}


/* ═══════════════════════════════════════
   STATS BAND
   ═══════════════════════════════════════ */
.stats-band {
    background: var(--gradient-dark); padding: var(--s10) 0; position: relative; overflow: hidden;
}
.stats-band::before {
    content: ''; position: absolute; inset: 0;
    background: url('../images/hero_banner.jpg') center/cover; opacity: 0.08;
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s4);
    text-align: center; position: relative; z-index: 2;
}
.stat h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); color: var(--gold); margin-bottom: 4px; }
.stat p { color: var(--txt-on-dark); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin: 0; }


/* ═══════════════════════════════════════
   TEAM
   ═══════════════════════════════════════ */
.team-card {
    background: var(--white); border-radius: var(--r-lg); overflow: hidden;
    box-shadow: var(--sh-sm); border: 1px solid var(--line);
    text-align: center; transition: all var(--t-mid) var(--ease);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.team-card img {
    width: 100%; height: 280px; object-fit: cover; border-bottom: 1px solid var(--line);
}
.team-card-body { padding: var(--s3); }
.team-card-body h3 { margin-bottom: 2px; }
.team-card-body p { color: var(--gold-dark); font-weight: 600; font-size: 0.85rem; margin: 0; }


/* ═══════════════════════════════════════
   TESTIMONIALS — Large quote style
   ═══════════════════════════════════════ */
.quote-card {
    background: var(--white); border-radius: var(--r-lg); padding: var(--s6);
    box-shadow: var(--sh-sm); border: 1px solid var(--line);
    position: relative; transition: all var(--t-mid) var(--ease);
}
.quote-card::before {
    content: '"'; font-family: Georgia, serif; font-size: 100px; line-height: 1;
    color: var(--gold-soft); position: absolute; top: 12px; left: 28px;
}
.quote-card:hover { box-shadow: var(--sh-md); border-color: var(--bdr-gold); }
.quote-card p { font-size: 1.05rem; line-height: 1.8; padding-top: var(--s4); position: relative; z-index: 2; }
.quote-author { display: flex; align-items: center; gap: 14px; margin-top: var(--s4); }
.quote-avatar {
    width: 54px; height: 54px; border-radius: 50%; object-fit: cover;
    border: 2px solid var(--line);
}
.quote-author h4 { margin: 0; font-size: 0.95rem; }
.quote-author span { font-size: 0.8rem; color: var(--txt-mid); }


/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */
.cta-section {
    background: var(--gradient-dark); padding: var(--s12) 0; text-align: center;
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; width: 600px; height: 600px;
    border-radius: 50%; background: rgba(255,255,255,0.06);
    top: -200px; right: -100px;
}
.cta-section h2 { color: var(--white); margin-bottom: var(--s2); }
.cta-section p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto var(--s5) auto; }


/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
.contact-layout {
    display: grid; grid-template-columns: 1fr 1.3fr; gap: var(--s8); align-items: stretch;
}
.contact-card {
    background: var(--brown); border-radius: var(--r-lg); padding: var(--s6); color: var(--white);
    display: flex; flex-direction: column; justify-content: center;
}
.contact-card h2 { color: var(--white); margin-bottom: var(--s3); }
.contact-card p { color: var(--txt-on-dark); }
.c-line { display: flex; gap: 16px; margin-bottom: var(--s3); align-items: flex-start; }
.c-icon {
    width: 44px; height: 44px; min-width: 44px; border-radius: var(--r-md);
    background: rgba(212,168,67,0.15); display: flex; align-items: center; justify-content: center;
    color: var(--gold-light); font-size: 18px;
}
.c-line strong { color: var(--white); display: block; margin-bottom: 2px; font-size: 0.85rem; }
.c-line a, .c-line span { color: var(--txt-on-dark); font-size: 0.9rem; }
.c-line a:hover { color: var(--gold-light); }

.form-card {
    background: var(--white); border-radius: var(--r-lg); padding: var(--s6);
    box-shadow: var(--sh-md); border: 1px solid var(--line);
    display: flex; flex-direction: column; justify-content: center;
}
.form-card h3 { margin-bottom: var(--s4); }
.field { margin-bottom: var(--s2); }
.field label { display: block; font-weight: 700; font-size: 0.8rem; color: var(--brown); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.input {
    width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--r-md);
    font-family: var(--ff-body); font-size: 0.9rem; color: var(--txt); background: var(--cream);
    transition: all var(--t-fast) var(--ease);
}
.input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); background: var(--white); }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2); }


/* ═══════════════════════════════════════
   ABOUT PAGE & SUBPAGES — Split sections
   ═══════════════════════════════════════ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s8); align-items: stretch; }
.split--reverse { grid-template-columns: 1fr 1fr; }
.split--reverse .split-media { order: -1; }

.split > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.split-media {
    border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); position: relative;
    display: flex; width: 100%; height: 100%; min-height: 400px;
}
.split-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.check-list li {
    position: relative; padding-left: 28px; margin-bottom: 14px; color: var(--txt-mid); line-height: 1.6;
}
.check-list li::before {
    content: '✓'; position: absolute; left: 0;
    color: var(--gold); font-weight: 800; font-size: 1rem;
}

/* Values */
.value-card { text-align: center; padding: var(--s5); }
.value-icon {
    width: 68px; height: 68px; border-radius: 50%;
    background: var(--gold-soft); display: flex; align-items: center; justify-content: center;
    margin: 0 auto var(--s2) auto; font-size: 26px;
    transition: all var(--t-mid) var(--ease);
}
.value-card:hover .value-icon { background: var(--gold); color: var(--white); box-shadow: var(--sh-gold); transform: scale(1.08); }


/* ═══════════════════════════════════════
   SERVICES PAGE — Alternating detail blocks
   ═══════════════════════════════════════ */
.svc-block { padding: var(--s12) 0; }
.svc-block:nth-child(even) { background: var(--surface); }
.svc-block:nth-child(odd) { background: var(--white); }


/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer {
    background: var(--white); border-top: 1px solid var(--line);
    padding: var(--s10) 0 0 0;
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--s6); margin-bottom: var(--s8);
}
.footer-col h4 {
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--brown); margin-bottom: var(--s3); padding-bottom: var(--s2);
    position: relative;
}
.footer-col h4::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 28px; height: 2.5px; background: var(--gradient-gold); border-radius: 2px;
}
.footer-col p { font-size: 0.88rem; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
    font-size: 0.88rem; color: var(--txt-mid);
    transition: all var(--t-fast) var(--ease); display: inline-flex; align-items: center; gap: 6px;
}
.footer-col ul a::before { content: '›'; color: var(--gold); font-size: 14px; font-weight: 700; transition: transform var(--t-fast) var(--ease); }
.footer-col ul a:hover { color: var(--gold-dark); }
.footer-col ul a:hover::before { transform: translateX(3px); }

.footer-logo { height: 64px; margin-bottom: var(--s2); max-width: 100%; object-fit: contain; }

.f-contact {
    display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; color: var(--txt-mid);
}
.f-contact-icon {
    width: 34px; height: 34px; min-width: 34px; border-radius: 50%;
    background: var(--gold-soft); display: flex; align-items: center; justify-content: center;
    color: var(--gold-dark); font-size: 13px; transition: all var(--t-fast) var(--ease);
}
.f-contact:hover .f-contact-icon { background: var(--gold); color: var(--white); }

.nl-form {
    display: flex; margin-top: var(--s2); border-radius: var(--r-full); overflow: hidden;
    border: 1.5px solid var(--line);
}
.nl-form input {
    flex: 1; padding: 11px 16px; border: none; font-family: var(--ff-body);
    font-size: 0.85rem; background: var(--cream);
}
.nl-form input:focus { outline: none; background: var(--white); }
.nl-form button { border-radius: 0; padding: 11px 18px; font-size: 0.85rem; }

.footer-bottom {
    border-top: 1px solid var(--line); padding: var(--s3) 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.82rem; color: var(--txt-light);
}
.footer-bottom a { color: var(--gold-dark); }


/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 992px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .hero-btns { justify-content: center; }
    .hero-visual { display: none; }
    .split, .split--reverse { grid-template-columns: 1fr; }
    .split--reverse .split-media { order: 0; }
    .contact-layout { grid-template-columns: 1fr; }
    .trust-bar-inner { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; position: fixed; top: 0; right: 0;
        width: min(320px, 85vw); height: 100vh; background: var(--dark);
        padding: 100px 28px 40px; box-shadow: -8px 0 40px rgba(0,0,0,0.3); z-index: 999;
    }
    .nav-links.active { display: block; }
    .nav-links ul { flex-direction: column; gap: 0; }
    .nav-links a {
        color: var(--white); display: block; padding: 14px 0; border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 14px;
    }
    .nav-links a:hover, .nav-links a.active { background: none; color: var(--gold-light); padding-left: 10px; }
    
    .dropdown {
        position: static; transform: none; background: transparent; box-shadow: none;
        border: none; opacity: 1; visibility: visible; padding: 0 0 0 16px; min-width: 0;
        display: flex;
    }
    .has-dropdown:hover .dropdown { transform: none; }
    .dropdown a {
        border-bottom: none; padding: 10px 0; font-size: 13px; color: var(--txt-light);
    }

    .header-cta { display: none; }
    .hamburger { display: flex; }

    .trust-bar-inner { grid-template-columns: 1fr 1fr; padding: var(--s4); }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .row-2 { grid-template-columns: 1fr; }
    .step { grid-template-columns: 60px 1fr; gap: var(--s3); }
    .step-num { width: 60px; height: 60px; font-size: 1.2rem; }
    .step::before { left: 29px; }
}


/* ═══════════════════════════════════════
   CUSTOM CSS / CLIENT OVERRIDES
   ═══════════════════════════════════════ */

/* ---------------------------------------
   QUOTE MODAL
   --------------------------------------- */
.quote-modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
    z-index: 9999; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.quote-modal-overlay.active {
    opacity: 1; pointer-events: auto;
}
.quote-modal-content {
    background: var(--white); width: 90%; max-width: 600px;
    border-radius: var(--r-xl); padding: var(--s6);
    position: relative; transform: translateY(20px); transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.quote-modal-overlay.active .quote-modal-content {
    transform: translateY(0);
}
.quote-modal-close {
    position: absolute; top: 15px; right: 20px;
    background: none; border: none; font-size: 28px; color: var(--txt-mid);
    cursor: pointer; transition: color 0.3s ease;
}
.quote-modal-close:hover { color: var(--charcoal); }
