/* ============================================
   TEMPLATE WEB.AI - CSS PRINCIPAL
   Site vitrine modulaire
   ============================================ */

/* ========================================
   1. CHARTE GRAPHIQUE - VARIABLES
   Modifier ces valeurs pour personnaliser
   ======================================== */

:root {
    /* --- COULEURS PRINCIPALES --- */
    --primaire: #0d2d4a;           /* Couleur principale (navbar, titres, footer) */
    --primaire-fonce: #081c30;     /* Version foncée (footer bg) */
    --primaire-clair: #2e6b8a;     /* Version claire (liens, accents) */
    
    /* --- COULEUR ACCENT --- */
    --accent: #c8923a;             /* Couleur d'accent (boutons, highlights) */
    --accent-clair: #f7efe0;       /* Version claire (fonds légers) */
    
    /* --- NEUTRES --- */
    --blanc: #ffffff;
    --gris-clair: #f8f9fa;         /* Fond alterné sections */
    --gris: #e9ecef;               /* Bordures, séparateurs */
    --gris-texte: #6c757d;         /* Texte secondaire */
    --noir: #1a1a1a;               /* Texte principal */
    
    /* --- FEEDBACK --- */
    --succes: #28a745;
    --erreur: #dc3545;
    --warning: #ffc107;
    
    /* --- TYPOGRAPHIE --- */
    --font-titre: 'Playfair Display', Georgia, serif;
    --font-corps: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* --- ESPACEMENTS --- */
    --espace-xs: 0.25rem;
    --espace-sm: 0.5rem;
    --espace-md: 1rem;
    --espace-lg: 1.5rem;
    --espace-xl: 2rem;
    --espace-xxl: 3rem;
    --espace-section: 5rem;
    
    /* --- EFFETS --- */
    --transition: 0.3s ease;
    --ombre-legere: 0 2px 10px rgba(0, 0, 0, 0.1);
    --ombre-moyenne: 0 4px 20px rgba(0, 0, 0, 0.15);
    --ombre-forte: 0 8px 30px rgba(0, 0, 0, 0.2);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-rond: 50%;
    
    /* --- DIMENSIONS --- */
    --max-width: 1200px;
    --max-width-etroit: 800px;
    --navbar-height: 80px;
}

/* ========================================
   2. RESET & BASE
   ======================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-corps);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--noir);
    background-color: var(--blanc);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primaire-clair);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent);
}

ul, ol {
    list-style: none;
}

/* ========================================
   3. TYPOGRAPHIE
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-titre);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primaire);
    margin-bottom: var(--espace-md);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p { margin-bottom: var(--espace-md); }

.text-accent { color: var(--accent); }
.text-light { color: var(--blanc); }
.text-center { text-align: center; }
.text-muted { color: var(--gris-texte); }

/* ========================================
   4. LAYOUT
   ======================================== */

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--espace-lg);
}

.container--etroit {
    max-width: var(--max-width-etroit);
}

section {
    padding: var(--espace-section) 0;
}

.section--alt {
    background-color: var(--gris-clair);
}

.section--primaire {
    background-color: var(--primaire);
    color: var(--blanc);
}

.section--primaire h2,
.section--primaire h3,
.section--primaire h4 {
    color: var(--blanc);
}

.section-header {
    text-align: center;
    margin-bottom: var(--espace-xxl);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gris-texte);
    max-width: 600px;
    margin: var(--espace-md) auto 0;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

/* ========================================
   5. NAVBAR
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--espace-md) 0;
    transition: all var(--transition);
}

.navbar.transparent {
    background: transparent;
}

.navbar.scrolled {
    background: var(--blanc);
    box-shadow: var(--ombre-legere);
    padding: var(--espace-sm) 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    font-family: var(--font-titre);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blanc);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transition: all var(--transition);
}

.navbar-logo span {
    color: var(--accent);
}

.navbar.scrolled .navbar-logo {
    color: var(--primaire);
    text-shadow: none;
}

.navbar-menu {
    display: flex;
    gap: var(--espace-xl);
}

.navbar-menu a {
    color: var(--blanc);
    font-weight: 500;
    padding: var(--espace-sm) 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transition: all var(--transition);
}

.navbar-menu a:hover {
    color: var(--accent);
}

.navbar.scrolled .navbar-menu a {
    color: var(--primaire);
    text-shadow: none;
}

.navbar.scrolled .navbar-menu a:hover {
    color: var(--accent);
}

/* Burger mobile */
.navbar-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: var(--espace-sm);
}

