/* ============================================
   DEVIS PLANCHER CHAUFFANT - styles.css
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary: #0077B6;
    --primary-dark: #023E8A;
    --primary-light: #CAF0F8;
    --primary-ultra-light: #EFF9FC;
    --secondary: #FF6B35;
    --secondary-dark: #E85D2A;
    --secondary-light: #FFF0EB;
    --accent: #FFD166;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --bg-body: #F8FBFE;
    --bg-card: #FFFFFF;
    --border-color: #E2E8F0;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.10);
    --shadow-xl: 0 30px 60px rgba(0,0,0,0.14);
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --nav-height: 72px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    background: var(--bg-body);
    color: var(--text-main);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul { list-style: none; }

h1, h2, h3, h4 { 
    line-height: 1.2; 
    font-weight: 800; 
    color: var(--text-main); 
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); margin-bottom: 1.25rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
p { color: var(--text-muted); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

section { padding: var(--space-lg) 0; }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title p {
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0.75rem auto 0;
}

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ===== HEADER / NAV ===== */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    height: var(--nav-height);
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 1.15rem;
    color: var(--text-main);
    letter-spacing: 0;
}
.logo i { color: var(--secondary); width: 26px; height: 26px; }
.logo span { color: var(--primary); margin: 0 2px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.2s;
}
.nav-link:hover { 
    color: var(--primary); 
    background: var(--primary-ultra-light); 
}

.hamburger { display: none; cursor: pointer; background: none; border: none; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.25s;
    white-space: nowrap;
}
.btn i { width: 18px; height: 18px; }

.btn-primary { 
    background: var(--primary); 
    color: white; 
    box-shadow: 0 4px 12px rgba(0,119,182,0.3);
}
.btn-primary:hover { 
    background: var(--primary-dark); 
    transform: translateY(-2px); 
    box-shadow: 0 8px 20px rgba(0,119,182,0.35);
    color: white;
}

.btn-secondary { 
    background: var(--secondary); 
    color: white; 
    box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}
.btn-secondary:hover { 
    background: var(--secondary-dark); 
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,107,53,0.35);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover {
    background: var(--primary-ultra-light);
    transform: translateY(-2px);
    color: var(--primary-dark);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: calc(100vh - var(--nav-height));
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #0096C7 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.18;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-shapes::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -200px;
    right: -100px;
}
.hero-shapes::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,107,53,0.15);
    bottom: -80px;
    left: 10%;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.hero-badge i { width: 14px; color: var(--accent); }

.hero h1 { color: white; font-size: clamp(2.25rem, 4vw, 3.5rem); }
.hero h1 span { 
    color: var(--accent);
    position: relative;
}

.hero-desc {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.hero-stat {
    text-align: center;
}
.hero-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}
.hero-stat span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
    display: block;
}

/* Hero Search Card */
.hero-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}
.hero-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}
.hero-card-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.search-form input {
    width: 100%;
    padding: 0.9rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-main);
    color: var(--text-main);
    background: var(--bg-body);
    transition: border-color 0.2s;
}
.search-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}
.search-form select {
    width: 100%;
    padding: 0.9rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-main);
    color: var(--text-main);
    background: var(--bg-body);
    transition: border-color 0.2s;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}
.search-form select:focus { outline: none; border-color: var(--primary); }
.search-form .btn { width: 100%; padding: 1rem; font-size: 1rem; }

.hero-card-trust {
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
}
.hero-card-trust i { width: 14px; color: #22C55E; }

/* ===== TRUST BAR ===== */
.trust-bar {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 0;
}
.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}
.trust-item i { color: var(--primary); width: 18px; }

/* ===== CARDS ===== */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s;
    padding: 2rem;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

/* Region Cards */
.region-card {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.region-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    background: var(--primary-ultra-light);
}
.region-card:hover .region-icon { background: var(--primary); }
.region-card:hover .region-icon i { color: white; }

.region-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s;
}
.region-icon i { color: var(--primary); width: 24px; height: 24px; }

.region-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.region-card p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1rem; }

.region-arrow {
    margin-top: auto;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 4px;
}
.region-arrow i { width: 16px; }

/* Pricing Cards */
.price-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.price-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}
.price-card-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}
.price-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.price-icon i { width: 32px; height: 32px; }
.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1;
    margin: 1.25rem 0;
}
.price-amount small { font-size: 1rem; font-weight: 600; color: var(--text-muted); }
.price-list { text-align: left; margin: 1.5rem 0; }
.price-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}
.price-list li:last-child { border-bottom: none; }
.price-list i { width: 16px; color: #22C55E; flex-shrink: 0; }

/* ===== FEATURES ===== */
.feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}
.feature-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-icon i { width: 22px; color: var(--primary); }

