/* ========================================================================
   MANTLE — Premium Home Services
   Shared Stylesheet
   ======================================================================== */

/* RESET & BASE */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --navy: #1B2A4A;
    --navy-light: #243656;
    --navy-dark: #111D33;
    --gold: #C9A84C;
    --gold-light: #D4B96A;
    --gold-dark: #B8953F;
    --white: #FFFFFF;
    --off-white: #F8F7F4;
    --cream: #F2F0EB;
    --charcoal: #2D2D2D;
    --grey-light: #E8E6E1;
    --grey-mid: #9A9A9A;
    --grey-dark: #555555;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* SCROLL PROGRESS BAR */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    z-index: 10001;
    transition: width 0.05s linear;
    pointer-events: none;
}

/* FOCUS-VISIBLE ACCESSIBILITY */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    border-radius: 2px;
}

/* CURSOR POINTER ON ALL CLICKABLE ELEMENTS */
button, [role="button"], [onclick], a, .calc-chip, .calc-home, .calc-story,
.hq-svc, .hq-pill, .ba-nav-btn, .faq-question { cursor: pointer; }

/* HERO BACKGROUND */
.hero-bg {
    background-image: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=1600&q=80');
    background-size: cover;
    background-position: center;
}

/* PAGE LOADER */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--navy-dark);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-content {
    text-align: center;
}
.loader-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    animation: loaderFadeIn 0.8s var(--ease-out) 0.1s forwards;
}
.loader-bar {
    width: 120px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 1.5rem auto 0;
    border-radius: 2px;
    overflow: hidden;
}
.loader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    animation: loaderSlide 1.2s var(--ease-in-out) infinite;
}
@keyframes loaderFadeIn { to { opacity: 1; } }
@keyframes loaderSlide { 0% { transform: translateX(-100%); } 100% { transform: translateX(400%); } }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 400; line-height: 1.15; color: var(--navy); letter-spacing: 0.02em; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.3rem); }
p { font-size: 1rem; line-height: 1.8; color: var(--grey-dark); }
a { color: inherit; text-decoration: none; }

.section-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
}
.section-label::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 2rem;
    height: 1px;
    background: var(--gold);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem;
}
.section-header .section-label::after {
    left: 50%;
    transform: translateX(-50%);
}
.section-header p {
    margin-top: 1.25rem;
    font-size: 1.05rem;
}

/* LAYOUT */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
section { padding: 8rem 0; }

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.97) !important; transition-duration: 0.1s; }
.btn-gold {
    background: var(--gold);
    color: var(--navy);
}
.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 168, 76, 0.35), 0 0 20px rgba(201, 168, 76, 0.15);
}
.btn-navy {
    background: var(--navy);
    color: var(--white);
}
.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(27, 42, 74, 0.25), 0 0 20px rgba(27, 42, 74, 0.1);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.btn-outline-navy {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--navy);
}
.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-lg { padding: 1.15rem 3rem; font-size: 0.9rem; }
.btn-sm { padding: 0.7rem 1.5rem; font-size: 0.8rem; }

.btn-arrow svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-out);
}
.btn-arrow:hover svg {
    transform: translateX(4px);
}

/* NAVIGATION */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.5s var(--ease-out);
    background: transparent;
}
.nav.scrolled {
    background: rgba(17, 29, 51, 0.85);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 rgba(201, 168, 76, 0.08), 0 4px 30px rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-logo-icon {
    width: 32px;
    height: 32px;
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}
.nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1001;
}
.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease-out);
    display: block;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* HERO — Full-screen with animated background */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 6rem;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, #0a1628 50%, var(--navy) 100%);
}
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.08);
    animation: particleFloat linear infinite;
}
@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}
.hero-gradient-orbs {
    position: absolute;
    inset: 0;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}