.navbar-burger span {
    width: 25px;
    height: 3px;
    background-color: var(--blanc);
    border-radius: 2px;
    transition: all var(--transition);
}

.navbar.scrolled .navbar-burger span {
    background-color: var(--primaire);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--blanc);
    min-width: 200px;
    border-radius: var(--radius-md);
    box-shadow: var(--ombre-moyenne);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: var(--espace-sm) var(--espace-md);
    color: var(--primaire) !important;
    text-shadow: none !important;
    border-bottom: 1px solid var(--gris);
}

.dropdown a:last-child {
    border-bottom: none;
}

.dropdown a:hover {
    background: var(--gris-clair);
}

/* ========================================
   6. BOUTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: var(--espace-md) var(--espace-xl);
    font-family: var(--font-corps);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
}

.btn--primary {
    background-color: var(--accent);
    color: var(--blanc);
    border-color: var(--accent);
}

.btn--primary:hover {
    background-color: transparent;
    color: var(--accent);
}

.btn--secondary {
    background-color: var(--primaire-clair);
    color: var(--blanc);
    border-color: var(--primaire-clair);
}

.btn--secondary:hover {
    background-color: transparent;
    color: var(--primaire-clair);
}

.btn--outline {
    background-color: transparent;
    color: var(--blanc);
    border-color: var(--blanc);
}

.btn--outline:hover {
    background-color: var(--blanc);
    color: var(--primaire);
}

.btn--outline-dark {
    background-color: transparent;
    color: var(--primaire);
    border-color: var(--primaire);
}

.btn--outline-dark:hover {
    background-color: var(--primaire);
    color: var(--blanc);
}

.btn--large {
    padding: var(--espace-lg) var(--espace-xxl);
    font-size: 1.125rem;
}

/* ========================================
   7. HERO
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--blanc);
    max-width: 900px;
    padding: var(--espace-xl);
}

.hero-content h1 {
    color: var(--blanc);
    margin-bottom: var(--espace-lg);
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: var(--espace-xl);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: var(--espace-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero page intérieure */
.hero--small {
    min-height: 50vh;
    padding-top: var(--navbar-height);
}

.hero--small .hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
}

/* Hero vidéo */
.hero--video {
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* ========================================
   8. CARDS
   ======================================== */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--espace-xl);
}

.cards-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.cards-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.card {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--ombre-legere);
    transition: all var(--transition);
}

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

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-badge {
    position: absolute;
    top: var(--espace-md);
    right: var(--espace-md);
    background: var(--accent);
    color: var(--blanc);
    padding: var(--espace-xs) var(--espace-md);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
}

.card-body {
    padding: var(--espace-lg);
}

.card-body h3 {
    font-size: 1.25rem;
    margin-bottom: var(--espace-sm);
}

.card-body p {
    color: var(--gris-texte);
    font-size: 0.95rem;
    margin-bottom: var(--espace-md);
}

/* ========================================
   9. FEATURES / AVANTAGES
   ======================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--espace-xl);
}

.feature {
    text-align: center;
    padding: var(--espace-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--espace-lg);
    background: linear-gradient(135deg, var(--primaire-clair), var(--primaire));
    border-radius: var(--radius-rond);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--blanc);
}

.section--primaire .feature-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-clair));
    color: var(--primaire);
}

.feature h4 {
    margin-bottom: var(--espace-sm);
}

.feature p {
    color: var(--gris-texte);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.section--primaire .feature p {
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   10. TWO COLUMNS LAYOUT
   ======================================== */

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--espace-xxl);
    align-items: center;
}

.two-columns--reverse {
    direction: rtl;
}

