/* ============================================
   DJIDJA CONSEIL & STRATÉGIE — Main CSS
   Polices: Righteous (titres) Google Sans (contenu)
   ============================================ */

/* --- RESET & VARIABLES --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue:        #1E2D8F;
    --blue-dark:   #16216e;
    --blue-light:  #2d3faf;
    --gold:        #E5B800;
    --gold-light:  #f5cd30;
    --gold-pale:   #fef9e0;
    --white:       #ffffff;
    --bg:          #F8F8FC;
    --bg-alt:      #F0F2FA;
    --text:        #111827;
    --text-muted:  #6b7280;
    --text-light:  #9ca3af;
    --border:      rgba(30,45,143,0.10);
    --radius:      16px;
    --radius-sm:   10px;
    --shadow:      0 4px 40px rgba(30,45,143,0.10);
    --shadow-lg:   0 20px 60px rgba(30,45,143,0.18);
    --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
    font-family: 'Righteous', sans-serif;
    line-height: 1.2;
    font-weight: 400;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 700; }

p { line-height: 1.8; }

/* --- LAYOUT --- */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section { padding: 6rem 0; }

/* --- SECTION LABEL (small gold badge) --- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Righteous', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    font-family: 'Righteous', sans-serif;
    transition: var(--transition);
    letter-spacing: 0.02em;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--text);
    border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(229,184,0,0.35);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-blue {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}
.btn-blue:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30,45,143,0.30);
}

.btn-outline-blue {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
}
.btn-outline-blue:hover {
    background: var(--blue);
    color: var(--white);
}

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(30,45,143,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(22,33,110,0.4);
}

.navbar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 72px;
    gap: 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.80);
    transition: color 0.2s;
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--white);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.navbar-logo {
    display: flex;
    justify-content: center;
}

.navbar-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.nav-cta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

.nav-cta a.btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.82rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--blue-dark);
    z-index: 999;
    padding: 100px 2rem 2rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: var(--transition);
}

.mobile-nav.open {
    display: flex;
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav a {
    font-family: 'Righteous', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    text-align: center;
    transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--gold); }

.mobile-nav .btn {
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
}

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--blue-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.45;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
        rgba(14,22,80,0.96) 0%,
        rgba(22,33,110,0.82) 45%,
        rgba(22,33,110,0.30) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding-top: 4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(229,184,0,0.15);
    border: 1px solid rgba(229,184,0,0.4);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-badge span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero h1 em {
    font-style: normal;
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.hero p.lead {
    color: rgba(255,255,255,0.78);
    font-size: 1.05rem;
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    flex-wrap: wrap;
}

.hero-garantie {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    flex: 1;
    min-width: 160px;
}

.hero-garantie-icon {
    width: 44px;
    height: 44px;
    background: rgba(229,184,0,0.20);
    border: 1.5px solid rgba(229,184,0,0.60);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}

.hero-garantie-icon svg {
    color: var(--gold) !important;
    stroke: var(--gold) !important;
}

.hero-garantie-title {
    font-family: 'Righteous', sans-serif;
    font-size: 0.92rem;
    color: #ffffff !important;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.hero-garantie-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.75) !important;
    line-height: 1.5;
}

/* Hero image panel */
.hero-visual {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

.hero-visual::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 60%;
    background: linear-gradient(90deg, rgba(22,33,110,1) 0%, transparent 100%);
    z-index: 1;
}

/* ============================================
   HERO V2 — Style A2 Consulting (mosaïque animée)
   ============================================ */
