body, html {
    margin: 0;
    padding: 0;
}
/* RESET */
* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* BODY */
body {
    font-family: 'Inter', sans-serif;
    background:white;
    color:#111;
}

/* NAVBAR */
nav {
    display:flex;
    justify-content:space-between;
    padding:20px 5%; /* 🔥 réduit → logo plus à gauche */
    background:#0a2540;
    color:white;
}

/* LOGO CLEAN */
.logo img {
    height:100px;
    object-fit:contain;
    background:transparent;
    padding:0;
    transition: transform 0.3s ease;
}

/* ZOOM HOVER SIMPLE */
.logo img:hover {
    transform:scale(1.1);

}

/* MENU */
.nav-right {
    display:flex;
    align-items:center;
    gap:20px;
}

nav a {
    text-decoration:none;
    color:white;
    font-weight:500;
}

/* LANG BUTTON */
.lang-btn {
    padding:5px 10px;
    border:1px solid white;
    background:transparent;
    color:white;
    cursor:pointer;
    font-size:12px;
    border-radius:4px;
    transition:0.3s;
}

.lang-btn:hover {
    background:white;
    color:#0a2540;
}

/* HERO FULL WIDTH + ANIMATION */
.hero {
    width:100%;
    padding:140px 10%;
    color:white;

    background: linear-gradient(-45deg, #1f7aec, #4facfe, #00c6ff, #1f7aec);
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
}

/* ANIMATION */
@keyframes gradientMove {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

/* HERO CONTENT */
.hero-content {
    text-align: center; /* centre tout le contenu */
}

.hero-content .btn {
    display: inline-block;
    margin-top: 70px;
    padding: 15px 30px;
    font-size: 16px;

}

.hero h1 {
    font-size:3em;
    margin-bottom:20px;
}

.hero p {
    max-width:600px;
    color:#eaeaea;
}

/* BUTTON */
.btn {
    margin-top:30px;
    padding:12px 25px;
    background:#00c896;
    color:white;
    border:none;
    cursor:pointer;
}

/* SECTIONS */
.section {
    padding:80px 10%;
    max-width:1200px;
    margin:auto;
}

/* GRID */
.grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:40px;
}

.card {
    border-left:4px solid #0a2540;
    padding-left:20px;
}

/* DARK SECTION */
.dark {
    background:#0a2540;
    color:white;
}

/* BOOKING */
iframe {
    width:100%;
    height:500px;
    border:none;
    margin-top:20px;
}

/* FOOTER */
footer {
    padding:40px;
    background:#111;
    color:white;
    text-align:center;
}
/* SERVICES CARDS PREMIUM */
.cards {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:40px;
}

.card {
    background:#f9fafc;
    padding:25px;
    border-radius:10px;
    transition:0.3s;
    border:1px solid #eee;
}

.card h3 {
    margin-bottom:10px;
}

.card p {
    color:#555;
}

.card:hover {
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}
/* PRICING */
.pricing {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:50px;
}

.price-card {
    background:white;
    padding:30px;
    border-radius:12px;
    border:1px solid #eee;
    text-align:center;
    transition:0.3s;
}

.price-card:hover {
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.price {
    font-size:2em;
    margin:20px 0;
    color:#0a2540;
}

.price-card ul {
    list-style:none;
    margin:20px 0;
    padding:0;
}

.price-card li {
    margin:10px 0;
    color:#555;
}

/* HIGHLIGHT (OFFRE RECOMMANDÉE) */
.highlight {
    border:2px solid #00c896;
    transform:scale(1.05);
}
/* TESTIMONIALS */
.testimonials {
    background:#f9fafc;
    text-align:center;
}

.testimonial-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:40px;
}

.testimonial-card {
    background:white;
    padding:25px;
    border-radius:10px;
    border:1px solid #eee;
    font-style:italic;
    transition:0.3s;
}

.testimonial-card h4 {
    margin-top:15px;
    font-style:normal;
    color:#0a2540;
}

.testimonial-card:hover {
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* WHY US PREMIUM */
.why-us {
    background:#f5f7fb;
    padding:100px 5%;
}

.why-container {
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.why-container h2 {
    font-size:2.2em;
    margin-bottom:10px;
}

.why-subtitle {
    color:#666;
    margin-bottom:50px;
}

/* GRID */
.why-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

/* CARD */
.why-card {
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    transition:0.3s;
}

.why-card:hover {
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

/* ICON */
.icon {
    font-size:30px;
    margin-bottom:15px;
}

/* TEXT */
.why-card h3 {
    margin-bottom:10px;
    color:#0a2540;
}

.why-card p {
    color:#555;
    font-size:14px;
}

@media(max-width:768px) {
    .why-container h2 {
        font-size:1.6em;
    }

    .why-card {
        padding:20px;
    }
}
/* ABOUT LAYOUT */
.about-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* TEXTE GAUCHE */
.about-text {
    flex: 1;
    min-width: 300px;
}

/* VALEURS DROITE */
.about-values {
    position: relative;
    z-index: 3;
}

/* STYLE DES BLOCS VALEURS */
.value {
    background: rgba(255, 255, 255, 0.12); /* un peu plus visible */
    backdrop-filter: blur(12px);

    padding: 20px;
    border-radius: 12px;

    border: 1px solid rgba(255,255,255,0.2);

    transition: all 0.3s ease;
}

/* HOVER */
.value:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.18);
}

/* HOVER PREMIUM */
.value:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.value:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.value h3 {
    margin-bottom:8px;
    color:#0a2540;
}
@media (max-width: 768px) {

    .about-container {
        flex-direction: column;
    }

    .about-values {
        margin-top: 30px;
    }

}
.about {
    position: relative;
    z-index: 2;
}
/* FOUNDER */
.founder {
    background:#ffffff;
}

.founder-container {
    display:grid;
    grid-template-columns: auto 1fr; /* 🔥 plus compact */
    gap:20px; /* 🔥 réduit l’espace */
    align-items:center;
    max-width:800px; /* 🔥 centre et compacte */
    margin:auto;

}

.founder-photo {
    width:180px;
    height:180px;
    object-fit:cover;
    object-position:center 20%;
    border-radius:50%; /* 🔥 rend la photo ronde */
    border:4px solid white;
    box-shadow:0 8px 25px rgba(0,0,0,0.15);
    transition:0.3s;
}

/* effet hover pro */
.founder-photo:hover {
    transform:scale(1.05);

}

.founder-text h2 {
    margin-bottom:10px;
}

.founder-text h3 {
    margin-bottom:15px;
    color:#0a2540;
}

.founder-text p {
    margin-bottom:15px;
    color:#555;
}
.founder-text {
    padding-left:10px;
}
}

/* MOBILE */
@media(max-width:768px) {
    .founder-container {
        grid-template-columns:1fr;
        text-align:center;
    }
}
/* LINKEDIN BUTTON */
.linkedin-btn {
    display:inline-block;
    margin-top:20px;
    padding:12px 20px;
    background:#0077b5;
    color:white;
    text-decoration:none;
    border-radius:6px;
    font-weight:500;
    transition:0.3s;
}

.linkedin-btn:hover {
    background:#005582;
    transform:translateY(-2px);
}
/* LOGO + NOM */
.logo {
    display:flex;
    align-items:center;
    gap:12px;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;

    background: linear-gradient(90deg, #ffffff, #1f7aec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-transform: uppercase;

    margin-left: 10px;
}

/* NAV RIGHT */
.nav-right {
    display:flex;
    align-items:center;
    gap:20px;
}

/* MOBILE FIX */
@media(max-width:768px) {
    .brand-name {
        font-size:14px;
    }
}
.brand-name {
    font-size:18px;
    font-weight:600;
    color:white;
    letter-spacing:0.5px;
}
footer p {
    margin:5px 0;
    font-size:14px;
}
/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:white;
    font-size:24px;
    padding:15px;
    border-radius:50%;
    text-decoration:none;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
    transition:0.3s;
}

.whatsapp-float:hover {
    transform:scale(1.1);
}
.lang-btn.active {
    background:white;
    color:#0a2540;
    font-weight:bold;
}
.slogan {
    margin-top: 80px; /* 🔥 pousse vers le bas */

}

.slogan-icon {
    margin-right:10px;
    font-size:26px;
}
.slogan {
    animation:fadeIn 1.5s ease;
}

@keyframes fadeIn {
    from {opacity:0; transform:translateY(10px);}
    to {opacity:1; transform:translateY(0);}
}
.price-card.premium {
    border:2px solid #1f7aec;
    transform:scale(1.05);
}
.badge {
    background:#1f7aec;
    color:white;
    padding:5px 10px;
    font-size:12px;
    border-radius:20px;
    display:inline-block;
    margin-bottom:10px;
}
.section:not(#mission) {
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}
.section:nth-child(even) {
    background: #ffffff;
}

.section:nth-child(odd) {
    background: #f4f8fc;
}
#mission {
    background: #0a2540; /* 🔥 ton bleu foncé original */
    color: white;
}

strong.brand {
    font-weight: 700;
    letter-spacing: 0.5px;
}
.hero {
    position: relative;
    background: linear-gradient(135deg, #0a2540, #1f7aec);
    overflow: hidden;
}

/* PARTICLES BACKGROUND */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* CONTENU AU-DESSUS */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}