/**
 * MAISONS CTL - Home.css
 * Styles pour la page d'accueil custom
 * 
 * 📁 Chemin: wp-content/themes/maisons-ctl-custom/assets/css/home.css
 * 📦 Version: 2.3.1
 * 📅 Date: 11/10/2025 - 16:00
 * 
 * ═══════════════════════════════════════════════════════════════
 * CORRECTIF v2.3.1 (11/10/2025 - 16:00) :
 * ═══════════════════════════════════════════════════════════════
 * 🔧 RATIO 16:9 FORCÉ : Carrousel mobile en aspect-ratio 16/9
 * ✅ Remplacement des hauteurs fixes (400px, 450px, 550px)
 * ✅ Utilisation de aspect-ratio: 16/9 (comme galerie et types)
 * ✅ Cohérence visuelle totale avec le reste du site
 * ✅ Adaptation automatique à toutes les largeurs d'écran
 * 
 * Format carrousel mobile :
 * - RATIO 16:9 strict sur toutes les tailles d'écran
 * - Adaptation automatique selon largeur de viewport
 * 
 * ═══════════════════════════════════════════════════════════════
 * v2.3.0 (11/10/2025 - 15:30) :
 * ═══════════════════════════════════════════════════════════════
 * 🎠 CARROUSEL MOBILE : Styles complets pour le carrousel mobile
 * ✅ .hero-mobile-carousel : Conteneur des slides mobiles
 * ✅ .hero-mobile-slide : Slides individuelles avec transition fade
 * ✅ .hero-mobile-dots : Points de navigation tactiles
 * ✅ .dot-mobile : Styles des points avec animations
 * ✅ Transitions optimisées avec GPU acceleration
 * 
 * ═══════════════════════════════════════════════════════════════
 * HISTORIQUE DES VERSIONS :
 * ═══════════════════════════════════════════════════════════════
 * 
 * v2.2.0 (10/10/2025 - 13:00) :
 * ✅ CARROUSEL HERO DESKTOP : 5 images en rotation automatique
 * ✅ Transition fade smooth (opacity) toutes les 5 secondes
 * ✅ Points de navigation stylisés en bas du hero
 * ✅ Pause au hover, reprise au mouseleave
 * ✅ Images 1920x1080 parfaites pour 100vh
 * ✅ Performance optimisée avec GPU acceleration
 * 
 * v2.1.0 (10/10/2025 - 11:30) :
 * ✅ Hero Desktop : height 100vh (plein écran) au lieu de 600px
 * ✅ Hero Mobile : hauteurs adaptatives (70vh à 75vh selon device)
 * ✅ Boutons descendus avec margin-top (40px, 35px, 30px)
 * ✅ Padding-bottom augmenté (90px, 80px, 70px) pour masquer "49"
 * ✅ AUCUNE bande bleue visible sur aucun écran sans scroll
 * ✅ Titre mobile sur 4 lignes (géré en HTML avec <br>)
 * ✅ Design adaptatif automatique selon taille d'écran
 * 
 * v2.0.0 (10/10/2025 - 11:00) :
 * ✅ MÉTHODE COPIÉE DE single-plan_maison.php (QUI FONCTIONNE !)
 * ✅ .hero-mobile-image : Image AVANT la section hero
 * ✅ Image en display block normal (pas position absolute)
 * ✅ Section hero-section-mobile APRÈS l'image (juste texte)
 * ✅ Affichage PARFAIT comme single-plan_maison.php
 * ✅ Image affichée entièrement sans recadrage
 */

/* ========================================
   VARIABLES CSS
======================================== */
:root {
    --primary-color: #2C3E50;
    --secondary-color: #E74C3C;
    --accent-color: #3498DB;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --border-radius: 15px;
    --transition: all 0.3s ease;
}