/* ===== FAQ ===== */
.faq-item {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
}
.faq-question {
    padding: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.faq-question i { width: 20px; color: var(--primary); flex-shrink: 0; }
.faq-answer { padding: 0 1.5rem 1.5rem; font-size: 0.95rem; }

/* ===== SEARCH BAR (standalone) ===== */
.search-container {
    background: white;
    border-radius: var(--radius-xl);
    padding: 0.5rem;
    display: flex;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    margin: -2.5rem auto 0;
    max-width: 720px;
    position: relative;
    z-index: 10;
}
.search-container input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-family: var(--font-main);
    color: var(--text-main);
}
.search-container input:focus { outline: none; }
.search-container .btn { flex-shrink: 0; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.breadcrumb i { width: 14px; color: var(--text-light); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb strong { color: var(--text-main); }

/* ===== SIDEBAR LAYOUT ===== */
.sidebar-layout {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 3rem;
    align-items: flex-start;
}
.sticky-card {
    position: sticky;
    top: calc(var(--nav-height) + 1.5rem);
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

/* ===== ALPHABET FILTER ===== */
.alphabet-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 2rem;
    justify-content: center;
}
.alphabet-filter a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: all 0.2s;
}
.alphabet-filter a:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* ===== CITY GRID ===== */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 0.85rem;
}
.city-link {
    background: white;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: all 0.2s;
}
.city-link:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.city-link strong { font-size: 0.9rem; color: var(--text-main); }
.city-link span { font-size: 0.75rem; color: var(--text-muted); }

/* ===== PRO LISTING ===== */
.pro-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    align-items: flex-start;
    transition: all 0.3s;
}
.pro-item:hover { box-shadow: var(--shadow-md); border-color: var(--primary-light); }

.pro-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pro-rating {
    background: #FEF3C7;
    color: #92400E;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.pro-badge {
    background: #DCFCE7;
    color: #166534;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
}
.pro-badge-rge {
    background: #DBEAFE;
    color: #1E40AF;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
}

/* ===== INFO BOX ===== */
.info-box {
    background: var(--primary-ultra-light);
    border: 1px solid var(--primary-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    align-items: flex-start;
}
.info-box i { color: var(--primary); width: 20px; flex-shrink: 0; margin-top: 2px; }
.info-box p { margin: 0; font-size: 0.92rem; color: var(--text-main); }

.lead { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 1.5rem; }

/* ===== CHECKLIST ===== */
.checklist { margin: 1rem 0; }
.checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-color);
}
.checklist li:last-child { border-bottom: none; }
.checklist i { color: #22C55E; width: 16px; flex-shrink: 0; }

/* ===== ICON CIRCLE ===== */
.icon-circle {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}
.icon-circle i { width: 28px; height: 28px; }

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    text-align: center;
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -200px;
    right: -100px;
}

/* ===== FOOTER ===== */
footer {
    background: #0A1628;
    color: white;
    padding: 5rem 0 0;
    margin-top: 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1.25rem;
}
.footer-brand .logo span { color: var(--accent); }
.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}
.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: rgba(255,255,255,0.6);
}
.footer-social a i { width: 16px; height: 16px; }
.footer-social a:hover { background: var(--primary); color: white; }

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s;
}
.footer-col a:hover { color: white; }

.footer-bottom {
    padding: 1.75rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}
.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}
.footer-bottom-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

.footer-badges {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}
.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.65);
}
.footer-badge i { width: 14px; color: var(--accent); }

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* ===== 404 ===== */
.not-found {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-card { max-width: 520px; margin: 0 auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-badge { margin: 0 auto 1.5rem; }

    .sidebar-layout { grid-template-columns: 1fr; }
    .sticky-card { position: static; }
    aside { order: -1; }

    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    :root { --space-lg: 3rem; --space-xl: 4rem; }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .nav-links { display: none; }
    .hamburger { display: flex; }

    .hero { min-height: auto; }
    .hero-inner { padding: 3rem 0; }

    .trust-bar-inner { gap: 1.25rem; }
    .trust-item span { display: none; }

    .search-container { flex-direction: column; }
    .search-container .btn { width: 100%; }

    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; }
}

@media (max-width: 480px) {
    .hero-stats { gap: 1.25rem; }
    .hero-stat strong { font-size: 1.5rem; }
}

/* ===== CONTACT PAGE SPECIFIC ===== */
.hero-sub {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 6rem 0 4rem;
    color: white;
    text-align: center;
}
.hero-sub h1 { color: white; margin-bottom: 1rem; }
.hero-sub p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.contact-section { background: var(--bg-body); position: relative; padding-top: 0; }
.contact-container { margin-top: -3rem; position: relative; z-index: 5; }

.nap-box {
    display: grid;
    gap: 2rem;
    margin-top: 2.5rem;
}
.nap-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.nap-item i {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}
.nap-item:hover i { background: var(--primary); color: white; transform: scale(1.1); }
.nap-item strong { display: block; font-size: 1rem; color: var(--text-main); margin-bottom: 2px; }
.nap-item p { margin: 0; font-size: 0.95rem; line-height: 1.5; }

.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}
.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 1rem;
    background: #F1F5F9;
    transition: all 0.2s;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px var(--primary-ultra-light);
}

.contact-form .card {
    padding: 3rem;
    border: none;
    box-shadow: var(--shadow-xl);
}
.contact-form h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }

.map-container {
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}
.map-container:hover { box-shadow: var(--shadow-lg); }

@media (max-width: 768px) {
    .contact-container { margin-top: 0; padding-top: 2rem; }
    .contact-form .card { padding: 2rem; }
}