/* =============================================
   MARSEILLE-DEMENAGEMENT.COM — Main Stylesheet
   Aesthetic: Mediterranean Pro — Warm Navy + Sunburst Orange
   Fonts: Syne (display) + DM Sans (body)
   ============================================= */

:root {
    --navy: #0d2340;
    --navy-mid: #163256;
    --navy-light: #1e4475;
    --orange: #f26522;
    --orange-dark: #d4531a;
    --orange-light: #ff8a4c;
    --cream: #faf8f5;
    --warm-gray: #f0ede8;
    --gray-200: #e8e4de;
    --gray-500: #8a8278;
    --gray-700: #4a4540;
    --text: #1a1512;
    --white: #ffffff;

    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(13,35,64,0.10);
    --shadow-lg: 0 12px 48px rgba(13,35,64,0.16);
    --transition: 0.25s ease;
    --container: 1200px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* =====================
   HEADER
   ===================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--navy);
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 70px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
.logo-icon {
    width: 38px; height: 38px;
    background: var(--orange);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}
.logo-text {
    font-family: var(--font-display);
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: -0.01em;
}
.logo-text strong { color: white; }

/* Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}
.main-nav > a,
.nav-dropdown > a {
    color: rgba(255,255,255,0.80);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: background var(--transition), color var(--transition);
    cursor: pointer;
}
.main-nav > a:hover,
.nav-dropdown > a:hover { background: rgba(255,255,255,0.10); color: white; }

.nav-dropdown { position: relative; }

/* Base commune à tous les dropdowns */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(13,35,64,0.18), 0 4px 12px rgba(13,35,64,0.08);
    border: 1px solid #e8e4de;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 900;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ---- ARRONDISSEMENTS : 4 colonnes × 130px ---- */
.dropdown-menu.mega-arr {
    display: grid;
    grid-template-columns: repeat(4, 130px);
    gap: 2px;
    width: 560px;   /* 4×130 + padding + gaps */
}

/* ---- VILLES + ROUTES : 2 colonnes × 200px ---- */
.dropdown-menu.mega-villes {
    display: grid;
    grid-template-columns: repeat(2, 200px);
    gap: 2px;
    width: 424px;   /* 2×200 + padding */
}

/* ---- SERVICES : 1 colonne ---- */
.dropdown-menu.mega-services {
    display: grid;
    grid-template-columns: 260px;
    gap: 2px;
    width: 284px;
}

/* Span sur toute la largeur de la grille */
.dropdown-label,
.dropdown-divider {
    grid-column: 1 / -1;
}

/* Label de section */
.dropdown-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8a8278;
    padding: 8px 12px 4px;
}

/* Séparateur */
.dropdown-divider {
    height: 1px;
    background: #e8e4de;
    margin: 4px 8px;
}

/* Liens */
.dropdown-menu a {
    display: block;
    padding: 9px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #4a4540;
    border-radius: 8px;
    transition: background 0.18s ease, color 0.18s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dropdown-menu a:hover {
    background: rgba(242,101,34,0.08);
    color: #f26522;
}

.btn-cta-header {
    background: var(--orange);
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
    padding: 10px 20px;
    border-radius: 8px;
    white-space: nowrap;
    transition: background var(--transition), transform var(--transition);
    display: flex; align-items: center; gap: 6px;
    flex-shrink: 0;
}
.btn-cta-header:hover { background: var(--orange-dark); transform: translateY(-1px); }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}
.burger span {
    display: block;
    width: 24px; height: 2px;
    background: white;
    border-radius: 2px;
    transition: all var(--transition);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--navy-mid);
    padding: 16px 24px 24px;
    gap: 0;
}
.mobile-menu a {
    color: rgba(255,255,255,0.80);
    font-size: 0.9rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu strong {
    color: var(--orange);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 16px 0 4px;
    display: block;
}
.mobile-menu.open { display: flex; }

/* =====================
   HERO
   ===================== */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #1a3a6e 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0 70px;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 85% 50%, rgba(242,101,34,0.12) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(242,101,34,0.15);
    border: 1px solid rgba(242,101,34,0.30);
    color: var(--orange-light);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--orange); }
