/* ==========================================================================
   TidyTrue Services — Design System
   Palette: Navy #102A43 · Sage #4F8A61 · Warm Off-White #FAF9F5
   Type: "Borax VF" (headings) + "Alexandria" (body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100;200;300;400;500;600;700&display=swap');

/* "Borax VF" is a licensed/custom variable font — host the .woff2 at
   /assets/fonts/borax-vf.woff2 and this @font-face will pick it up.
   A refined serif fallback keeps the premium feel if the file is absent. */
@font-face {
    font-family: 'Borax VF';
    src: url('../fonts/borax-vf.woff2') format('woff2-variations'),
         url('../fonts/borax-vf.woff2') format('woff2');
    font-weight: 100 900;
    font-display: swap;
}

:root {
    /* Brand */
    --navy: #102A43;
    --navy-deep: #0B1D30;
    --sage: #4F8A61;
    --sage-light: #6FA97F;
    --sage-dim: #E8F0E9;
    --cream: #FAF9F5;
    --white: #FFFFFF;
    --gray: #374151;
    --gray-soft: #6B7280;
    --line: #E4E1D8;

    /* Type */
    --font-heading: 'Borax VF', 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body: 'Alexandria', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --h1: clamp(2.625rem, 4.6vw + 1rem, 4.5rem);   /* 42px -> 72px */
    --h2: clamp(2.1rem, 3.2vw + 1rem, 3.125rem);   /* ~34px -> 50px */
    --h3: clamp(1.5rem, 1.6vw + 1rem, 2.25rem);    /* 24px -> 36px */
    --body: 1rem; /* 16px */

    /* Layout */
    --container: 1240px;
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;
    --shadow-soft: 0 20px 45px -20px rgba(16, 42, 67, 0.25);
    --shadow-card: 0 12px 30px -14px rgba(16, 42, 67, 0.18);
    --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: var(--body);
    line-height: 1.6;
    color: var(--gray);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.15;
    color: var(--navy);
    margin: 0 0 0.5em;
    letter-spacing: -0.01em;
}
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); font-weight: 700; }
p { margin: 0 0 1em; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.skip-link {
    position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff;
    padding: 12px 20px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--sage); outline-offset: 3px; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--sage); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--sage); display: inline-block; }

.lede { font-size: 1.15rem; color: var(--gray-soft); max-width: 640px; font-weight: 300; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px 30px; border-radius: 100px; font-weight: 500; font-size: 0.95rem;
    border: 1px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
    white-space: nowrap;
}
.btn svg, .btn i { width: 18px; height: 18px; }
.btn-primary, .btn-cta {
    background: var(--sage); color: #fff; box-shadow: 0 10px 24px -10px rgba(79,138,97,0.55);
}
.btn-primary:hover, .btn-cta:hover { background: var(--sage-light); transform: translateY(-2px); box-shadow: 0 16px 28px -10px rgba(79,138,97,0.6); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--sage-dim); transform: translateY(-2px); }
.btn-block { display: flex; width: 100%; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
    position: sticky; top: 0; z-index: 200; background: rgba(250,249,245,0.92);
    backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
    transition: padding .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 6px 24px -12px rgba(16,42,67,0.18); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; transition: padding .3s var(--ease); }
.site-header.scrolled .header-inner { padding: 12px 24px; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; background: var(--navy); color: var(--sage-light); border-radius: 10px; }
.logo-mark svg, .logo-mark i { width: 20px; height: 20px; }
.logo-text { font-family: var(--font-heading); font-size: 1.3rem; color: var(--navy); letter-spacing: -0.01em; }
.logo-text em { font-style: normal; color: var(--sage); }
.logo-light .logo-text { color: #fff; }
.logo-light .logo-mark { background: var(--sage); color: var(--navy); }

.main-nav ul { display: flex; align-items: center; gap: 34px; }
.main-nav > ul > li { position: relative; }
.main-nav a { font-size: 0.95rem; font-weight: 500; color: var(--navy); padding: 10px 0; }
.main-nav > ul > li > a { position: relative; }
.main-nav > ul > li > a::after {
    content: ''; position: absolute; left: 0; bottom: 4px; width: 0; height: 2px; background: var(--sage);
    transition: width .25s var(--ease);
}
.main-nav > ul > li:hover > a::after { width: 100%; }

.has-dropdown .dropdown {
    position: absolute; top: 100%; left: -16px; min-width: 230px; background: #fff;
    border-radius: var(--radius-sm); box-shadow: var(--shadow-soft); padding: 10px;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 10px 14px; border-radius: 8px; font-weight: 400; }
.dropdown li a:hover { background: var(--sage-dim); color: var(--sage); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--navy); }
.header-phone svg, .header-phone i { width: 18px; height: 18px; color: var(--sage); }

