/* --- 1. VARIABLES & RESET --- */
:root {
    /* Palette de couleurs */
    --col-dark-blue: #0f172a;
    --col-primary-blue: #0B3C5D;
    --col-light-bg: #F8FAFC;
    --col-white: #FFFFFF;
    --col-yellow: #FACC15;
    --col-yellow-hover: #EAB308;
    
    --col-text-main: #334155;
    --col-text-muted: #64748B;
    --col-border: #E2E8F0;
    
    /* Variables de structure */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --header-height: 80px;
    --section-gap: 100px;
    --container-width: 1200px;
    
    /* Ombres */
    --shadow-sm: 0 1px 2px rgba(11, 60, 93, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(11, 60, 93, 0.1), 0 2px 4px -1px rgba(11, 60, 93, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(11, 60, 93, 0.1), 0 4px 6px -2px rgba(11, 60, 93, 0.05);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--col-light-bg);
    color: var(--col-text-main);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo-text, .btn {
    font-family: 'Poppins', sans-serif;
    color: var(--col-primary-blue);
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Utilitaires */
.text-center { text-align: center; }
.text-white { color: white !important; }
.text-white-50 { color: rgba(255,255,255,0.7) !important; }
.text-yellow { color: var(--col-yellow); }
.text-blue { color: var(--col-primary-blue); }
.text-gray-200 { color: #E2E8F0; }

.m-0 { margin: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2.5rem; }

.section-padding { padding: var(--section-gap) 0; }
.bg-white { background-color: var(--col-white); }
.bg-dark { background-color: var(--col-dark-blue); color: white; }

a { text-decoration: none; transition: all 0.2s ease; }

/* --- 2. HEADER --- */
.header-main {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    height: var(--header-height);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid var(--col-border);
    display: flex; align-items: center;
}
.header-inner { width: 100%; display: flex; justify-content: space-between; align-items: center; }

.logo-container { display: flex; align-items: center; gap: 12px; }
.logo-img, .footer-logo { height: 32px; width: auto; }
.logo-text { font-size: 1.2rem; letter-spacing: 0.5px; color: var(--col-dark-blue); }

.main-nav { display: flex; gap: 32px; align-items: center; }
.nav-link { color: var(--col-text-main); font-weight: 500; font-size: 0.95rem; position: relative; }
.nav-link:hover { color: var(--col-primary-blue); }
.nav-link::after {
    content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 0;
    background-color: var(--col-yellow); transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }

.header-actions { display: flex; gap: 20px; align-items: center; }
.lang-switcher { font-weight: 600; font-size: 0.9rem; border-right: 1px solid var(--col-border); padding-right: 20px; }
.lang-btn { border: none; background: none; cursor: pointer; color: #94A3B8; padding: 0 4px; transition: color 0.2s; font-family: 'Inter', sans-serif;}
.lang-btn:hover, .lang-btn.active { color: var(--col-primary-blue); font-weight: 700; }
.divider { color: var(--col-border); }

/* Actions Mobile (Cachées par défaut) */
.mobile-only-actions { display: none; }

/* --- 3. BOUTON BURGER (Base Styles) --- */
/* C'EST ICI QU'ON LE DÉFINIT (AVANT LE RESPONSIVE) */
.mobile-toggle {
    display: none; /* Caché par défaut sur PC */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002; 
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--col-primary-blue);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
    transform-origin: left center;
}

/* Animation Burger */
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg); top: 0px; left: 4px; }
.mobile-toggle.open span:nth-child(2) { width: 0%; opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg); top: 20px; left: 4px; }


/* --- 4. HERO SECTION --- */
.hero-section {
    padding: 100px 0 80px;
    text-align: center;
    background: radial-gradient(circle at top right, #F1F5F9 0%, transparent 40%);
}
.hero-content { max-width: 800px; margin: 0 auto; }
.hero-badge {
    background: white; color: var(--col-primary-blue);
    padding: 8px 16px; border-radius: 50px; font-size: 0.9rem; font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px;
    box-shadow: var(--shadow-sm); border: 1px solid var(--col-border);
}
.hero-section h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 20px; letter-spacing: -1px; }
.hero-slogan { font-size: clamp(1.1rem, 2vw, 1.25rem); color: var(--col-text-muted); margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }


/* --- 5. COMPOSANTS UI --- */
.btn { 
    padding: 12px 28px; border-radius: var(--radius-sm); 
    font-weight: 600; display: inline-block; font-size: 1rem; cursor: pointer; border: none;
}
.btn-sm { padding: 8px 20px; font-size: 0.9rem; }

.btn-primary, .btn-yellow { 
    background: var(--col-yellow); color: var(--col-primary-blue); 
    box-shadow: 0 4px 6px -1px rgba(245, 197, 24, 0.3);
}
.btn-primary:hover, .btn-yellow:hover { background: var(--col-yellow-hover); transform: translateY(-2px); }

.btn-accent { 
    background: var(--col-primary-blue); color: white; 
    box-shadow: 0 4px 6px -1px rgba(11, 60, 93, 0.3);
}
.btn-accent:hover { background: #082d46; transform: translateY(-2px); }

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

.w-100 { width: 100%; }


/* --- 6. SERVICES --- */
.section-header { margin-bottom: 60px; max-width: 600px; margin-left: auto; margin-right: auto; }
.section-title { font-size: 2.5rem; margin-bottom: 12px; }
.section-subtitle { color: var(--col-text-muted); font-size: 1.1rem; }

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

.service-card {
    background: white; padding: 32px;
    border-radius: var(--radius-md); border: 1px solid var(--col-border);
    display: flex; flex-direction: column; justify-content: space-between;
    height: 100%; transition: all 0.3s ease;
}
.hover-lift:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-top { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.card-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: #F8FAFC; border-radius: 12px; font-size: 1.6rem; }
.service-card h3 { font-size: 1.35rem; margin: 0; }
.service-card p { font-size: 1rem; color: var(--col-text-muted); flex-grow: 1; margin-bottom: 24px; }
.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.link-arrow { font-weight: 600; color: var(--col-primary-blue); font-size: 0.95rem; }
.arrow-icon { font-weight: bold; transition: transform 0.3s; }
.service-card:hover .arrow-icon { transform: translateX(5px); }

.highlight-card { border-top: 4px solid var(--col-primary-blue); }


/* --- 7. DETAILS SECTIONS --- */
.grid-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.align-center { align-items: center; }
.section-label { text-transform: uppercase; font-size: 0.85rem; font-weight: 700; color: var(--col-yellow-hover); display: block; margin-bottom: 12px; letter-spacing: 1.5px; }

.check-list { list-style: none; margin: 20px 0; }
.check-list li { margin-bottom: 14px; padding-left: 30px; position: relative; font-size: 1.05rem; }
.check-list li::before { 
    content: '✓'; position: absolute; left: 0; top: 0px;
    color: var(--col-white); background: var(--col-yellow); 
    width: 20px; height: 20px; border-radius: 50%; font-size: 12px;
    display: flex; align-items: center; justify-content: center;
}

.pricing-card { 
    background: white; border-radius: var(--radius-lg); 
    border: 1px solid var(--col-border); overflow: hidden;
    position: sticky; top: 100px;
}
.pricing-header { padding: 32px; background: #F8FAFC; border-bottom: 1px solid var(--col-border); }
.price-tag { display: flex; align-items: baseline; gap: 8px; margin: 15px 0 5px; }
.price-tag .amount { font-size: 3rem; font-weight: 700; color: var(--col-primary-blue); line-height: 1; }
.price-tag .period { color: var(--col-text-muted); font-weight: 500; }
.small-text { font-size: 0.9rem; color: var(--col-text-muted); }
.travel-fees { padding: 32px; }
.fees-list { list-style: none; }
.fees-list li { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; font-size: 0.95rem; border-bottom: 1px dashed var(--col-border); padding-bottom: 8px; }
.fees-list li:last-child { border: none; padding: 0; }
.fee-badge { background: #F1F5F9; padding: 4px 10px; border-radius: 6px; font-weight: 600; font-size: 0.8rem; }
.fee-badge.free { background: #DCFCE7; color: #15803d; }

.grid-3-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-box { text-align: center; padding: 32px; border-radius: var(--radius-md); border: 1px solid var(--col-border); background: white; transition: 0.3s; }
.feature-box:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.icon-circle-lg { width: 64px; height: 64px; background: var(--col-light-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 20px; }
.cta-banner { background: var(--col-primary-blue); border-radius: var(--radius-md); padding: 30px 50px; display: flex; justify-content: space-between; align-items: center; box-shadow: var(--shadow-lg); }

.bg-glass { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.1); padding: 40px; border-radius: var(--radius-lg); }
.white-check li::before { background: rgba(255,255,255,0.2); color: var(--col-yellow); }
.tech-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.tech-tags span { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); padding: 8px 16px; border-radius: 50px; font-size: 0.9rem; font-weight: 500; }

.img-block { background: var(--col-light-bg); height: 400px; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 5rem; border: 1px solid var(--col-border); }
.gradient-bg { background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%); }

.gmb-placeholder { display: inline-block; background: white; padding: 30px 50px; border-radius: var(--radius-md); border: 1px solid var(--col-border); max-width: 500px; width: 100%; }
.google-logo { font-family: 'Product Sans', sans-serif; font-weight: bold; font-size: 1.5rem; margin-bottom: 5px; }
.stars { color: var(--col-yellow); font-size: 1.8rem; letter-spacing: 2px; line-height: 1; margin-bottom: 10px; }


/* --- 8. CONTACT --- */
.contact-wrapper { 
    display: flex; 
    /* IMPORTANT : Force les deux colonnes à avoir la même hauteur */
    align-items: stretch; 
    /* IMPORTANT : Annule l'espacement de .grid-split pour que les parties se touchent */
    gap: 0; 
    
    border-radius: var(--radius-lg); 
    overflow: hidden; 
    box-shadow: var(--shadow-lg); 
    border: 1px solid var(--col-border); 
}

.contact-info { 
    flex: 1; 
    background: var(--col-primary-blue); 
    color: white; 
    padding: 50px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}
.contact-form { flex: 1.5; background: white; padding: 50px; }
.info-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.9rem; color: var(--col-text-main); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--col-border); border-radius: var(--radius-sm); font-family: inherit; font-size: 1rem; background: #F8FAFC; color: var(--col-text-main); transition: all 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; background: white; border-color: var(--col-primary-blue); box-shadow: 0 0 0 3px rgba(11, 60, 93, 0.1); }


/* --- 9. FOOTER --- */
.footer-main { background: var(--col-dark-blue); color: #94A3B8; padding: 60px 0 30px; font-size: 0.95rem; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; margin-left: auto; margin-right: auto; max-width: fit-content; }
.footer-logo { filter: brightness(0) invert(1); }
.footer-nav { display: flex; gap: 30px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { color: #E2E8F0; transition: color 0.2s; }
.footer-nav a:hover { color: var(--col-yellow); }
.copyright { font-size: 0.85rem; opacity: 0.6; margin-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; width: 100%; text-align: center; }


/* --- 10. RESPONSIVE (Toujours à la fin) --- */
@media (max-width: 992px) {
    .container { padding: 0 20px; }
    
    /* On cache les boutons actions du header en mode desktop */
    .header-actions.desktop-actions { display: none; }

    /* On FORCE l'affichage du bouton Burger */
    .mobile-toggle { 
        display: flex; 
        z-index: 1001; 
    }
    
    /* --- MENU MOBILE --- */
    .main-nav { 
        position: fixed; 
        top: var(--header-height);
        left: 0; right: 0; bottom: 0;
        
        background-color: var(--col-white); /* FOND BLANC OPAQUE */
        
        display: flex;
        flex-direction: column; 
        padding: 40px 24px; 
        gap: 25px;
        
        transform: translateX(100%); 
        transition: transform 0.3s ease-in-out;
        border-top: 1px solid var(--col-border);
        z-index: 999; 
        overflow-y: auto;
    }

    .main-nav.active { 
        transform: translateX(0); 
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    
    /* Actions Mobiles */
    .mobile-only-actions { 
        display: flex; 
        flex-direction: column; 
        width: 100%; 
        gap: 20px; 
        margin-top: 20px; 
        border-top: 1px solid var(--col-border); 
        padding-top: 30px; 
        align-items: center; 
    }
    
    .lang-switcher { border: none; padding: 0; }
    
    /* Ajustements généraux */
    .grid-split, .services-grid, .grid-3-cols, .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .hero-section h1 { font-size: 2.5rem; }
    .cta-banner { flex-direction: column; gap: 20px; text-align: center; padding: 30px; }
    .pricing-card { position: static; }
    .contact-wrapper { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
}