.hero-sub {
    color: rgba(255,255,255,0.70);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.stat-item { text-align: left; }
.stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}
.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
}

/* Hero form card */
.hero-form-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.hero-form-header {
    background: var(--orange);
    padding: 16px 24px;
    color: white;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* =====================
   SECTION LAYOUT
   ===================== */
.section { padding: 80px 0; }
.section-alt { background: var(--warm-gray); }
.section-dark { background: var(--navy); }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    margin-bottom: 12px;
}
.section-label::before,
.section-label::after {
    content: '';
    display: block;
    width: 24px; height: 2px;
    background: var(--orange);
    border-radius: 2px;
}
h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--navy);
}
h2 .accent { color: var(--orange); }
.section-dark h2 { color: white; }
.section-intro {
    color: var(--gray-500);
    margin-top: 12px;
    font-size: 1rem;
}
.section-dark .section-intro { color: rgba(255,255,255,0.60); }

/* =====================
   HOW IT WORKS
   ===================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(12.5% + 16px);
    right: calc(12.5% + 16px);
    height: 2px;
    background: linear-gradient(90deg, var(--orange) 0%, rgba(242,101,34,0.15) 100%);
}
.step-card {
    text-align: center;
    position: relative;
}
.step-number {
    width: 64px; height: 64px;
    background: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    border: 4px solid white;
    box-shadow: 0 0 0 2px var(--orange);
}
.step-number span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--orange);
}
.step-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.step-card p { font-size: 0.875rem; color: var(--gray-500); }

/* =====================
   COMPANIES GRID
   ===================== */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.company-card {
    background: white;
    border-radius: var(--radius);
    border: 2px solid var(--gray-200);
    padding: 28px 20px;
    text-align: center;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.company-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.company-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: white;
}
.company-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.company-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 12px;
}
.tag {
    background: var(--warm-gray);
    color: var(--gray-700);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 100px;
    font-weight: 500;
}
.tag-orange {
    background: rgba(242,101,34,0.10);
    color: var(--orange-dark);
}

/* =====================
   CONTENT + FORM LAYOUT (conversion pages)
   ===================== */
.content-with-form {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 3rem;
    align-items: start;
}
.content-main h1 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.content-main .lead-text {
    font-size: 1.05rem;
    color: var(--gray-700);
    margin-bottom: 32px;
    max-width: 560px;
}
.content-main h2 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    text-align: left;
    margin: 0 0 12px;
}
.content-main h2::before { display: none; }
.content-main p { color: var(--gray-700); margin-bottom: 16px; line-height: 1.7; }

/* Sticky form */
.form-sticky {
    position: sticky;
    top: 90px;
}
.form-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 2px solid var(--gray-200);
}
.form-card-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 20px 24px;
    color: white;
    text-align: center;
}
.form-card-header h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.form-card-header p { font-size: 0.825rem; color: rgba(255,255,255,0.70); }
.form-card-body { padding: 0; }
.form-card-footer {
    padding: 14px 20px;
    background: var(--warm-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--gray-500);
    border-top: 1px solid var(--gray-200);
}
.form-card-footer i { color: var(--orange); }

/* =====================
   ARRONDISSEMENTS INDEX
   ===================== */
.arr-index-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
}
.arr-index-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.arr-index-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow);
}
.arr-index-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.arr-index-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}
.arr-index-zip {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-top: 2px;
}
.arr-index-btn {
    background: var(--orange);
    color: white;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background var(--transition);
}
.arr-index-btn:hover { background: var(--orange-dark); }
.arr-index-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.55;
    margin: 0;
}
.arr-index-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.arr-badge {
    background: var(--warm-gray);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    transition: background var(--transition), color var(--transition);
}
.arr-badge:hover {
    background: rgba(242,101,34,0.12);
    color: var(--orange);
}

/* =====================
   INFO BOXES & LISTS
   ===================== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 32px 0;
}
.info-box {
    background: var(--warm-gray);
    border-radius: var(--radius);
    padding: 24px;
    border-left: 4px solid var(--orange);
}
.info-box-icon {
    font-size: 1.4rem;
    color: var(--orange);
    margin-bottom: 12px;
}
.info-box h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}
.info-box p { font-size: 0.85rem; color: var(--gray-500); }

.checklist {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    margin: 16px 0 24px;
}
.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-700);
}
.checklist li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--orange);
    font-size: 0.8rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* =====================
   BREADCRUMB
   ===================== */