.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.mobile-menu-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .25s var(--ease), opacity .25s; }
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    position: fixed; inset: 0 0 0 auto; width: min(88vw, 380px); background: var(--navy); color: #fff;
    padding: 100px 30px 30px; z-index: 199; transform: translateX(100%);
    transition: transform .35s var(--ease); overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.mobile-menu a { display: block; padding: 12px 4px; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu li.sub a { padding-left: 18px; font-size: 0.92rem; opacity: 0.8; }

.breadcrumbs { padding: 16px 0; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; font-size: 0.85rem; color: var(--gray-soft); }
.breadcrumbs a { color: var(--gray-soft); }
.breadcrumbs a:hover { color: var(--sage); }
.breadcrumbs .sep { color: var(--line); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative; padding: 70px 0 120px; overflow: hidden;
    background: linear-gradient(180deg, #FDFCF9 0%, var(--cream) 100%);
}
.hero::before {
    content: ''; position: absolute; top: -180px; right: -180px; width: 520px; height: 520px;
    border-radius: 50%; background: radial-gradient(circle, var(--sage-dim) 0%, transparent 70%);
    z-index: 0;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.hero-copy h1 { margin-bottom: 22px; }
.hero-copy .lede { margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust li { display: flex; align-items: center; gap: 9px; font-size: 0.88rem; font-weight: 500; color: var(--navy); }
.hero-trust i, .hero-trust svg { width: 18px; height: 18px; color: var(--sage); }

.hero-visual { position: relative; }
.hero-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 4/5; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
    position: absolute; bottom: -26px; left: -30px; background: #fff; border-radius: var(--radius);
    box-shadow: var(--shadow-card); padding: 20px 22px; display: flex; align-items: center; gap: 14px;
    max-width: 260px; animation: floatY 5s ease-in-out infinite;
}
.hero-float-card .icon-badge { width: 46px; height: 46px; border-radius: 12px; background: var(--sage); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-float-card strong { display: block; color: var(--navy); font-size: 0.95rem; }
.hero-float-card span { font-size: 0.82rem; color: var(--gray-soft); }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Location selector */
.location-selector { margin-top: 8px; }
.location-selector-label { font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; display: block; }
.location-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.location-pill {
    padding: 9px 20px; border-radius: 100px; border: 1px solid var(--line); background: #fff;
    font-size: 0.88rem; font-weight: 500; color: var(--navy); transition: all .2s var(--ease);
}
.location-pill:hover { border-color: var(--sage); }
.location-pill.active { background: var(--navy); border-color: var(--navy); color: #fff; }

.dynamic-services-panel { margin-top: 22px; padding: 22px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-card); display: none; }
.dynamic-services-panel.visible { display: block; animation: fadeUp .35s var(--ease); }
.dynamic-services-panel h4 { font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; color: var(--navy); margin-bottom: 12px; }
.dynamic-services-list { display: flex; flex-wrap: wrap; gap: 8px; }
.dynamic-services-list a { padding: 7px 14px; background: var(--sage-dim); color: var(--sage); border-radius: 100px; font-size: 0.82rem; font-weight: 500; }
.dynamic-services-list a:hover { background: var(--sage); color: #fff; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trust-bar { background: var(--navy); padding: 34px 0; }
.trust-bar ul { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.trust-bar li { display: flex; align-items: center; gap: 12px; color: #fff; font-size: 0.92rem; font-weight: 500; flex: 1 1 200px; }
.trust-bar i, .trust-bar svg { width: 22px; height: 22px; color: var(--sage-light); flex-shrink: 0; }

/* ==========================================================================
   SECTIONS (generic)
   ========================================================================== */
.section { padding: 100px 0; }
.section-sage { background: var(--sage-dim); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy .lede { color: rgba(255,255,255,0.75); }
.section-header { max-width: 640px; margin-bottom: 56px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ==========================================================================
   SERVICES GRID (editorial cards)
   ========================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
    position: relative; border-radius: var(--radius); overflow: hidden; background: var(--navy);
    aspect-ratio: 3/4; box-shadow: var(--shadow-card); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover img { transform: scale(1.08); }
.service-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(16,42,67,0) 30%, rgba(16,42,67,0.92) 100%);
}
.service-card-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px; z-index: 2; color: #fff; }
.service-card-num { font-size: 0.78rem; font-weight: 600; color: var(--sage-light); letter-spacing: 0.08em; margin-bottom: 8px; display: block; }
.service-card-icon {
    width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,0.14); backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
    transform: translateY(0); transition: transform .3s var(--ease);
}
.service-card:hover .service-card-icon { transform: translateY(-4px); }
.service-card h3 { color: #fff; font-size: 1.35rem; margin-bottom: 8px; }
.service-card p { font-size: 0.88rem; color: rgba(255,255,255,0.78); margin-bottom: 16px; max-width: 90%; }
.service-card-link {
    display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: #fff;
    opacity: 0; transform: translateY(6px); transition: all .3s var(--ease);
}
.service-card:hover .service-card-link { opacity: 1; transform: translateY(0); }

/* Compact service list card (used on service-areas & other listing pages) */
.services-mini-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.mini-card {
    background: #fff; border-radius: var(--radius-sm); padding: 24px; border: 1px solid var(--line);
    transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.mini-card:hover { border-color: var(--sage); transform: translateY(-3px); }
.mini-card .icon-badge { width: 44px; height: 44px; border-radius: 12px; background: var(--sage-dim); color: var(--sage); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.mini-card h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.mini-card p { font-size: 0.85rem; color: var(--gray-soft); margin-bottom: 0; }

/* ==========================================================================
   WHY TIDYTRUE
   ========================================================================== */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.benefit-item { display: flex; gap: 18px; }
.benefit-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--sage); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit-item h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; color: var(--navy); margin-bottom: 6px; }
.benefit-item p { font-size: 0.9rem; color: var(--gray-soft); margin-bottom: 0; }

/* ==========================================================================
   PROCESS (How it works)
   ========================================================================== */
.process-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.process-track::before {
    content: ''; position: absolute; top: 26px; left: 12%; right: 12%; height: 1px; background: var(--line);
}
.process-step { position: relative; text-align: left; }
.process-num {
    width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: var(--sage-light);
    display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.2rem;
    margin-bottom: 20px; position: relative; z-index: 1;
}
.process-step h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; color: var(--gray-soft); margin-bottom: 0; }

/* ==========================================================================
   LOCATIONS SECTION
   ========================================================================== */
.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.location-card { border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-card); transition: transform .3s var(--ease); }
.location-card:hover { transform: translateY(-5px); }
.location-card-img { aspect-ratio: 16/10; overflow: hidden; }
.location-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.location-card:hover .location-card-img img { transform: scale(1.06); }
.location-card-body { padding: 26px; }
.location-card-body .eyebrow { margin-bottom: 8px; }
.location-card-body p { font-size: 0.9rem; color: var(--gray-soft); }

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
    padding: 22px 0; background: none; border: none; text-align: left; font-family: var(--font-body);
    font-weight: 600; font-size: 1rem; color: var(--navy);
}
.faq-question .chevron { flex-shrink: 0; transition: transform .3s var(--ease); color: var(--sage); }
.faq-item.open .chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-answer p { padding-bottom: 20px; color: var(--gray-soft); font-size: 0.92rem; margin: 0; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: 44px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group.full { grid-column: 1 / -1; }
label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
input, select, textarea {
    width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: 10px;
    font-family: var(--font-body); font-size: 0.95rem; color: var(--gray); background: var(--cream);
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 4px var(--sage-dim); background: #fff; }
textarea { resize: vertical; min-height: 120px; }
.form-error { color: #B3261E; font-size: 0.8rem; margin-top: 6px; }
.form-note { font-size: 0.8rem; color: var(--gray-soft); margin-top: 6px; }
.form-status { padding: 16px 20px; border-radius: 10px; margin-bottom: 22px; font-size: 0.92rem; display: none; }
.form-status.success { background: var(--sage-dim); color: #2f5a3c; display: block; }
.form-status.error { background: #FBEAEA; color: #B3261E; display: block; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.82); padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin: 16px 0 20px; max-width: 260px; }
.footer-col h4 { font-family: var(--font-body); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.62); transition: color .2s; }
.footer-col a:hover { color: var(--sage-light); }
.footer-contact li { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: rgba(255,255,255,0.62); }
.footer-contact i, .footer-contact svg { width: 16px; height: 16px; color: var(--sage-light); }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.social-links a:hover { background: var(--sage); }
.social-links svg, .social-links i { width: 16px; height: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.45); }
.footer-legal a:hover { color: var(--sage-light); }

/* ==========================================================================
   FLOATING CTA + MOBILE BOTTOM BAR
   ========================================================================== */
.floating-cta {
    position: fixed; right: 26px; bottom: 26px; z-index: 150; display: flex; align-items: center; gap: 10px;
    background: var(--sage); color: #fff; padding: 15px 24px; border-radius: 100px; font-weight: 600; font-size: 0.9rem;
    box-shadow: 0 14px 30px -10px rgba(79,138,97,0.55); transition: transform .25s var(--ease);
}
.floating-cta:hover { transform: translateY(-3px) scale(1.03); }
.floating-cta svg, .floating-cta i { width: 18px; height: 18px; }

.mobile-bottom-bar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 190; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 20px -10px rgba(16,42,67,0.2); }
.bottom-bar-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 0; font-size: 0.85rem; font-weight: 600; }
.bottom-bar-btn.call { color: var(--navy); border-right: 1px solid var(--line); }
.bottom-bar-btn.quote { color: var(--sage); }
.bottom-bar-btn svg, .bottom-bar-btn i { width: 17px; height: 17px; }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   PAGE HERO (interior pages: service/location/about/contact)
   ========================================================================== */
.page-hero { padding: 60px 0 80px; background: linear-gradient(180deg, #FDFCF9 0%, var(--cream) 100%); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -140px; left: -140px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, var(--sage-dim) 0%, transparent 70%); }
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.page-hero-inner.wide { max-width: 900px; }

.content-block { max-width: 780px; }
.content-block h2 { margin-top: 2em; }
.content-block ul.check-list { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; }
.check-list li i, .check-list li svg { width: 20px; height: 20px; color: var(--sage); flex-shrink: 0; margin-top: 2px; }

.stat-strip { display: flex; gap: 40px; flex-wrap: wrap; padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 40px 0; }
.stat-strip div strong { display: block; font-family: var(--font-heading); font-size: 1.6rem; color: var(--navy); }
.stat-strip div span { font-size: 0.82rem; color: var(--gray-soft); }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { display: flex; align-items: center; gap: 14px; padding: 18px; background: #fff; border-radius: 14px; border: 1px solid var(--line); transition: border-color .2s, transform .2s; }
.related-card:hover { border-color: var(--sage); transform: translateY(-3px); }
.related-card .icon-badge { width: 40px; height: 40px; border-radius: 10px; background: var(--sage-dim); color: var(--sage); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.related-card span { font-weight: 600; font-size: 0.92rem; color: var(--navy); }

.areas-chip-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0; }
.areas-chip { padding: 10px 20px; border-radius: 100px; background: #fff; border: 1px solid var(--line); font-size: 0.88rem; font-weight: 500; color: var(--navy); }
.areas-chip:hover { border-color: var(--sage); color: var(--sage); }

.not-found { text-align: center; padding: 120px 0; }
.not-found-actions { display: flex; gap: 16px; justify-content: center; margin-top: 30px; }

.legal-page { padding: 90px 0; max-width: 760px; }

.contact-grid { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 50px; align-items: flex-start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-mini-grid { grid-template-columns: repeat(2, 1fr); }
    .locations-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .process-track { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
    .process-track::before { display: none; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .main-nav, .header-phone { display: none; }
    .mobile-menu-toggle { display: flex; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { order: -1; max-width: 420px; margin: 0 auto 20px; }
    .form-grid { grid-template-columns: 1fr; }
    .mobile-bottom-bar { display: flex; }
    body { padding-bottom: 62px; }
    .floating-cta span { display: none; }
    .floating-cta { padding: 15px; bottom: 82px; }
}

@media (max-width: 640px) {
    .section { padding: 64px 0; }
    .services-grid, .services-mini-grid, .locations-grid, .benefits-grid, .process-track, .related-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
    .trust-bar ul { flex-direction: column; align-items: flex-start; }
    .hero { padding: 40px 0 80px; }
    .form-card { padding: 26px; }
    .hero-float-card { left: 10px; bottom: -20px; padding: 14px 16px; }
}