.two-columns--reverse > * {
    direction: ltr;
}

.column-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--ombre-moyenne);
}

.column-content h2 {
    margin-bottom: var(--espace-lg);
}

.column-content p {
    color: var(--gris-texte);
    margin-bottom: var(--espace-lg);
}

/* ========================================
   11. ÉQUIPE / CREW
   ======================================== */

.crew-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--espace-xl);
}

.crew-card {
    text-align: center;
    background: var(--blanc);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--ombre-legere);
    transition: all var(--transition);
}

.crew-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ombre-moyenne);
}

.crew-image {
    height: 280px;
    overflow: hidden;
}

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

.crew-content {
    padding: var(--espace-lg);
}

.crew-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.crew-role {
    display: block;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: var(--espace-md);
}

.crew-content p {
    color: var(--gris-texte);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ========================================
   12. TÉMOIGNAGES
   ======================================== */

.testimonials {
    background: linear-gradient(135deg, var(--primaire) 0%, var(--primaire-clair) 100%);
    color: var(--blanc);
}

.testimonials .section-header h2 {
    color: var(--blanc);
}

.testimonials .section-header p {
    color: rgba(255,255,255,0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--espace-xl);
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--espace-xl);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--espace-md);
    left: var(--espace-lg);
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--accent);
    opacity: 0.5;
    line-height: 1;
}

.testimonial-rating {
    color: var(--accent);
    margin-bottom: var(--espace-md);
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: var(--espace-lg);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--espace-md);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-rond);
    object-fit: cover;
    border: 2px solid var(--accent);
}

.testimonial-info strong {
    display: block;
    color: var(--blanc);
}

.testimonial-info span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

/* ========================================
   13. FAQ
   ======================================== */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--blanc);
    border-radius: var(--radius-md);
    margin-bottom: var(--espace-md);
    box-shadow: var(--ombre-legere);
    overflow: hidden;
}

.faq-item summary {
    padding: var(--espace-lg);
    font-weight: 600;
    color: var(--primaire);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition);
}

.faq-item summary:hover {
    background: var(--gris-clair);
}

.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform var(--transition);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 var(--espace-lg) var(--espace-lg);
    color: var(--gris-texte);
    margin: 0;
}

/* FAQ en grille */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--espace-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.faq-grid .faq-item {
    padding: var(--espace-lg);
    border-left: 4px solid var(--accent);
}

.faq-grid .faq-question {
    font-family: var(--font-titre);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primaire);
    margin-bottom: 0.75rem;
}

.faq-grid .faq-answer {
    color: var(--gris-texte);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   14. FORMULAIRE
   ======================================== */

.form-group {
    margin-bottom: var(--espace-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--espace-sm);
    font-weight: 600;
    color: var(--primaire);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--espace-md);
    font-family: var(--font-corps);
    font-size: 1rem;
    border: 2px solid var(--gris);
    border-radius: var(--radius-md);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primaire-clair);
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--espace-lg);
}

/* ========================================
   15. CONTACT
   ======================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--espace-xxl);
}

.contact-info-card {
    background: var(--gris-clair);
    padding: var(--espace-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--espace-lg);
}

.contact-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--espace-md);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: var(--espace-md);
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--espace-sm);
}

.contact-icon {
    font-size: 1.25rem;
}

/* ========================================
   16. FOOTER
   ======================================== */

.footer {
    background-color: var(--primaire-fonce);
    color: var(--blanc);
    padding: var(--espace-section) 0 var(--espace-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--espace-xxl);
    margin-bottom: var(--espace-xxl);
}

.footer-logo {
    font-family: var(--font-titre);
    font-size: 1.75rem;
    color: var(--blanc);
    margin-bottom: var(--espace-md);
    display: inline-block;
}

.footer-logo span {
    color: var(--accent);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--espace-lg);
}

.footer-social {
    display: flex;
    gap: var(--espace-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-rond);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanc);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
}

.footer-title {
    font-weight: 600;
    color: var(--blanc);
    font-size: 1rem;
    margin-bottom: var(--espace-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    padding: var(--espace-xs) 0;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: var(--espace-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--espace-md);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* ========================================
   17. STATS / CHIFFRES CLÉS
   ======================================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--espace-xl);
    text-align: center;
}

