/* ========================================
   SÉJOUR CURE - CHARTE GRAPHIQUE THERMALISME
   Palette: Verts nature + Bleus santé
   ======================================== */

:root {
    /* Couleurs principales - Thermalisme */
    --primary-color: #2d8a6e;
    --primary-dark: #1e6b54;
    --primary-light: #4cb896;
    --secondary-color: #3498db;
    --accent-color: #e8f5e9;
    
    /* Texte */
    --text-dark: #1a2e28;
    --text-light: #5a6e68;
    --text-muted: #8a9e98;
    
    /* Fonds */
    --bg-light: #f5faf8;
    --white: #ffffff;
    --border-color: #d4e5df;
    
    /* Statuts */
    --success: #27ae60;
    --warning: #f39c12;
    --danger: #e74c3c;
    
    /* Conventionnement Sécu */
    --secu-green: #27ae60;
    --secu-badge-bg: #d4edda;
    --libre-orange: #e67e22;
    --libre-badge-bg: #ffeaa7;
    
    /* Typographie */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    
    /* Effets */
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 3px rgba(45, 138, 110, 0.08);
    --shadow-md: 0 4px 12px rgba(45, 138, 110, 0.12);
    --shadow-lg: 0 8px 24px rgba(45, 138, 110, 0.16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
a:hover { color: var(--primary-color); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.3; }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1002;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 20px;
}

.site-branding .site-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
    text-decoration: none;
    display: block;
}

.site-branding .site-title .accent {
    color: var(--primary-dark);
}

/* Navigation Desktop */
.nav-desktop {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-desktop a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    font-size: 15px;
}

.nav-desktop a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Header Actions (Desktop) */
.header-actions {
    display: flex;
    gap: 10px;
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-dark);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger Animation (X) */
.mobile-menu-toggle.open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Drawer */
.mobile-menu-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1005;
    padding-top: 70px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu-drawer.open {
    transform: translateX(0);
}

.mobile-nav {
    padding: 20px;
}

.mobile-nav a {
    display: block;
    padding: 15px 10px;
    font-size: 16px;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav a:hover {
    color: var(--primary-color);
    background: var(--bg-light);
}

.mobile-nav-divider {
    height: 1px;
    background: var(--border-color);
    margin: 15px 0;
}

/* Body lock when menu open */
body.menu-open {
    overflow: hidden;
}

/* Boutons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary { background: var(--primary-color); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); }
.btn-secondary { background: var(--white); color: var(--primary-color); border: 1px solid var(--primary-color); }
.btn-secu { background: var(--secu-green); color: var(--white); }

/* Hero */
.hero-section {
    position: relative;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroSlide 48s infinite;
}

.hero-slideshow .slide:nth-child(1) { animation-delay: 0s; }
.hero-slideshow .slide:nth-child(2) { animation-delay: 6s; }
.hero-slideshow .slide:nth-child(3) { animation-delay: 12s; }
.hero-slideshow .slide:nth-child(4) { animation-delay: 18s; }
.hero-slideshow .slide:nth-child(5) { animation-delay: 24s; }
.hero-slideshow .slide:nth-child(6) { animation-delay: 30s; }
.hero-slideshow .slide:nth-child(7) { animation-delay: 36s; }
.hero-slideshow .slide:nth-child(8) { animation-delay: 42s; }

@keyframes heroSlide {
    0% { opacity: 0; }
    2% { opacity: 1; }
    12.5% { opacity: 1; }
    14.5% { opacity: 0; }
    100% { opacity: 0; }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(30, 107, 84, 0.60) 0%, rgba(45, 138, 110, 0.50) 50%, rgba(30, 107, 84, 0.65) 100%);
    z-index: 1;
}

.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-title { font-size: 52px; font-weight: 300; margin-bottom: 25px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero-subtitle { font-size: 22px; margin-bottom: 40px; opacity: 0.95; max-width: 750px; margin-left: auto; margin-right: auto; }

/* Badge Sécu dans Hero */
.hero-secu-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--secu-green);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
}