.hero-orb:nth-child(1) {
    width: 600px; height: 600px;
    background: var(--gold);
    top: -200px; right: -100px;
    animation: orbMove1 20s ease-in-out infinite alternate;
}
.hero-orb:nth-child(2) {
    width: 400px; height: 400px;
    background: #4a6fa5;
    bottom: -100px; left: -100px;
    animation: orbMove2 25s ease-in-out infinite alternate;
}
.hero-orb:nth-child(3) {
    width: 300px; height: 300px;
    background: var(--gold);
    top: 50%; left: 50%;
    animation: orbMove3 15s ease-in-out infinite alternate;
}
@keyframes orbMove1 { to { transform: translate(-100px, 100px); } }
@keyframes orbMove2 { to { transform: translate(100px, -100px); } }
@keyframes orbMove3 { to { transform: translate(-150px, -50px); } }

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}
.hero-brand {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    display: block;
    opacity: 0;
    animation: heroReveal 0.8s var(--ease-out) 0.5s forwards;
}
.hero h1 {
    color: var(--white);
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: heroReveal 0.8s var(--ease-out) 0.7s forwards;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold);
}
.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.55);
    max-width: 520px;
    margin: 0 auto 3rem;
    font-weight: 300;
    line-height: 1.9;
    opacity: 0;
    animation: heroReveal 0.8s var(--ease-out) 0.9s forwards;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroReveal 0.8s var(--ease-out) 1.1s forwards;
}
.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.25);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
}
.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(0.5); } 50% { opacity: 1; transform: scaleY(1); } }
@keyframes heroReveal { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } }

/* PAGE HERO (subpages) */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 10rem 2rem 5rem;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.page-hero .hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); }
.page-hero .hero-grid-pattern { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 60px 60px; }
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.page-hero h1 { color: var(--white); font-weight: 300; margin-bottom: 1rem; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p { color: rgba(255,255,255,0.55); font-size: 1.1rem; max-width: 500px; margin: 0 auto; }
.page-hero .section-label { margin-bottom: 1.5rem; }
.page-hero .section-label::after { display: none; }
.breadcrumb { margin-top: 2rem; font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 0.5rem; }

/* TRUST BAR */
.trust-bar {
    background: var(--navy);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-bar .container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}
.trust-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* ANIMATION CLASSES */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }

/* STATS */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding: 3rem 0;
}
.stat { text-align: center; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--navy);
    font-weight: 400;
    line-height: 1;
}
.stat-number.gold { color: var(--gold); }
.stat-label {
    font-size: 0.72rem;
    color: var(--grey-mid);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* SERVICE CARDS */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.service-card {
    padding: 2.5rem 2rem;
    background: var(--white);
    border: 1px solid var(--grey-light);
    border-radius: var(--radius-md);
    transition: all 0.5s var(--ease-out);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-out);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1.5rem;
    color: var(--gold);
}
.service-card h3 { margin-bottom: 0.75rem; color: var(--navy); }
.service-card p { font-size: 0.9rem; color: var(--grey-mid); line-height: 1.7; }
.service-price {
    margin-top: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--navy);
}
.service-price span { font-size: 0.8rem; color: var(--grey-mid); font-family: var(--font-body); }
.service-card .btn { margin-top: 1.5rem; }

/* BEFORE/AFTER SLIDER */
.ba-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: ew-resize;
    user-select: none;
    aspect-ratio: 16/9;
    max-width: 800px;
    margin: 0 auto;
}
.ba-before, .ba-after {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    font-weight: 400;
}
.ba-before {
    background: linear-gradient(135deg, #5a5a5a 0%, #3a3a3a 100%);
    clip-path: inset(0 50% 0 0);
}
.ba-after {
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
}
.ba-before-label, .ba-after-label {
    position: absolute;
    bottom: 1.5rem;
    padding: 0.4rem 1rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 100px;
    color: var(--white);
}
.ba-before-label {
    left: 1.5rem;
    background: rgba(0,0,0,0.5);
}
.ba-after-label {
    right: 1.5rem;
    background: rgba(201, 168, 76, 0.8);
}
.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--white);
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}
.ba-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ba-handle-arrows {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 700;
    pointer-events: none;
    letter-spacing: 0.3em;
}

/* TESTIMONIAL CAROUSEL */
/* Testimonial Grid (replacing carousel for better UX) */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s var(--ease-out);
    position: relative;
}
.testimonial-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 0.75rem;
    left: 1.25rem;
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.25;
    font-family: Georgia, serif;
    line-height: 1;
}
.stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.testimonial-card blockquote {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    padding: 0;
    border: none;
}
.testimonial-author {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimonial-author::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}
.testimonial-author strong {
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

/* Testimonial stats bar */
.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.testimonial-stat {
    text-align: center;
}
.testimonial-stat .num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.testimonial-stat .label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 0.4rem;
}