.hero-v2 {
    background: linear-gradient(125deg, #0a1240 0%, #1E2D8F 55%, #162272 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding-top: 72px; /* navbar height */
}

/* Grain subtil en fond */
.hero-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 10% 60%, rgba(229,184,0,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 20%, rgba(255,255,255,0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.hero-v2-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 72px);
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

/* --- Texte gauche --- */
.hero-v2-text { max-width: 580px; }

.hero-v2-title {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero-v2-title em {
    font-style: normal;
    color: var(--gold);
}

.hero-v2-lead {
    color: rgba(255,255,255,0.72);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* --- Mosaïque droite --- */
.hero-v2-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    height: 580px;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

/* Fade haut et bas pour fondre les images */
.hero-v2-mosaic::before,
.hero-v2-mosaic::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 100px;
    z-index: 2;
    pointer-events: none;
}
.hero-v2-mosaic::before {
    top: 0;
    background: linear-gradient(to bottom, #0a1240 0%, transparent 100%);
}
.hero-v2-mosaic::after {
    bottom: 0;
    background: linear-gradient(to top, #162272 0%, transparent 100%);
}

.mosaic-col {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.mosaic-track {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Animation scroll vers le haut */
.mosaic-track-up {
    animation: scrollUp 18s linear infinite;
}

/* Animation scroll vers le bas */
.mosaic-track-down {
    animation: scrollDown 22s linear infinite;
}

@keyframes scrollUp {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes scrollDown {
    0%   { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

/* Pause au hover */
.hero-v2-mosaic:hover .mosaic-track-up,
.hero-v2-mosaic:hover .mosaic-track-down {
    animation-play-state: paused;
}

.mosaic-item {
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    height: 200px;
    position: relative;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.mosaic-item:hover img {
    transform: scale(1.05);
}

/* Overlay léger sur chaque photo */
.mosaic-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(30,45,143,0.12) 0%, transparent 60%);
    border-radius: 12px;
}

/* --- Mobile hero-v2 --- */
@media (max-width: 1024px) {
    .hero-v2-inner {
        grid-template-columns: 1fr;
        padding: 3rem 0;
        gap: 2.5rem;
    }
    .hero-v2-mosaic {
        height: 320px;
    }
    .mosaic-item { height: 150px; }
}

@media (max-width: 768px) {
    .hero-v2-mosaic {
        height: 260px;
    }
    .mosaic-item { height: 120px; }
    .hero-v2-title { font-size: 2rem; }
}

/* --- PAGE HERO (inner pages) --- */
.page-hero {
    background: var(--blue-dark);
    padding: 7rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.38;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(14,22,80,0.92) 0%,
        rgba(22,33,110,0.75) 50%,
        rgba(30,45,143,0.55) 100%);
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin-top: 0.5rem;
}

.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--gold); }

/* --- CARDS --- */
.card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30,45,143,0.20);
}

/* Service card */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

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

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

.service-card:hover .service-card-img img {
    transform: scale(1.06);
}

.service-card-body {
    padding: 1.75rem;
}

.service-card-body h3 {
    margin-bottom: 0.75rem;
    color: var(--text);
}

.service-card-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-tag {
    background: var(--bg-alt);
    color: var(--text-muted);
    border-radius: 100px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--border);
}

.service-card .btn {
    width: 100%;
    justify-content: center;
    background: var(--blue);
    color: var(--white);
}

.service-card .btn:hover {
    background: var(--gold);
    color: var(--text);
}

/* --- SECTION DARK (blue) --- */
.section-dark {
    background: linear-gradient(160deg, #0e1650 0%, #1E2D8F 60%, #162272 100%);
    color: var(--white);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse at 80% 20%, rgba(229,184,0,0.07) 0%, transparent 55%),
                      radial-gradient(ellipse at 10% 80%, rgba(255,255,255,0.04) 0%, transparent 45%);
    pointer-events: none;
}

.section-dark h2 { color: var(--white); }
.section-dark > .container > div > p,
.section-dark > .container > div > div > p { color: rgba(255,255,255,0.75); }
/* Préserver les couleurs des cards dans section-dark */
.section-dark .service-card { background: #ffffff !important; }
.section-dark .service-card * { color: inherit; }
.section-dark .service-card-body { background: #ffffff !important; }
.section-dark .service-card-body h3 { color: #111827 !important; }
.section-dark .service-card-body p { color: #6b7280 !important; font-size: 0.9rem !important; }
.section-dark .service-card-body h2 { color: #111827 !important; }
.section-dark .service-tag { color: #6b7280 !important; background: #F0F2FA !important; }
.section-dark .service-card .btn { color: #ffffff !important; }

/* --- SECTION ALT --- */
.section-alt {
    background: var(--bg);
}

/* --- ABOUT SPLIT SECTION --- */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    width: 80%;
    border-radius: var(--radius);
    object-fit: cover;
    height: 480px;
}

.about-img-accent {
    position: absolute;
    right: 0;
    bottom: -40px;
    width: 50%;
    height: 260px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    top: 30px;
    right: 60px;
    background: var(--gold);
    color: var(--text);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    text-align: center;
    font-family: 'Righteous', sans-serif;
    font-weight: 800;
    box-shadow: var(--shadow);
    z-index: 2;
}

.about-badge strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
}

.about-badge span {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.8;
}

.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1.25rem; }

.about-contact-row {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.about-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-contact-icon {
    width: 44px;
    height: 44px;
    background: var(--bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-contact-icon svg { color: var(--blue); }

.about-contact-info small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-contact-info strong {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 700;
}

/* --- MÉTHODE STEPS --- */
.method-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.method-step {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--white);
    position: relative;
    transition: var(--transition);
}

.method-step:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(229,184,0,0.15);
    transform: translateY(-4px);
}

.method-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    font-family: 'Righteous', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 auto 1.25rem;
}

.method-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.method-step p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.method-connector {
    display: none;
}

/* --- CIBLE (pour qui) --- */
.pour-qui-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 768px) {
    .pour-qui-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.cibles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.cible-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.07);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.10);
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
}

.cible-item:hover {
    background: rgba(229,184,0,0.12);
    border-color: rgba(229,184,0,0.35);
    color: var(--white);
}

.cible-item svg { color: var(--gold); flex-shrink: 0; }

/* --- TESTIMONIALS --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--blue);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:nth-child(even) {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-quote {
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.testimonial-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.testimonial-name {
    font-family: 'Righteous', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
}

.testimonial-role {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.50);
    margin-top: 0.1rem;
}

/* --- CTA BANNER --- */
.cta-banner {
    background: linear-gradient(135deg, #0e1650 0%, #1E2D8F 50%, #162272 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 5rem 0;
}

.cta-banner::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    border: 140px solid rgba(229,184,0,0.08);
    top: -250px;
    right: -120px;
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229,184,0,0.06) 0%, transparent 70%);
    bottom: -150px;
    left: -80px;
    pointer-events: none;
}

.cta-banner .section-label { justify-content: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.70); max-width: 560px; margin: 0 auto 2.5rem; }

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* --- BLOG CARDS --- */
.blog-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.blog-featured .blog-card-big {
    grid-column: 1;
    grid-row: 1 / 3;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

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

.blog-card-img {
    overflow: hidden;
    position: relative;
}

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

.blog-card:hover .blog-card-img img { transform: scale(1.06); }

.blog-card-big .blog-card-img { height: 100%; min-height: 360px; }
.blog-card:not(.blog-card-big) .blog-card-img { height: 200px; }

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.blog-card-cat {
    background: var(--gold-pale);
    color: #92710a;
    border-radius: 100px;
    padding: 0.2rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.blog-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    color: var(--text);
    line-height: 1.4;
}

.blog-card-big h3 { font-size: 1.4rem; }

.blog-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* --- FAQ --- */
.faq-list { margin-top: 2rem; }

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    cursor: pointer;
    font-family: 'Righteous', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    transition: color 0.2s;
    gap: 1rem;
}

.faq-q:hover { color: var(--blue); }

.faq-q.open { color: var(--blue); }

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--text-muted);
}