/* ========================================
   RESET & BASE
======================================== */
.home-page {
    font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   CARROUSEL MOBILE (NOUVEAU v2.3.0)
   Remplace l'image fixe par un carrousel
======================================== */
.hero-mobile-image {
    display: none; /* Masqué par défaut sur desktop */
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Conteneur du carrousel mobile - RATIO 16:9 STRICT */
.hero-mobile-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

/* Chaque slide du carrousel mobile */
.hero-mobile-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity;
    transform: translateZ(0); /* GPU acceleration */
}

/* Slide active visible */
.hero-mobile-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Points de navigation mobile */
.hero-mobile-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-mobile-dots .dot-mobile {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-mobile-dots .dot-mobile:active {
    transform: scale(0.9);
}

.hero-mobile-dots .dot-mobile.active {
    background: var(--white);
    border-color: var(--secondary-color);
    transform: scale(1.2);
}

/* Afficher le carrousel mobile sur tablette et mobile */
@media (max-width: 1024px) {
    .hero-mobile-image {
        display: block;
    }
}

/* Points de navigation - Ajustement pour mobile portrait */
@media (max-width: 480px) {
    .hero-mobile-dots {
        bottom: 15px;
    }
    
    .hero-mobile-dots .dot-mobile {
        width: 8px;
        height: 8px;
    }
}

/* ========================================
   SECTION HERO DESKTOP (≥1025px)
   Carrousel d'images avec rotation
======================================== */
.hero-section-desktop {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Conteneur du carrousel */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Chaque slide du carrousel */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity;
}

/* Slide active visible */
.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Points de navigation */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.hero-dots .dot.active {
    background: var(--white);
    border-color: var(--secondary-color);
    transform: scale(1.3);
}

/* Masquer Hero Desktop sur tablette et mobile */
@media (max-width: 1024px) {
    .hero-section-desktop {
        display: none;
    }
}

/* ========================================
   SECTION HERO MOBILE (≤1024px)
   Texte + boutons APRÈS l'image/carrousel
======================================== */
.hero-section-mobile {
    display: none; /* Masqué par défaut sur desktop */
    position: relative;
    background: var(--bg-light);
    padding: 60px 20px 90px;
    text-align: center;
    min-height: 70vh;
}

/* Afficher Hero Mobile sur tablette et mobile */
@media (max-width: 1024px) {
    .hero-section-mobile {
        display: block;
    }
    
    .hero-content {
        padding-top: 40px;
    }
}

/* ========================================
   STYLES COMMUNS HERO (Desktop + Mobile)
======================================== */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.70), rgba(120, 120, 120, 0.35));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