/* Carousel dots kept for mobile fallback */
.carousel-dots {
    display: none;
}

/* Area tags */
.areas-section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto 2rem;
}
.area-group {
    background: var(--white);
    border: 1px solid var(--grey-light);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    transition: all 0.3s var(--ease-out);
}
.area-group:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.area-group h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.area-group h4::before {
    content: '📍';
    font-size: 0.9rem;
}
.area-group ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 0.5rem;
}
.area-group li {
    font-size: 0.8rem;
    color: var(--grey-dark);
    padding: 0.2rem 0;
}
.area-group li::before {
    content: '·';
    color: var(--gold);
    margin-right: 0.3rem;
    font-weight: 700;
}

/* HOW IT WORKS TIMELINE */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 39px;
    width: 1px;
    background: var(--grey-light);
}
.timeline-step {
    display: flex;
    gap: 2.5rem;
    padding-bottom: 3rem;
    position: relative;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-number {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s var(--ease-out);
}
.timeline-step:hover .timeline-number {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.05);
}
.timeline-content { padding-top: 1.25rem; }
.timeline-content h3 { margin-bottom: 0.5rem; }
.timeline-content p { font-size: 0.95rem; }

/* FAQ ACCORDION */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--grey-light);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--navy);
    text-align: left;
    transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background: var(--gold);
    transition: transform 0.3s var(--ease-out);
}
.faq-icon::before { width: 14px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::after { width: 1.5px; height: 14px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-item.active .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}
.faq-item.active .faq-answer {
    max-height: 300px;
}
.faq-answer p {
    padding-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* TRUST BADGES */
.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.badge-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--grey-light);
    border-radius: var(--radius-md);
    transition: all 0.4s var(--ease-out);
}
.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}
.badge-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-out);
}
.badge-item:hover .badge-icon { background: var(--gold); }
.badge-icon svg { width: 28px; height: 28px; color: var(--gold); transition: color 0.4s var(--ease-out); }
.badge-item:hover .badge-icon svg { color: var(--navy); }
.badge-item h4 { margin-bottom: 0.5rem; }
.badge-item p { font-size: 0.85rem; }

/* CTA SECTION */
.cta-section {
    background: linear-gradient(165deg, var(--navy-dark) 0%, var(--navy) 100%);
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}
.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.55); font-size: 1.05rem; margin-bottom: 2.5rem; }
.cta-phone { margin-top: 2rem; color: rgba(255,255,255,0.4); font-size: 0.95rem; }
.cta-phone a { color: var(--gold); text-decoration: none; font-weight: 600; font-size: 1.1rem; }

/* QUOTE FORM */
.quote-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: left;
}
.form-group label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.04);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.06);
}
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}
.form-group select option { background: var(--navy); color: var(--white); }
.form-full { grid-column: 1 / -1; margin-bottom: 1rem; }
.quote-form .btn { width: 100%; margin-top: 0.5rem; padding: 1.1rem; font-size: 0.95rem; }

/* Light-background quote form (contact page) */
.quote-form-light {
    background: var(--white);
    border: 1px solid var(--grey-light);
    box-shadow: var(--shadow-md);
    backdrop-filter: none;
}
.quote-form-light .form-group label {
    color: var(--charcoal);
}
.quote-form-light .form-group input,
.quote-form-light .form-group select,
.quote-form-light .form-group textarea {
    background: var(--off-white);
    border: 1px solid var(--grey-light);
    color: var(--charcoal);
}
.quote-form-light .form-group input::placeholder,
.quote-form-light .form-group textarea::placeholder {
    color: var(--grey-mid);
}
.quote-form-light .form-group input:focus,
.quote-form-light .form-group select:focus,
.quote-form-light .form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.quote-form-light .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
}
.quote-form-light .form-group select option {
    background: var(--white);
    color: var(--charcoal);
}
.form-note { margin-top: 1rem; font-size: 0.75rem; color: rgba(255,255,255,0.25); text-align: center; }