.faq-q.open .faq-icon {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s;
}

.faq-a.open {
    max-height: 300px;
    padding-bottom: 1.25rem;
}

.faq-a p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* --- CONTACT FORM --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrap {
    background: var(--blue-dark);
    border-radius: var(--radius);
    padding: 2.5rem;
}

.contact-form-wrap label {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    display: block;
    margin-bottom: 0.4rem;
}

.contact-form-wrap input,
.contact-form-wrap textarea,
.contact-form-wrap select {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    padding: 0.875rem 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--white);
    transition: border-color 0.2s;
    outline: none;
}

.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder {
    color: rgba(255,255,255,0.30);
}

.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
    border-color: var(--gold);
}

.contact-form-wrap textarea { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { margin-bottom: 1.25rem; }

/* --- RESERVATION (Calendly style) --- */
.reservation-widget {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.reservation-header {
    background: var(--blue);
    padding: 2rem;
    color: var(--white);
}

.reservation-header h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.reservation-header p {
    color: rgba(255,255,255,0.70);
    font-size: 0.875rem;
}

.reservation-body {
    padding: 2rem;
}

.cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.cal-nav-btn {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-muted);
}

.cal-nav-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.cal-month {
    font-family: 'Righteous', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day-name {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-light);
    padding: 0.5rem 0;
    text-transform: uppercase;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
    border: 1.5px solid transparent;
    position: relative;
}

.cal-day:hover:not(.disabled):not(.other-month) {
    border-color: var(--blue);
    color: var(--blue);
}

.cal-day.today {
    background: var(--bg);
    border-color: var(--border);
}

.cal-day.selected {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.cal-day.has-slots::after {
    content: '';
    position: absolute;
    bottom: 3px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

.cal-day.booked {
    background: #fef2f2;
    color: #dc2626;
    cursor: not-allowed;
    text-decoration: line-through;
}

.cal-day.disabled,
.cal-day.other-month {
    color: var(--text-light);
    cursor: default;
    opacity: 0.4;
}

.cal-day.other-month { opacity: 0.2; }

.slots-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.slots-title {
    font-family: 'Righteous', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.slot-btn {
    padding: 0.6rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.slot-btn:hover, .slot-btn.selected {
    border-color: var(--blue);
    background: var(--blue);
    color: var(--white);
}

/* --- FOOTER --- */
.footer {
    background: var(--blue-dark);
    color: var(--white);
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
    color: rgba(255,255,255,0.55);
    font-size: 0.875rem;
    line-height: 1.8;
    margin-top: 1.25rem;
    max-width: 280px;
}

.footer-logo { height: 44px; width: auto; object-fit: contain; }

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: rgba(255,255,255,0.60);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--text);
}

.footer-col h4 {
    font-family: 'Righteous', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}

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

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-contact-item svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-newsletter p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-form input {
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.30); }
.newsletter-form input:focus { border-color: var(--gold); }

.newsletter-form button {
    background: var(--gold);
    color: var(--text);
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    font-family: 'Righteous', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.newsletter-form button:hover { background: var(--gold-light); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.35);
    transition: color 0.2s;
}

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

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 1.5rem;
    z-index: 900;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.55);
}

