* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
    list-style: none;
}

body {
    background: #f3f8f8;
    color: #333;
}

span {
    color: #8DC63F;
}


/* Logo dans navbar */
.navbar .logo {
    height: 80px !important;
    margin-right: 10px;
}


/* Couleur principale du site */
.navbar.bg-primary {
    background-color: #ffffff !important;
}

/* Dropdown hover couleur */
.navbar-nav .dropdown-menu-dark {
    background-color: #0B3D91;
}

.navbar-nav .dropdown-item:hover {
    background-color: #8DC63F;
    color: #0B3D91;
}

#offcanvasNavbar{
    display: none;
}


/* Bouton contact */
.navbar .btn-success {
    background-color: #8DC63F;
    border: none;
}

.navbar .btn-success:hover {
    background-color: #73B32F;
}



/* Navbar links default color */
.navbar-nav .nav-link {
    color: #020202; /* white text by default */
    transition: color 0.3s;
}

/* Navbar links hover color */
.navbar-nav .nav-link:hover {
    color: #8DC63F; /* green highlight on hover */
}

/* Active link color */
.navbar-nav .nav-link.active {
    color: #8DC63F; /* green for the active section */
}

/* Dropdown items */
.navbar-nav .dropdown-menu-dark .dropdown-item {
    color: #000000; /* default dropdown text */
}

.navbar-nav .dropdown-menu-dark .dropdown-item:hover {
    color: #0B3D91; /* dark blue text on hover */
    background-color: #8DC63F; /* green background hover */
}


/* Centrer les liens desktop */
.navbar-nav.mx-auto {
    text-align: center;
}

.navbar-nav.mx-auto .nav-item {
    margin: 0 10px;
}

.d-none .btn-success{
    /* margin-bottom: 10px; */
    margin-top: 5px;
}
/* Changement hover pour dropdown */
.dropdown-menu-dark .dropdown-item:hover {
    background-color: #8DC63F;
    color: #0B3D91;
}

/* Logo */
.navbar-brand .logo {
    height: 50px;
    width: auto;
}



.text-bg-primary{
    background-color: white !important;
    color: blue !important;
}

.navbar-toggler-icon i {
    font-size: 30px;
}



/* SERVICES */
/* ================= SERVICES ================= */
.section.light {
    /* background: #f5f8fc; */
    padding: 50;
}

.section.light h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

/* CARD */
.service-card {
    background: #ffffff;
    padding: 32px 26px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Accent barre */
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg,
            #0B3D91,
            #8DC63F);
}

/* Hover */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.14);
}

/* TITRE */
.service-card h3 {
    color: #0B3D91;
    font-size: 1.25rem;
    margin-bottom: 14px;
    padding-left: 14px;
}

/* TEXTE */
.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    padding-left: 14px;
}

/* ================= ANIMATION SCROLL ================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    #offcanvasNavbar{
    display: block;
}

}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section.light {
        padding: 70px 0;
    }
}


/* LIST */
.check-list {
    margin-top: 20px;
    line-height: 2;
}

/* BUTTON */
.btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background: #0B3D91;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.btn:hover {
    background: #8DC63F;
}

/* ANIMATION */
.fade-in {
    opacity: 0;
    animation: fade 1s forwards;
}

.delay {
    animation-delay: 0.5s;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fade {
    to {
        opacity: 1;
    }
}

/* FOOTER */
footer {
    background: #222;
    color: #ccc;
    text-align: center;
    padding: 30px;
}

/* HERO */
.hero-content {
    max-width: 1300px;
    margin: 100px auto 0 !important;
    padding: 0 20px;
    padding-top: 100px;
}

/* Layout */
.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* TEXTE */
.hero-text {
    max-width: 650px;
}

/* TITRE */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #0B3D91;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 1s ease forwards;
}

.hero-title span {
    color: #8DC63F;
}

/* SOUS-TITRE */
.hero-subtitle {
    margin-top: 25px;
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards;
    animation-delay: 0.4s;
}

/* ACTIONS */
.hero-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.8s;
}