/* Light form variant */
.form-light .form-group label { color: var(--grey-mid); }
.form-light .form-group input,
.form-light .form-group select,
.form-light .form-group textarea {
    border: 1px solid var(--grey-light);
    background: var(--white);
    color: var(--charcoal);
}
.form-light .form-group input::placeholder,
.form-light .form-group textarea::placeholder { color: var(--grey-mid); }
.form-light .form-group input:focus,
.form-light .form-group select:focus,
.form-light .form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.form-light .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9A9A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
}

/* SERVICE AREA MAP */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}
.area-tag {
    padding: 0.6rem 1.4rem;
    border: 1px solid var(--grey-light);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--charcoal);
    transition: all 0.3s var(--ease-out);
    cursor: default;
    background: var(--white);
}
.area-tag:hover {
    border-color: var(--gold);
    color: var(--navy);
    background: rgba(201, 168, 76, 0.06);
    transform: translateY(-2px);
}
.area-tag a {
    text-decoration: none;
    color: inherit;
}

/* IMAGE BREAK */
.image-break {
    height: 50vh;
    min-height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.image-break-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
}
.image-break-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}
.image-break blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-style: italic;
    color: var(--white);
    max-width: 700px;
    line-height: 1.5;
}

/* PRICING TIERS */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.pricing-card {
    padding: 3rem 2rem;
    border: 1px solid var(--grey-light);
    border-radius: var(--radius-lg);
    text-align: center;
    background: var(--white);
    transition: all 0.4s var(--ease-out);
    position: relative;
}
.pricing-card.featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
}
.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 100px;
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-5px);
}
.pricing-tier {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.pricing-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.pricing-amount span { font-size: 1rem; color: var(--grey-mid); }
.pricing-desc { font-size: 0.9rem; color: var(--grey-mid); margin-bottom: 2rem; }
.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}
.pricing-features li {
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: var(--grey-dark);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid var(--grey-light);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* FOOTER */
footer {
    background: var(--navy-dark);
    padding: 5rem 0 2rem;
    position: relative;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand p {
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
    max-width: 280px;
    line-height: 1.7;
    margin-top: 1rem;
}
.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.2); }
.footer-social { display: flex; gap: 1.25rem; }
.footer-social a {
    color: rgba(255,255,255,0.25);
    transition: all 0.3s var(--ease-out);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
}
.footer-social a:hover {
    color: var(--gold);
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201,168,76,0.15);
}
.footer-social svg { width: 18px; height: 18px; }

/* STICKY MOBILE CTA */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 0.75rem 1rem;
    background: var(--navy);
    border-top: 1px solid rgba(201, 168, 76, 0.3);
    box-shadow: 0 -5px 30px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn {
    width: 100%;
    padding: 0.9rem;
    font-size: 0.85rem;
}

/* VALUES GRID (About page) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}
.value-item { text-align: center; }
.value-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-out);
}
.value-item:hover .value-icon { background: var(--navy); }
.value-icon svg { width: 32px; height: 32px; color: var(--gold); }
.value-item h3 { margin-bottom: 0.75rem; }
.value-item p { font-size: 0.9rem; max-width: 300px; margin: 0 auto; }

/* TEAM GRID */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}
.team-card { text-align: center; }
.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--grey-light) 0%, var(--cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--navy);
    transition: all 0.4s var(--ease-out);
    border: 3px solid transparent;
}
.team-card:hover .team-photo {
    border-color: var(--gold);
    transform: scale(1.05);
}
.team-card h3 { margin-bottom: 0.25rem; }
.team-role {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}
.team-card p { font-size: 0.9rem; margin-top: 0.75rem; }

/* CONTACT INFO CARDS */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.contact-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--off-white);
    border-radius: var(--radius-md);
    transition: all 0.4s var(--ease-out);
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.contact-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-card-icon svg { width: 24px; height: 24px; color: var(--gold); }
.contact-card h4 { margin-bottom: 0.5rem; }
.contact-card a { color: var(--navy); font-weight: 500; transition: color 0.3s; }
.contact-card a:hover { color: var(--gold); }

/* INCLUDE LIST */
.include-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.include-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--off-white);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease-out);
}
.include-item:hover { background: var(--cream); transform: translateX(4px); }
.include-check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.include-check svg { width: 12px; height: 12px; color: var(--gold); }
.include-item p { font-size: 0.95rem; color: var(--charcoal); margin: 0; }