.stat-item {
    padding: var(--espace-lg);
}

.stat-number {
    font-family: var(--font-titre);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primaire);
    line-height: 1;
}

.section--primaire .stat-number {
    color: var(--accent);
}

.stat-label {
    color: var(--gris-texte);
    margin-top: var(--espace-sm);
    font-size: 0.95rem;
}

.section--primaire .stat-label {
    color: rgba(255,255,255,0.8);
}

/* ========================================
   18. CTA SECTION
   ======================================== */

.section-cta {
    background: linear-gradient(135deg, var(--primaire) 0%, var(--primaire-clair) 100%);
    padding: var(--espace-section) 0;
    text-align: center;
    color: var(--blanc);
}

.section-cta h2 {
    color: var(--blanc);
    margin-bottom: var(--espace-md);
}

.section-cta p {
    font-size: 1.2rem;
    margin-bottom: var(--espace-xl);
    opacity: 0.9;
}

/* ========================================
   19. CTA FLOTTANT
   ======================================== */

.cta-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cta-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-rond);
    box-shadow: var(--ombre-moyenne);
    transition: transform var(--transition);
    font-size: 1.5rem;
    color: var(--blanc);
}

.cta-float a:hover {
    transform: scale(1.1);
}

.cta-float .cta-whatsapp {
    background: #25D366;
}

.cta-float .cta-phone {
    background: var(--primaire-clair);
}

/* ========================================
   20. UTILITAIRES
   ======================================== */

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--espace-sm); }
.mt-2 { margin-top: var(--espace-md); }
.mt-3 { margin-top: var(--espace-lg); }
.mt-4 { margin-top: var(--espace-xl); }
.mt-5 { margin-top: var(--espace-xxl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--espace-sm); }
.mb-2 { margin-bottom: var(--espace-md); }
.mb-3 { margin-bottom: var(--espace-lg); }
.mb-4 { margin-bottom: var(--espace-xl); }
.mb-5 { margin-bottom: var(--espace-xxl); }

.py-1 { padding-top: var(--espace-sm); padding-bottom: var(--espace-sm); }
.py-2 { padding-top: var(--espace-md); padding-bottom: var(--espace-md); }
.py-3 { padding-top: var(--espace-lg); padding-bottom: var(--espace-lg); }

.hidden { display: none; }

/* ========================================
   21. RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .cards-grid--3,
    .cards-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid,
    .crew-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .two-columns {
        grid-template-columns: 1fr;
        gap: var(--espace-xl);
    }
    
    .two-columns--reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    section {
        padding: var(--espace-xxl) 0;
    }
    
    /* Navbar mobile */
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--primaire);
        flex-direction: column;
        padding: 80px var(--espace-xl) var(--espace-xl);
        gap: var(--espace-md);
        transition: right var(--transition);
        box-shadow: var(--ombre-forte);
    }
    
    .navbar-menu.active {
        right: 0;
    }
    
    .navbar-menu a {
        color: var(--blanc);
        font-size: 1.125rem;
        padding: var(--espace-md) 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-shadow: none;
    }
    
    .navbar.scrolled .navbar-menu a {
        color: var(--blanc);
    }
    
    .navbar-burger {
        display: flex;
    }
    
    .navbar-burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .navbar-burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .navbar-burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Dropdown mobile */
    .dropdown {
        display: none !important;
    }
    
    /* Hero mobile */
    .hero {
        background-attachment: scroll;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Grids mobile */
    .cards-grid,
    .cards-grid--3,
    .cards-grid--4,
    .features-grid,
    .crew-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* Form mobile */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* CTA float mobile */
    .cta-float {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--espace-md);
    }
    
    .btn {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--espace-md);
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

/* ========================================
   22. ANIMATIONS
   ======================================== */

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

.animate-fadeIn {
    animation: fadeIn 0.6s ease forwards;
}

/* ========================================
   23. GOOGLE FONTS IMPORT
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');