/* Sur mobile : texte en noir sur fond clair */
@media (max-width: 1024px) {
    .hero-section-mobile .hero-content {
        color: var(--text-dark);
        padding: 0;
        width: 100%;
        max-width: 600px;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Titre mobile en noir */
@media (max-width: 1024px) {
    .hero-section-mobile .hero-title {
        color: var(--text-dark);
        text-shadow: none;
        font-size: 1.8rem;
        line-height: 1.3;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

/* Sous-titre mobile */
@media (max-width: 1024px) {
    .hero-section-mobile .hero-subtitle {
        color: var(--text-light);
        text-shadow: none;
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.btn-primary:hover {
    background: #C0392B;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Boutons mobile avec bordure adaptée */
@media (max-width: 1024px) {
    .hero-section-mobile .btn-secondary {
        color: var(--primary-color);
        border-color: var(--primary-color);
    }
    
    .hero-section-mobile .btn-secondary:hover {
        background: var(--primary-color);
        color: var(--white);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   BARRE DES CHIFFRES
======================================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), #34495E);
    color: var(--white);
    padding: 60px 0;
    margin-top: -1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    animation: countUp 1.5s ease;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   SECTIONS COMMUNES
======================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   TYPES DE MAISONS - RATIO 16:9 STRICT
======================================== */
.types-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.type-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.type-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.type-card:hover .type-image img {
    transform: scale(1.1);
}

.type-content {
    padding: 30px;
}

.type-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.type-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.type-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.type-benefits li {
    padding: 5px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.btn-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-link:hover {
    color: #C0392B;
    transform: translateX(5px);
}

/* ========================================
   GALERIE DE RÉALISATIONS - RATIO 16:9 STRICT
======================================== */
.gallery-section {
    padding: 80px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-label {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.gallery-cta {
    text-align: center;
}

/* ========================================
   PROCESSUS EN 9 ÉTAPES
======================================== */
.process-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 50px;
    bottom: 50px;
    width: 3px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--accent-color));
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    animation: slideIn 0.6s ease forwards;
    opacity: 0;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }
.process-step:nth-child(6) { animation-delay: 0.6s; }
.process-step:nth-child(7) { animation-delay: 0.7s; }
.process-step:nth-child(8) { animation-delay: 0.8s; }
.process-step:nth-child(9) { animation-delay: 0.9s; }

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), #C0392B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    position: relative;
    z-index: 2;
}

.step-content {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    flex: 1;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.step-time {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.process-footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.process-footer p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   TÉMOIGNAGES
======================================== */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-top: 2px solid var(--secondary-color);
    padding-top: 15px;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-size: 1.05rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ========================================
   ZONE D'INTERVENTION
======================================== */
.zone-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.zone-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.zone-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.zone-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.zone-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 25px;
}

.villes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.ville-item {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.zone-footer {
    font-weight: 600;
    color: var(--primary-color);
    margin: 20px 0 10px 0;
}

.zone-departements {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
}

.zone-rayon {
    background: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 1.05rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.zone-map iframe {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* ========================================
   CONTACT CTA FINAL
======================================== */
.contact-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), #34495E);
    color: var(--white);
}

.cta-content {
    text-align: center;
    margin-bottom: 50px;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 35px;
    color: #FFFFFF;
    line-height: 1.4;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefits {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1.15rem;
    font-weight: 500;
    color: #FFFFFF;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.contact-form-home {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-large {
    width: 100%;
    padding: 18px;
    font-size: 1.2rem;
    margin-top: 10px;
}

.contact-info-mini {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    border-top: 2px solid var(--bg-light);
}

.info-mini-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.info-mini-item .icon {
    font-size: 1.3rem;
}

.info-mini-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.info-mini-item a:hover {
    text-decoration: underline;
}

/* ========================================
   RESPONSIVE - TABLETTE (768px - 1024px)
======================================== */
@media (max-width: 1024px) and (min-width: 768px) {
    .hero-section-mobile .hero-title {
        font-size: 2.2rem;
    }

    .hero-section-mobile .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-section-mobile {
        min-height: 75vh;
        padding: 60px 20px 100px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .types-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .zone-content {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        flex-direction: column;
        gap: 15px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (≤767px)
======================================== */
@media (max-width: 767px) {
    .hero-section-mobile {
        padding: 50px 20px;
        min-height: 65vh;
    }

    .hero-section-mobile .hero-title {
        font-size: 1.6rem;
    }

    .hero-section-mobile .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .villes-grid {
        grid-template-columns: 1fr;
    }

    .cta-benefits {
        flex-direction: column;
        gap: 15px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .type-image {
        aspect-ratio: 16/9;
    }

    .gallery-item {
        aspect-ratio: 16/9;
    }
}

/* ========================================
   RESPONSIVE - MOBILE SMALL (≤480px)
======================================== */
@media (max-width: 480px) {
    .hero-section-mobile {
        padding: 40px 15px;
        min-height: 60vh;
    }

    .hero-section-mobile .hero-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .hero-section-mobile .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-cta {
        gap: 12px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .contact-info-mini {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .cta-benefits {
        font-size: 1rem;
        gap: 12px;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }

    .type-card {
        max-width: 100%;
    }

    .type-image {
        aspect-ratio: 16/9;
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        aspect-ratio: 16/9;
        width: 100%;
    }
}