/* AREA CARDS (for areas page) */
.area-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.area-card {
    padding: 2.5rem;
    border: 1px solid var(--grey-light);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: all 0.4s var(--ease-out);
}
.area-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.area-card h3 { margin-bottom: 0.75rem; }
.area-card p { font-size: 0.9rem; margin-bottom: 1.25rem; }

/* DIVIDER */
.divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 2rem auto;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .pricing-grid { gap: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    section { padding: 5rem 0; }
    .container { padding: 0 1.5rem; }
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: rgba(17, 29, 51, 0.97);
        backdrop-filter: blur(24px) saturate(1.4);
        -webkit-backdrop-filter: blur(24px) saturate(1.4);
        padding: 5rem 2rem 2rem;
        gap: 0.5rem;
        text-align: left;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
        z-index: 1000;
    }
    .nav-links.active { transform: translateX(0); }
    .nav-links a {
        padding: 0.75rem 0;
        font-size: 0.95rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .nav-links a::after { display: none; }
    .nav-links::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        transition: opacity 0.4s;
        pointer-events: none;
        z-index: -1;
    }
    .nav-links.active::before { opacity: 1; }
    .mobile-toggle { display: flex; }

    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 300px; }
    .page-hero { min-height: 40vh; padding: 8rem 1.5rem 4rem; }

    .stats-row { gap: 2rem; }
    .stat-number { font-size: 2.5rem; }

    .services-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .badges-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-5px); }
    .values-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .team-grid { grid-template-columns: 1fr; max-width: 300px; margin-left: auto; margin-right: auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .include-grid { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .timeline::before { left: 24px; }
    .timeline-number { width: 50px; height: 50px; min-width: 50px; font-size: 1.2rem; }
    .timeline-step { gap: 1.5rem; }

    .sticky-cta { display: block; }

    .area-cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .trust-bar .container { gap: 1rem; }
    .trust-item { font-size: 0.7rem; }
    .badges-grid { grid-template-columns: 1fr; }
}

/* ADDITIONAL CLASSES */
.section-light { background: var(--white); }
.section-cream { background: var(--off-white); }
.section-navy { background: var(--navy); padding: 5rem 0; }

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 768px) {
    .contact-cards { grid-template-columns: 1fr; }
}

.service-link {
    display: inline-block;
    margin-top: 1.25rem;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: color 0.3s;
}
.service-card:hover .service-link { color: var(--navy); }

/* Light form (contact page) */
.quote-form-light {
    background: var(--white) !important;
    border: 1px solid var(--grey-light) !important;
    backdrop-filter: none !important;
}
.quote-form-light .form-group label {
    color: var(--grey-mid) !important;
}
.quote-form-light .form-group input,
.quote-form-light .form-group select,
.quote-form-light .form-group textarea {
    background: var(--off-white) !important;
    border-color: var(--grey-light) !important;
    color: var(--charcoal) !important;
}
.quote-form-light .form-group input::placeholder,
.quote-form-light .form-group textarea::placeholder {
    color: var(--grey-mid) !important;
}
.quote-form-light .form-group input:focus,
.quote-form-light .form-group select:focus,
.quote-form-light .form-group textarea:focus {
    border-color: var(--gold) !important;
}
.quote-form-light .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(0,0,0,0.3)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") !important;
}
.quote-form-light .form-group select option {
    background: var(--white);
    color: var(--charcoal);
}

.stats-row {
    display: flex;
    gap: 2.5rem;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--navy);
    font-weight: 400;
    line-height: 1;
}
.stat-label {
    font-size: 0.7rem;
    color: var(--grey-mid);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.35rem;
}

@media (max-width: 768px) {
    .stats-row { flex-wrap: wrap; justify-content: center; }
    [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
    [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
}

/* ========== FIXES — Missing Classes ========== */

/* Hero eyebrow */
.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: block;
}

/* Hero gradient bg */
.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgba(17,29,51,0.97) 0%, rgba(27,42,74,0.88) 50%, rgba(36,54,86,0.93) 100%);
}