/* Formulaire recherche */
.search-box {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}

.search-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.search-field label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}

.search-field input,
.search-field select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
}

.search-field input:focus,
.search-field select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 138, 110, 0.1);
}

/* Filtre Sécu */
.secu-toggle {
    display: flex;
    background: var(--bg-light);
    border-radius: 8px;
    padding: 4px;
    border: 1px solid var(--border-color);
}

.secu-toggle .toggle-option {
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.secu-toggle .toggle-option.active {
    background: var(--secu-green);
    color: var(--white);
}

.secu-toggle .toggle-option.libre.active {
    background: var(--libre-orange);
}

.btn-search {
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}

.btn-search:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Badges conventionnement */
.badge-conventionnement {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.badge-conventionnement.secu-oui { background: var(--secu-badge-bg); color: #155724; }
.badge-conventionnement.secu-non { background: var(--libre-badge-bg); color: #856404; }

/* Orientations */
.orientations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.orientation-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.orientation-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.orientation-icon { font-size: 32px; margin-bottom: 10px; }
.orientation-name { font-size: 14px; font-weight: 600; }

/* Cartes établissements */
.etablissements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 25px;
}

.etablissement-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.etablissement-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.etablissement-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.etablissement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.etablissement-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.etablissement-content { padding: 20px; }
.etablissement-location { font-size: 13px; color: var(--text-light); margin-bottom: 8px; }
.etablissement-name { font-size: 20px; font-weight: 600; margin-bottom: 12px; }

.orientation-tag {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

/* Cartes cures */
.cures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.cure-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.cure-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.cure-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--bg-light) 100%);
    border-bottom: 1px solid var(--border-color);
}

.cure-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.cure-name { font-size: 18px; font-weight: 600; margin: 10px 0 8px; }
.cure-etablissement { font-size: 14px; color: var(--text-light); }

.cure-body { padding: 20px; }
.cure-description { font-size: 14px; color: var(--text-light); margin-bottom: 15px; }

.cure-footer {
    padding: 20px;
    background: var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cure-price-label { font-size: 12px; color: var(--text-muted); }
.cure-price-amount { font-size: 24px; font-weight: 700; color: var(--primary-color); }

.cure-price-secu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
    padding: 6px 10px;
    background: var(--secu-badge-bg);
    border-radius: 6px;
    font-size: 12px;
    color: #155724;
}

/* Section avantages */
.benefits-section { padding: 80px 0; background: var(--bg-light); }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.benefit-title { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.benefit-desc { font-size: 14px; color: var(--text-light); }

/* Info Sécu */
.secu-info-box {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left: 4px solid var(--secu-green);
    border-radius: 0 12px 12px 0;
    padding: 25px;
    margin: 30px 0;
}

.secu-info-box h4 { color: #155724; font-size: 18px; margin-bottom: 10px; }
.secu-info-box p { color: #155724; font-size: 14px; }

/* Footer */
.site-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

/* ========================================
   HOME PAGE STYLES
   ======================================== */

/* Hero Home avec Slideshow */
.hero-home {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Slideshow arrière-plan */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroFade 24s infinite;
}

.hero-slideshow .slide:nth-child(1) { animation-delay: 0s; }
.hero-slideshow .slide:nth-child(2) { animation-delay: 6s; }
.hero-slideshow .slide:nth-child(3) { animation-delay: 12s; }
.hero-slideshow .slide:nth-child(4) { animation-delay: 18s; }

@keyframes heroFade {
    0% { opacity: 0; }
    4% { opacity: 1; }
    25% { opacity: 1; }
    29% { opacity: 0; }
    100% { opacity: 0; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(30, 107, 84, 0.75) 0%,
        rgba(45, 138, 110, 0.65) 50%,
        rgba(30, 107, 84, 0.80) 100%
    );
    z-index: 1;
}

.hero-pattern {
    display: none;
}

.hero-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 25px;
    margin-bottom: 20px;
    font-size: 13px;
}

.badge-secu-tag {
    background: #28a745;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.hero-title-main {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle-main {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hide-mobile { display: inline; }

/* Hero Search Form */
.hero-search-form {
    background: white;
    border-radius: 16px;
    padding: 20px 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.search-grid-home {
    display: flex;
    gap: 12px;
    align-items: end;
}

.search-field {
    flex: 1;
}

.search-field.search-field-main {
    flex: 2;
}

.search-field.search-field-dates {
    flex: 2;
}

.search-field.search-field-guests {
    flex: 0 0 70px;
}

.search-field-btn {
    flex: 0 0 auto;
}

/* Dates sur une ligne */
.dates-row {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dates-row input {
    flex: 1;
    min-width: 0;
}

.date-separator {
    color: #999;
    font-size: 12px;
}

.search-field label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #1a3c4d;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.search-field input,
.search-field select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
}

.btn-search-main {
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-search-main:hover {
    background: var(--primary-dark);
}

.duration-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.duration-label {
    font-size: 12px;
    color: #666;
}

.duration-btn {
    padding: 5px 12px;
    border: 1px solid #ddd;
    background: white;
    color: #666;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
}

.duration-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Hero Stats */
.hero-stats {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 30px;
    color: rgba(255,255,255,0.9);
}

.stat-item { text-align: center; }
.stat-number { font-size: 24px; font-weight: 700; }
.stat-label { font-size: 12px; opacity: 0.8; }

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.section-header p {
    font-size: 16px;
    color: #666;
}

.section-footer {
    text-align: center;
    margin-top: 30px;
}

/* Steps */
.section-steps {
    padding: 60px 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
}

.step-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: #666;
}

/* Benefits */
.section-benefits {
    padding: 60px 0;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card {
    background: white;
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.benefit-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.benefit-card h3 {
    font-size: 15px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 13px;
    color: #666;
}

/* Destinations */
.section-destinations {
    padding: 60px 0;
    background: white;
}

.placeholder-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d0e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image span {
    font-size: 48px;
    opacity: 0.5;
}

.etablissement-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 12px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Orientations */
.section-orientations {
    padding: 60px 0;
    background: var(--bg-light);
}

.orientations-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.orientation-card {
    background: white;
    padding: 15px 10px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.orientation-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.orientation-icon { font-size: 24px; margin-bottom: 8px; }
.orientation-name { font-size: 12px; font-weight: 600; color: var(--primary-dark); }
.orientation-count { font-size: 10px; color: #999; margin-top: 4px; }

/* CTA */
.section-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 26px;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--primary-dark);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
}

/* Sécu Info */
.section-secu-info {
    padding: 40px 0;
    background: #f0fdf4;
    border-top: 3px solid #28a745;
}

.secu-info-content {
    display: flex;
    align-items: center;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.secu-icon {
    font-size: 50px;
    flex-shrink: 0;
}

.secu-text h3 {
    font-size: 20px;
    color: #155724;
    margin-bottom: 8px;
}

.secu-text p {
    font-size: 14px;
    color: #166534;
    margin-bottom: 8px;
}

.secu-text a {
    color: #15803d;
    font-weight: 600;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title { font-size: 16px; font-weight: 600; margin-bottom: 20px; }
.footer-links a { display: block; color: rgba(255,255,255,0.7); padding: 8px 0; font-size: 14px; }
.footer-links a:hover { color: var(--white); padding-left: 5px; }

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title { font-size: 38px; }
    .search-row { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .orientations-grid { grid-template-columns: repeat(4, 1fr); }
    .search-grid-home { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    /* Container */
    .container { 
        padding-left: 15px !important; 
        padding-right: 15px !important; 
    }
    
    /* ===== HEADER MOBILE ===== */
    .nav-desktop { display: none; }
    .header-actions { display: none; }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-drawer {
        display: block;
    }
    
    .site-branding .site-title {
        font-size: 20px;
    }
    
    .header-content {
        padding: 10px 0;
    }
    
    /* ===== HERO HOME ===== */
    .hero-home { 
        padding: 50px 0 60px; 
        min-height: auto;
    }
    .hero-title-main { font-size: 24px; }
    .hero-subtitle-main { font-size: 14px; margin-bottom: 20px; }
    .hero-badge { font-size: 11px; padding: 6px 12px; }
    .hide-mobile { display: none; }
    
    /* Search Form */
    .hero-search-form { padding: 15px; }
    .search-grid-home {
        flex-direction: column;
        gap: 10px;
    }
    .search-field,
    .search-field.search-field-main,
    .search-field.search-field-dates,
    .search-field.search-field-guests {
        flex: none;
        width: 100%;
    }
    .dates-row {
        flex-direction: column;
        gap: 8px;
    }
    .date-separator {
        display: none;
    }
    .search-field input,
    .search-field select { padding: 12px; font-size: 14px; }
    .btn-search-main { 
        width: 100%; 
        padding: 14px; 
        height: auto;
        font-size: 16px;
    }
    .btn-search-main::after {
        content: ' Rechercher';
    }
    
    /* Duration Buttons */
    .duration-buttons { gap: 6px; }
    .duration-btn { padding: 4px 10px; font-size: 11px; }
    .duration-label { font-size: 11px; }
    
    /* Stats */
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .stat-number { font-size: 20px; }
    .stat-label { font-size: 10px; }
    
    /* Sections */
    .section-steps,
    .section-benefits,
    .section-destinations,
    .section-orientations,
    .section-cta { padding: 40px 0; }
    
    .section-header h2 { font-size: 22px; }
    .section-header p { font-size: 14px; }
    .section-header { margin-bottom: 25px; }
    
    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .step-icon { font-size: 32px; }
    .step-card h3 { font-size: 16px; }
    .step-card p { font-size: 13px; }
    
    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .benefit-card { padding: 15px 10px; }
    .benefit-icon { font-size: 28px; margin-bottom: 8px; }
    .benefit-card h3 { font-size: 13px; }
    .benefit-card p { font-size: 11px; }
    
    /* Etablissements */
    .etablissements-grid { grid-template-columns: 1fr; gap: 15px; }
    
    /* Orientations */
    .orientations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .orientation-card { padding: 12px 8px; }
    .orientation-icon { font-size: 20px; }
    .orientation-name { font-size: 10px; }
    .orientation-count { font-size: 9px; }
    
    /* CTA */
    .cta-content h2 { font-size: 20px; }
    .cta-content p { font-size: 14px; }
    .cta-buttons { flex-direction: column; gap: 10px; }
    .btn-white, .btn-outline-white { 
        width: 100%;
        text-align: center;
    }
    
    /* Secu Info */
    .section-secu-info { padding: 30px 0; }
    .secu-info-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .secu-icon { font-size: 40px; }
    .secu-text h3 { font-size: 18px; }
    
    /* Map */
    .map-container-home,
    #homepage-map { height: 280px !important; }
    .homepage-map-section { padding: 30px 0; }
    .homepage-map-header h2 { font-size: 20px; }
    .map-legend {
        flex-direction: column;
        gap: 8px;
    }
    
    /* Footer */
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 20px; }
    .site-footer { padding: 40px 0 20px; }
    
    /* Archive */
    .page-header { padding: 30px 0; }
    .page-header h1 { font-size: 22px; }
    .search-form-row { flex-direction: column; gap: 10px; }
    .view-toggle { flex-wrap: wrap; justify-content: center; }
    
    /* Dashboard */
    .dashboard-wrapper {
        display: flex !important;
        flex-direction: column;
    }
    .dashboard-sidebar { order: 2; }
    .dashboard-content { order: 1; }
}

@media (max-width: 480px) {
    .hero-title-main { font-size: 20px; }
    .hero-subtitle-main { font-size: 13px; }
    
    .benefits-grid { grid-template-columns: 1fr; }
    .orientations-grid { grid-template-columns: repeat(2, 1fr); }
    
    .stat-item { flex: 0 0 100%; }
    .hero-stats { flex-direction: column; gap: 10px; }
    
    .map-container-home,
    #homepage-map { height: 220px !important; }
    
    .site-branding .site-title { font-size: 18px; }
}