.breadcrumb-bar {
    background: var(--warm-gray);
    border-bottom: 1px solid var(--gray-200);
    padding: 10px 0;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--gray-500);
}
.breadcrumb a { color: var(--orange); }
.breadcrumb i { font-size: 0.6rem; }

/* =====================
   PAGE HERO (inner pages)
   ===================== */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    right: -100px; top: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242,101,34,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 12px;
}
.page-hero p {
    color: rgba(255,255,255,0.70);
    font-size: 1rem;
    max-width: 560px;
}
.page-hero .accent { color: var(--orange); }

/* =====================
   CTA BAND
   ===================== */
.cta-band {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    padding: 60px 0;
    text-align: center;
}
.cta-band h2 {
    color: white;
    font-size: clamp(1.4rem, 3vw, 2rem);
}
.cta-band p { color: rgba(255,255,255,0.80); margin: 12px 0 28px; }
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--orange-dark);
    font-family: var(--font-display);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 1rem;
    transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-navy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 1rem;
    transition: background var(--transition), transform var(--transition);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }

/* =====================
   ROUTE PAGE SPECIFICS
   ===================== */
.route-header-detail {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.route-arrow {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.route-city {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 12px 20px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
}
.route-icon-arrow {
    color: var(--orange);
    font-size: 1.4rem;
}
.route-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.route-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--gray-700);
    background: var(--warm-gray);
    padding: 8px 16px;
    border-radius: 100px;
}
.route-meta-item i { color: var(--orange); }

/* =====================
   CITIES GRID
   ===================== */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}
.city-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.city-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-2px); }
.city-card-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
}
.city-card-sub { font-size: 0.8rem; color: var(--gray-500); }
.city-card i { color: var(--orange); font-size: 0.85rem; margin-top: 4px; }

/* =====================
   SERVICES ICONS GRID
   ===================== */
.services-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-icon-card {
    background: white;
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    border: 2px solid var(--gray-200);
    transition: all var(--transition);
    display: block;
}
.service-icon-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.8rem;
    color: white;
    transition: background var(--transition);
}
.service-icon-card:hover .service-icon { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); }
.service-icon-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.service-icon-card p { font-size: 0.85rem; color: var(--gray-500); }

/* =====================
   FAQ
   ===================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: white;
    border-radius: var(--radius);
    border: 2px solid var(--gray-200);
    overflow: hidden;
}
.faq-question {
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
    user-select: none;
    transition: background var(--transition);
}
.faq-question:hover { background: var(--warm-gray); }
.faq-question i { color: var(--orange); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 24px 18px; }

/* =====================
   FOOTER
   ===================== */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.70); }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
    gap: 3rem;
    padding: 64px 0 48px;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-top: 16px; }
.logo-footer .logo-text { color: rgba(255,255,255,0.60); }
.logo-footer .logo-text strong { color: white; }
.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 0.85rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--orange); }

/* =====================
   TRUST BAR
   ===================== */
.trust-bar {
    background: white;
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 0;
}
.trust-bar-inner {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
}
.trust-item i { color: var(--orange); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
    .companies-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .content-with-form { grid-template-columns: 1fr; }
    .form-sticky { position: static; }
    .services-icons { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .main-nav, .btn-cta-header { display: none; }
    .burger { display: flex; }
    .hero-inner { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid::before { display: none; }
    .info-grid { grid-template-columns: 1fr; }
    .checklist { grid-template-columns: 1fr; }
    .companies-grid { grid-template-columns: 1fr 1fr; }
    .services-icons { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding: 40px 0 32px; }
    .cities-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-bar-inner { gap: 1rem 2rem; justify-content: flex-start; }
}
@media (max-width: 480px) {
    .section { padding: 56px 0; }
    .steps-grid { grid-template-columns: 1fr; }
    .companies-grid { grid-template-columns: 1fr; }
    .services-icons { grid-template-columns: 1fr; }
    .route-header-detail { flex-direction: column; align-items: flex-start; }
}
