:root {

    /* =========================
       COULEURS PRINCIPALES
    ========================= */

    --primary: #16A34A;
    --primary-hover: #15803D;
    --primary-soft: #DCFCE7;
    --primary-light: #F0FDF4;

    /* Accent dynamique */

    --accent: #F59E0B;
    --accent-soft: #FEF3C7;

    /* Texte */

    --dark: #0F172A;
    --dark-soft: #1E293B;

    --gray: #64748B;
    --gray-light: #94A3B8;

    /* Backgrounds */

    --light-bg: #F8FAFC;
    --section-bg: #F0FDF4;

    /* Borders */

    --border-color: #DCEFE2;

    /* Shadows */

    --shadow-sm: 0 4px 12px rgba(22, 163, 74, .05);
    --shadow-md: 0 10px 30px rgba(22, 163, 74, .08);
    --shadow-lg: 0 20px 50px rgba(22, 163, 74, .12);

    /* Gradient Hero */

    --hero-overlay:
        linear-gradient(rgba(6, 18, 12, .78),
            rgba(6, 18, 12, .82));

}


* {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background-color: #ffffff;
    color: var(--dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
.navbar-brand,
.nav-link,
.btn-main,
.section-badge {
    font-family: 'Archivo Narrow', sans-serif;
    letter-spacing: 0.3px;
}

/* =========================
           NAVBAR
        ========================= */
.navbar {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
}

.navbar-brand span {
    color: var(--primary);
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark) !important;
    text-transform: uppercase;
    margin: 0 10px;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.btn-main {
    box-shadow: 0 6px 18px rgba(22, 163, 74, .18);
}

/* =========================
           BOUTONS
        ========================= */
.btn-main {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-main:hover {
    background: var(--primary-hover);
    color: white;
}

.btn-outline-custom {
    border: 1px solid var(--border-color);
    background: white;
    color: var(--dark);
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* =========================
           HERO BANNER (FULLWIDTH)
        ========================= */
.hero {
    min-height: 580px;
    display: flex;
    align-items: center;
    background: var(--hero-overlay),
        url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    width: 100%;
}

.hero-content {
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.82rem;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 700;
    color: white;
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* =========================
           MOTEUR DE RECHERCHE INTEGRÉ
        ========================= */
.search-wrapper {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.search-box {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.form-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #5B6B81;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-control,
.form-select {
    min-height: 50px;
    border-radius: 6px;
    border: 1px solid #D7E0EA;
    padding: 10px 14px;
    font-size: 0.95rem;
    color: var(--dark);
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: var(--primary);
}

/*
        .availability-row {
            background: #F8FAFC;
            border: 1px solid #E2E8F0;
            border-radius: 6px;
            padding: 8px;
        }
*/
.search-btn {
    min-height: 50px;
    width: 100%;
}

/* =========================
           SECTIONS DE CONTENU
        ========================= */
section {
    padding: 90px 0;
}

.section-badge {
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.15;
}

.section-description {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
}

/* Cartes des Fonctionnalités / Piliers */
.feature-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 32px;
    height: 100%;
    background: white;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(29, 78, 216, 0.2);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 6px;
    background: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    color: var(--primary);
    font-size: 1.4rem;
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

/* =========================
           TEMOIGNAGES
        ========================= */
.testimonials-section {
    background: var(--section-bg);
}

.testimonial-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #F59E0B;
    font-size: 0.85rem;
}

.testimonial-card p {
    color: #475569;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 6px;
    background: var(--primary-soft);
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
}

.testimonial-role {
    color: var(--gray);
    font-size: 0.82rem;
}

/* =========================
   FOOTER (AUTO ROOT SYSTEM)
========================= */

footer {

    background: var(--dark);
    color: white;

    padding: 80px 0 30px 0;

    position: relative;

}

/* Léger effet premium dynamique */

footer::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, .12),
            transparent);

}

.footer-brand {

    font-size: 1.9rem;
    font-weight: 700;

    margin-bottom: 16px;

    color: white;

}

.footer-brand span {

    color: var(--primary);

}

.footer-text {

    color: rgba(255, 255, 255, .62);

    line-height: 1.7;

    font-size: 0.92rem;

}

.footer-title {

    font-size: 0.9rem;

    font-weight: 700;

    text-transform: uppercase;

    margin-bottom: 20px;

    color: white;

}

.footer-links a {

    display: block;

    color: rgba(255, 255, 255, .68);

    text-decoration: none;

    margin-bottom: 12px;

    font-size: 0.92rem;

    transition: all .25s ease;

}

.footer-links a:hover {

    color: var(--primary);

    transform: translateX(3px);

}

.footer-contact {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 16px;

    color: rgba(255, 255, 255, .72);

    font-size: 0.92rem;

    line-height: 1.6;

}

.footer-contact i {

    color: var(--primary);

    margin-top: 2px;

    font-size: .95rem;

}

.footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, .08);

    margin-top: 60px;

    padding-top: 24px;

    text-align: center;

    color: rgba(255, 255, 255, .45);

    font-size: 0.85rem;

}

/* Hover social / accent dynamique */

.footer-contact:hover i,
.footer-contact:hover {

    color: white;

    transition: .25s ease;

}

/* Responsive */

@media(max-width:991px) {

    footer {

        padding-top: 60px;

    }

    .footer-title {

        margin-top: 20px;

    }

}


@media(max-width: 991px) {
    .hero {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .search-wrapper {
        margin-top: 30px;
    }

    .section-title {
        font-size: 2.1rem;
    }

    section {
        padding: 60px 0;
    }
}