.whatsapp-float svg { color: white; }

/* --- CHAT WIDGET --- */
.chat-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 950;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(30,45,143,0.40);
    transition: var(--transition);
    border: none;
    margin-left: auto;
}

.chat-toggle:hover {
    background: var(--blue-dark);
    transform: scale(1.05);
}

.chat-toggle svg { color: white; transition: var(--transition); }

.chat-window {
    position: absolute;
    bottom: 76px;
    right: 0;
    width: 340px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(30,45,143,0.22);
    overflow: hidden;
    display: none;
    flex-direction: column;
    border: 1px solid var(--border);
    max-height: 520px;
}

.chat-window.open {
    display: flex;
    animation: chatOpen 0.3s ease;
}

@keyframes chatOpen {
    from { opacity: 0; transform: translateY(16px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-header {
    background: var(--blue);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-avatar svg { color: white; }

.chat-header-info h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.chat-header-info span {
    font-size: 0.73rem;
    color: rgba(255,255,255,0.60);
}

.chat-online {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    margin-left: auto;
    box-shadow: 0 0 0 2px rgba(74,222,128,0.3);
}

.chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: var(--bg);
}

.chat-msg {
    max-width: 90%;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    font-size: 0.875rem;
    line-height: 1.6;
}

.chat-msg.bot {
    background: var(--white);
    color: var(--text);
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    align-self: flex-start;
}

.chat-msg.user {
    background: var(--blue);
    color: var(--white);
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.chat-option-btn {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 100px;
    padding: 0.55rem 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.chat-option-btn:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.chat-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--text);
    border: none;
    border-radius: 100px;
    padding: 0.75rem 1.25rem;
    font-family: 'Righteous', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin-top: 0.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.chat-cta-btn:hover {
    background: var(--gold-light);
}

.chat-footer {
    padding: 0.75rem 1rem;
    background: var(--white);
    border-top: 1px solid var(--border);
    font-size: 0.7rem;
    color: var(--text-light);
    text-align: center;
}

/* --- ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Counter animation */
.counter { display: inline-block; }

/* --- ALERT / TOAST --- */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.alert-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .about-split { gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .testimonial-grid { grid-template-columns: 1fr 1fr; }
    .blog-featured { grid-template-columns: 1fr; }
    .blog-featured .blog-card-big { grid-column: 1; grid-row: auto; }
}

@media (max-width: 768px) {
    section { padding: 4rem 0; }

    .nav-links, .nav-cta .btn { display: none; }
    .hamburger { display: flex; }

    .navbar-inner {
        grid-template-columns: auto 1fr auto;
    }
    .navbar-logo { justify-content: center; }

    .hero { min-height: 90vh; }
    .hero-visual { display: none; }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }

    .about-split { grid-template-columns: 1fr; gap: 3rem; }
    .about-img-accent { display: none; }
    .about-img-main { width: 100%; height: 300px; }
    .about-badge { top: 15px; right: 15px; }

    .method-steps { grid-template-columns: 1fr; }

    .contact-grid { grid-template-columns: 1fr; }

    .testimonial-grid { grid-template-columns: 1fr; }

    .blog-grid { grid-template-columns: 1fr; }
    .blog-featured { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand p { max-width: 100%; }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .chat-window { width: calc(100vw - 3rem); right: -0.5rem; }

    .cibles-grid { grid-template-columns: 1fr 1fr; }

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

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cibles-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
    .about-contact-row { flex-direction: column; gap: 1rem; }
    .form-row { grid-template-columns: 1fr; }
    .slots-grid { grid-template-columns: repeat(2, 1fr); }
}