/* Image break overlay */
.image-break-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(17,29,51,0.4), rgba(17,29,51,0.7));
}

/* Trust badges grid (used on homepage "what sets us apart") */
.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.trust-badge {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--off-white);
    border: 1px solid var(--grey-light);
    border-radius: var(--radius-md);
    transition: all 0.4s var(--ease-out);
}
.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}
.trust-badge-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-out);
}
.trust-badge:hover .trust-badge-icon { background: var(--gold); }
.trust-badge-icon svg { width: 26px; height: 26px; color: var(--gold); transition: color 0.4s; }
.trust-badge:hover .trust-badge-icon svg { color: var(--navy); }
.trust-badge h3 { color: var(--navy); margin-bottom: 0.75rem; font-size: 1.2rem; }
.trust-badge p { font-size: 0.9rem; color: var(--grey-dark); max-width: 260px; margin: 0 auto; line-height: 1.7; }

@media (max-width: 768px) {
    .trust-badges-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}
@media (max-width: 480px) {
    .trust-badges-grid { grid-template-columns: 1fr; }
}

/* Values grid (about page) */
.value-card {
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid var(--grey-light);
    border-radius: var(--radius-md);
    transition: all 0.4s var(--ease-out);
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}
.value-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.5;
}
.value-card h3 { color: var(--navy); margin-bottom: 0.75rem; }
.value-card p { font-size: 0.9rem; line-height: 1.7; }

/* Fix: ensure text is ALWAYS visible against backgrounds */
.section-light h2, .section-cream h2, .section-light h3, .section-cream h3 { color: var(--navy); }
.section-light p, .section-cream p { color: var(--grey-dark); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.7); }
.section-navy .stat-label { color: rgba(255,255,255,0.5); }
.cta-section h2, .cta-section h3 { color: var(--white); }
.cta-section p { color: rgba(255,255,255,0.6); }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.6); }

/* Form note on light bg */
.quote-form-light .form-note { color: var(--grey-mid) !important; }

/* ========== PREMIUM UX POLISH ========== */

/* --- LINK UNDERLINE ANIMATIONS --- */
.footer-col a {
    position: relative;
}
.footer-col a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}
.footer-col a:hover::after { width: 100%; }

/* --- MOBILE HAPTIC TAP FEEDBACK --- */
@media (max-width: 768px) {
    .btn:active,
    .calc-chip:active,
    .calc-home:active,
    .calc-story:active,
    .hq-svc:active,
    .hq-pill:active,
    .ba-nav-btn:active,
    .faq-question:active {
        transform: scale(0.97);
        transition-duration: 0.08s;
    }

    /* Minimum 44px touch targets */
    .btn { min-height: 44px; }
    .mobile-toggle {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .ba-nav-btn { min-width: 44px; min-height: 44px; }
    .faq-question { min-height: 44px; }
}

/* --- PERFORMANCE: GPU-accelerated animations --- */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
    will-change: opacity, transform;
}
.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
    will-change: auto;
}

/* --- CARD HOVER STATES (consistent padding) --- */
.hp-review { padding: 2rem; }
.hp-svc-body { padding: 1.5rem; }

/* --- NAV ACTIVE LINK INDICATOR --- */
.nav-links a.active {
    color: var(--gold);
}
.nav-links a.active::after {
    width: 100%;
    background: var(--gold);
}

/* --- OUTLINE BUTTON HOVER GLOW --- */
.btn-outline-white:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.1);
}
.btn-outline-navy:hover {
    box-shadow: 0 8px 25px rgba(27, 42, 74, 0.15);
}

/* --- SMOOTH BACKGROUND TRANSITIONS FOR DARK SECTIONS --- */
.calc-section {
    background: linear-gradient(165deg, var(--navy-dark) 0%, var(--navy) 60%, #1e3358 100%);
    position: relative;
}
.cta-section {
    background: linear-gradient(165deg, var(--navy-dark) 0%, var(--navy) 50%, #1a2d4d 100%);
    position: relative;
}

/* --- PAGE LOADER ENHANCEMENT --- */
.page-loader {
    background: linear-gradient(135deg, var(--navy-dark) 0%, #0a1628 100%);
}
.loader-bar::after {
    animation: loaderSlide 1s var(--ease-in-out) infinite;
}