/* ANIMATION GIF */
.hero-animation {
    width: 530px;
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
    animation-delay: 0.6s;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-flex {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-animation {
        width: 160px;
        margin-bottom: 30px;
        display: none;
    }
}



/* BOUTONS */
.btn {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn.primary {
    background: #0B3D91;
    color: #fff;
    box-shadow: 0 10px 30px rgba(11, 61, 145, 0.25);
}

.btn.secondary {
    background: #8DC63F;
    color: #fff;
    box-shadow: 0 10px 30px rgba(11, 61, 145, 0.25);
}


.btn.primary:hover {
    background: #8DC63F;
    transform: translateY(-3px);
}

.btn.secondary {
    border: 2px solid #6fac1a;
    /* color: #0B3D91; */
}

.btn.secondary:hover {
    background: #0B3D91;
    color: #fff;
    border: 2px solid #0B3D91;
    transform: translateY(-3px);
}


/* ================= SECTIONS GENERALES ================= */
.section {
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 24px;
}

.section h2,
.section h3 {
    color: #0B3D91;
    margin-bottom: 24px;
    font-weight: 700;
}

.section h2 {
    font-size: 2.2rem;
}

.section h3 {
    font-size: 1.6rem;
}

/* Paragraphes */
.section p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ================= METHODE ================= */
.method {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0;
}

.method li {
    background: #ffffff;
    padding: 26px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method li:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.method strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #0B3D91;
}

/* ================= VALEURS ================= */
.values {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 0;
}

.values li {
    background: linear-gradient(145deg, #ffffff, #f1f4f8);
    padding: 24px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.values li:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.values strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #0B3D91;
}

.values p {
    font-size: 0.95rem;
    color: #555;
}

/* ================= ANIMATION SCROLL ================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .method {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 500px) {
    .values {
        grid-template-columns: 1fr;
    }

    .section {
        margin: 60px auto;
    }
}



/* ANIMATIONS */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}


.pricing-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}


.pricing-card.popular {
    border: 2px solid #8DC63F;
    transform: scale(1.04);
}

.pricing-card.popular::before {
    content: "Le plus choisi";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #8DC63F;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}


.price {
    font-size: 2.6rem;
    font-weight: 700;
    color: #0B3D91;
    margin: 30px 0 15px;
}

.price span {
    display: block;
    margin-top: 6px;
    font-size: 0.5em;
    color: #777;
}



.pricing-card ul {
    list-style: none;
    margin: 40px 0;
    padding: 0;
}

.pricing-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1rem;
    color: #333;
    margin-bottom: 18px;
    line-height: 1.6;
}


.pricing-card ul li i {
    color: #8DC63F;
    margin-top: 4px;
    font-size: 0.9rem;
}

.pricing-note {
    font-size: 0.95rem;
    color: #555;
    background: #f7faf5;
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 35px;
    line-height: 1.6;
}


.pricing-card .btn {
    display: inline-block;
    width: 100%;
    padding: 14px 0;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.pricing-card .btn:hover {
    opacity: 0.9;
}


.pricing-disclaimer {
    margin-top: 40px;
    font-size: 0.85rem;
    color: #777;
    text-align: center;
}




/* ================= POURQUOI NOUS ================= */
.why-us {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0;
    margin-top: 40px;
}

.why-us li {
    background: #ffffff;
    padding: 26px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.why-us strong {
    color: #0B3D91;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 800px) {
    .why-us {
        grid-template-columns: 1fr;
    }
}





/* ================= CONTACT AVEC ICÔNES ================= */
.contact {
    text-align: center;
}

.contact-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.contact-item {
    background: #ffffff;
    padding: 28px 24px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 12px;
}

.contact-item strong {
    display: block;
    margin-bottom: 8px;
    color: #0B3D91;
    font-size: 1.05rem;
}

.contact-item a {
    color: #0B3D91;
    font-weight: 600;
    text-decoration: none;
}

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

/* Responsive */
@media (max-width: 700px) {
    .contact-box {
        grid-template-columns: 1fr;
    }
}

/* ================= PRICING ICONS ================= */
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.pricing-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: #444;
    font-size: 0.95rem;
}

.pricing-card li i {
    color: #0B3D91;
    font-size: 1rem;
}


/* ================= SERVICES ================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-icon {
    font-size: 2.2rem;
    color: #0B3D91;
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
}



/* ================= A PROPOS ================= */
.about {
    margin-top: 120px;
}

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

/* TEXTE */
.about-content h2 {
    margin-bottom: 25px;
}

.about-intro {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.8;
}

/* CARTE */
.about-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* BARRE ACCENT */
.about-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg,
            #0B3D91,
            #8DC63F);
    border-radius: 16px 0 0 16px;
}

.about-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 1rem;
    color: #444;
    font-weight: 500;
}

.about-card li span {
    color: #8DC63F;
    font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-card {
        max-width: 500px;
        margin: 0 auto;
    }
}