/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text); line-height: 1.7;
    background: var(--light-bg);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }

/* ===== SKIP LINK (Accessibilité) ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--accent);
    color: var(--white);
    padding: 15px 30px;
    z-index: 10000;
    font-weight: 600;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 0;
}

/* ===== FOCUS VISIBLE (Accessibilité) ===== */
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}
a:focus-visible, button:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    background: var(--whatsapp-hover);
}
@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--light-bg); }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: var(--white); padding: 35px; border-radius: 18px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06); position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}
.testimonial-card::before {
    content: '\201C'; position: absolute; top: 15px; left: 25px;
    font-size: 4rem; color: var(--accent); opacity: 0.15; font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-text {
    color: var(--text-light); font-style: italic; margin-bottom: 20px;
    line-height: 1.8; position: relative; z-index: 1;
}
.testimonial-author {
    display: flex; align-items: center; gap: 15px;
}
.testimonial-avatar {
    width: 50px; height: 50px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 700; font-size: 1.2rem;
}
.testimonial-info h5 { color: var(--primary); font-size: 1rem; margin-bottom: 2px; }
.testimonial-info small { color: var(--text-light); }
.testimonial-stars { color: var(--star); margin-bottom: 15px; }

/* ===== FAQ ===== */
.faq-section { background: var(--white); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-question {
    width: 100%; padding: 20px 25px; background: var(--white);
    border: none; text-align: left; cursor: pointer;
    font-size: 1rem; font-weight: 600; color: var(--primary);
    display: flex; justify-content: space-between; align-items: center;
    transition: all 0.3s;
}
.faq-question:hover { background: var(--light-bg); }
.faq-question i { transition: transform 0.3s; color: var(--accent); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
    padding: 0 25px;
}
.faq-item.active .faq-answer {
    max-height: 500px; padding: 0 25px 20px;
}
.faq-answer p { color: var(--text-light); line-height: 1.8; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-title {
    text-align: center; margin-bottom: 50px;
    font-size: 2rem; color: var(--link);
    position: relative; padding-bottom: 15px;
    text-transform: uppercase; letter-spacing: 1px;
}
.section-title::after {
    content: ''; position: absolute; bottom: 0; left: 50%;
    transform: translateX(-50%); width: 80px; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 2px;
}
.section-title .eyebrow {
    display: block; font-size: 0.8rem; font-weight: 600;
    color: var(--accent); text-transform: uppercase; letter-spacing: 3px;
    margin-bottom: 10px;
}
.section-subtitle {
    text-align: center; color: var(--text-light); margin-top: -35px; margin-bottom: 50px;
    font-size: 1.05rem;
}

/* ===== COLORS =====
   Bleu santé (primaire) + Vert santé (accent)
*/
:root {
    --primary: #0a2647;
    --primary-dark: #061a33;
    --accent: #00b37a;
    --accent-hover: #009368;
    --accent-light: #4dd6a8;
    --accent-end: #00d4aa;
    --gold: #c8a94e;
    --gold-hover: #b8982e;
    --star: #f4c430;
    --light-bg: #f0f4f8;
    --white: #ffffff;
    --text: #333;
    --text-light: #666;
    --text-muted: #ccc;
    --border: #eee;
    --input-border: #e0e0e0;
    --muted: #999;
    --link: #0a2647;
    --chat-bg: #f8f9fa;
    --accent-10: rgba(0,179,122,0.10);
    --accent-30: rgba(0,179,122,0.30);
    --accent-50: rgba(0,179,122,0.50);
    --accent-85: rgba(0,179,122,0.85);
    --accent-gradient: linear-gradient(135deg, var(--accent) 0%, var(--accent-end) 100%);
    --primary-gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --success: #27ae60;
    --success-bg: #d4edda;
    --success-text: #155724;
    --success-border: #c3e6cb;
    --danger: #e74c3c;
    --danger-bg: #f8d7da;
    --danger-text: #721c24;
    --danger-border: #f5c6cb;
    --whatsapp: #25D366;
    --whatsapp-hover: #1ebe5d;
}

/* ===== TOP BAR ===== */
#top-bar {
    background: var(--primary-dark);
    color: var(--text-muted); font-size: 0.85rem; padding: 8px 0;
}
.top-bar-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-bar-info a { color: var(--text-muted); margin-right: 20px; }
.top-bar-info a:hover { color: var(--accent); }
.top-bar-info i { margin-right: 5px; }
.top-bar-social a { color: var(--text-muted); margin-left: 10px; }
.top-bar-social a:hover { color: var(--accent); }

/* ===== HEADER ===== */
#header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky; top: 0; z-index: 1000;
}
.header-flex { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; }
.logo { display: flex; align-items: center; }
.logo img { height: 44px; width: auto; }

#nav-menu { display: flex; align-items: center; gap: 5px; }
#nav-menu li a {
    padding: 8px 14px; border-radius: 5px; font-size: 0.9rem;
    font-weight: 500; color: var(--text); transition: all 0.3s;
}
#nav-menu li a:hover, #nav-menu li a.active { background: var(--light-bg); color: var(--accent); }
.btn-nav {
    background: var(--accent) !important; color: var(--white) !important;
    padding: 10px 20px !important; border-radius: 25px !important;
    font-weight: 600 !important;
}
.btn-nav:hover { background: var(--accent-hover) !important; transform: translateY(-2px); }
#menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--primary); }

/* ===== HERO CAROUSEL ===== */
.hero-carousel { position: relative; overflow: hidden; }

/* Slides */
.hero-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 1.2s ease-in-out; z-index: 0;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Captions container */
.hero-captions {
    position: absolute; inset: 0;
    z-index: 10; pointer-events: none;
}
.hero-caption {
    position: absolute; bottom: 70px; left: 50%; transform: translateX(-50%);
    text-align: center; opacity: 0; transition: all 0.6s 0.3s;
}
.hero-caption.active { opacity: 1; bottom: 80px; }
.hero-caption span {
    display: inline-block; padding: 8px 24px;
    background: var(--accent-85); color: var(--white);
    border-radius: 25px; font-size: 0.85rem; font-weight: 500;
    letter-spacing: 0.5px; backdrop-filter: blur(4px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

/* Hero base */
.hero {
    color: var(--white); text-align: center;
    position: relative; overflow: hidden; min-height: 620px;
    display: flex; align-items: center;
}
.hero .container { width: 100%; position: relative; z-index: 12; padding: 80px 20px; }

/* Overlay */
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,38,71,0.85) 0%, rgba(13,59,102,0.78) 50%, rgba(20,77,122,0.72) 100%);
    z-index: 5;
}
.hero h1 { font-size: 3rem; margin-bottom: 15px; font-weight: 800; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.2rem; opacity: 0.9; max-width: 700px; margin: 0 auto 30px; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* Hero content entrance animation */
.hero .container h1,
.hero .container p,
.hero .container .hero-buttons,
.hero .container .hero-stats {
    opacity: 0; transform: translateY(30px);
    animation: heroFadeUp 0.8s ease forwards;
}
.hero .container h1 { animation-delay: 0.2s; }
.hero .container p { animation-delay: 0.4s; }
.hero .container .hero-buttons { animation-delay: 0.6s; }
.hero .container .hero-stats { animation-delay: 0.8s; }
@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Arrow navigation */
.hero-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 20; width: 50px; height: 50px; border-radius: 50%;
    background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.25);
    color: var(--white); font-size: 1.2rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; backdrop-filter: blur(4px);
    opacity: 0;
}
.hero-carousel:hover .hero-arrow { opacity: 1; }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }
.hero-arrow:hover {
    background: var(--accent); border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

/* Dots */
.hero-dots {
    position: absolute; bottom: 35px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 20;
}
.hero-dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: rgba(255,255,255,0.35); border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer; transition: all 0.3s;
}
.hero-dot.active {
    background: var(--accent); border-color: var(--accent);
    transform: scale(1.3); box-shadow: 0 0 10px var(--accent-50);
}

/* Progress bar */
.hero-progress {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 3px;
    background: rgba(255,255,255,0.15); z-index: 20;
}
.hero-progress-bar {
    height: 100%; width: 0%; background: var(--accent);
    transition: width 0.1s linear;
}
.btn {
    display: inline-block; padding: 14px 35px; border-radius: 30px;
    font-weight: 600; font-size: 1rem; transition: all 0.3s; border: none; cursor: pointer;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-light)); color: var(--white);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover), var(--accent));
    transform: translateY(-3px); box-shadow: 0 6px 22px var(--accent-50);
}
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); transform: translateY(-3px); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-hover); transform: translateY(-3px); }

.hero-stats {
    display: flex; justify-content: center; gap: 0; margin-top: 55px; flex-wrap: wrap;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 18px; padding: 25px 15px; backdrop-filter: blur(6px);
    max-width: 850px; margin-left: auto; margin-right: auto;
}
.hero-stat {
    text-align: center; padding: 0 40px;
    position: relative;
}
.hero-stat:not(:last-child)::after {
    content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    width: 1px; height: 50px; background: rgba(255,255,255,0.15);
}
.hero-stat h3 { font-size: 2.5rem; font-weight: 800; color: var(--accent); }
.hero-stat p { font-size: 0.9rem; opacity: 0.8; margin-top: 5px; }

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-image { text-align: center; display: flex; flex-direction: column; gap: 20px; }
.about-img-wrap { border-radius: 15px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.1); transition: transform 0.3s; }
.about-img-wrap:hover { transform: translateY(-3px); }
.about-img-wrap img { width: 100%; display: block; border-radius: 15px; max-height: 280px; object-fit: cover; }
.about-content h2 { font-size: 2rem; color: var(--primary); margin-bottom: 20px; }
.about-content p { color: var(--text-light); margin-bottom: 20px; font-size: 0.95rem; line-height: 1.8; }
.about-content p strong { color: var(--primary); }
.about-content .btn { margin-top: 10px; }

/* ===== SERVICES / ETAPES ===== */
.etapes-section { background: var(--light-bg); }

/* Intro block */
.intro-block {
    display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center;
    margin-bottom: 50px; background: var(--white); border-radius: 18px;
    padding: 35px; box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}
.intro-text h3 {
    font-size: 1.5rem; color: var(--primary); margin-bottom: 15px;
    border-left: 4px solid var(--accent); padding-left: 15px;
}
.intro-text p { color: var(--text-light); line-height: 1.8; font-size: 0.95rem; }
.intro-img img {
    width: 100%; border-radius: 12px; max-height: 250px; object-fit: cover;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.etape-header { text-align: center; margin-bottom: 30px; }
.etape-header h3 { font-size: 1.8rem; color: var(--primary); }
.etape-header .etape-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 55px; height: 55px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light)); color: var(--white);
    font-size: 1.4rem; font-weight: 800; margin-bottom: 12px;
    box-shadow: 0 6px 18px var(--accent-30);
}
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.service-card {
    background: var(--white); padding: 35px 30px; border-radius: 18px;
    text-align: center; box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: all 0.3s; border: 1px solid rgba(0,0,0,0.03);
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 15px 45px var(--accent-10); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 75px; height: 75px; line-height: 75px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light)); color: var(--white);
    font-size: 1.8rem; margin: 0 auto 20px;
    box-shadow: 0 8px 20px var(--accent-30);
    transition: transform 0.3s;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }
.service-card h4 { color: var(--primary); margin-bottom: 10px; font-size: 1.1rem; }
.service-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

/* ===== PARTNERS ===== */
.partners-section { background: var(--white); }
.partners-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px; align-items: center;
}
.partner-card {
    text-align: center; padding: 30px 20px;
    border: 1px solid var(--border); border-radius: 16px;
    transition: all 0.3s; background: var(--white);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}
.partner-card:hover { box-shadow: 0 12px 35px var(--accent-10); transform: translateY(-4px); border-color: var(--accent-30); }
.partner-card img { height: 80px; margin-bottom: 15px; object-fit: contain; filter: grayscale(100%); opacity: 0.7; transition: all 0.3s; }
.partner-card:hover img { filter: grayscale(0); opacity: 1; }
.partner-card h4 { font-size: 0.95rem; color: var(--primary); margin-bottom: 5px; }
.partner-card p { font-size: 0.8rem; color: var(--text-light); }
.partner-card a { color: var(--accent); font-size: 0.85rem; font-weight: 600; }

/* ===== CTA SECTION ===== */
.cta-section {
    color: var(--white); text-align: center; padding: 80px 0;
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10,38,71,0.92) 0%, rgba(13,59,102,0.88) 100%),
                url('../uploads/gallery/kims-mahadevapura-official.jpg') center/cover fixed;
    z-index: 0;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-size: 2.3rem; margin-bottom: 15px; font-weight: 800; }
.cta-section h2 span { color: var(--accent); }
.cta-section p { opacity: 0.9; margin-bottom: 30px; font-size: 1.1rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.gallery-item {
    border-radius: 12px; overflow: hidden; position: relative;
    cursor: pointer; height: 250px;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px; color: var(--white); transform: translateY(100%); transition: 0.3s;
}
.gallery-item:hover .gallery-overlay { transform: translateY(0); }

/* ===== CONTACT FORM ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h3 { font-size: 1.5rem; color: var(--primary); margin-bottom: 20px; }
.contact-info-item { display: flex; gap: 15px; margin-bottom: 20px; }
.contact-info-item i {
    width: 45px; height: 45px; line-height: 45px; text-align: center;
    border-radius: 50%; background: var(--light-bg); color: var(--accent); font-size: 1.1rem;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 600; color: var(--text); }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 12px 15px; border: 2px solid var(--input-border);
    border-radius: 8px; font-size: 1rem; transition: border-color 0.3s; font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--accent);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ===== QHSE PAGE ===== */
.qhse-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.qhse-card {
    background: var(--white); padding: 35px; border-radius: 15px;
    text-align: center; box-shadow: 0 5px 25px rgba(0,0,0,0.06);
}
.qhse-card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; }
.qhse-card h4 { color: var(--primary); margin-bottom: 10px; }
.qhse-card p { color: var(--text-light); font-size: 0.9rem; }

/* ===== PAGE HERO ===== */
.page-hero {
    color: var(--white); text-align: center; padding: 80px 0;
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, rgba(10,38,71,0.9) 0%, rgba(13,59,102,0.85) 100%);
}
.page-hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
}
.page-hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10,38,71,0.88) 0%, rgba(13,59,102,0.82) 100%);
    z-index: 1;
}
.page-hero * { position: relative; z-index: 2; }
.page-hero h1 { font-size: 2.5rem; margin-bottom: 10px; }
.page-hero p { opacity: 0.9; font-size: 1.1rem; }

/* ===== FOOTER ===== */
#footer { background: var(--primary-dark); color: var(--text-muted); }
.footer-newsletter {
    background: var(--accent-gradient);
    padding: 50px 0;
}
.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.newsletter-text h3 {
    color: var(--white);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.newsletter-text p {
    color: rgba(255,255,255,0.9);
    margin: 0;
}
.newsletter-input-group {
    display: flex;
    gap: 10px;
    background: var(--white);
    padding: 6px;
    border-radius: 30px;
    min-width: 400px;
}
.newsletter-input-group input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    font-size: 0.95rem;
    background: transparent;
    outline: none;
}
.newsletter-input-group .btn {
    border-radius: 25px;
    padding: 12px 30px;
    white-space: nowrap;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 0 40px;
}
.footer-logo {
    margin-bottom: 15px;
}
.footer-logo img {
    height: 50px;
    width: auto;
}
.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}
.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}
.footer-certifications {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(0, 179, 122, 0.2);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all 0.3s;
    padding: 5px 0;
}
.footer-links li a:hover {
    color: var(--accent);
    padding-left: 8px;
}
.footer-links li a i {
    font-size: 0.85rem;
    width: 20px;
    text-align: center;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}
.footer-contact li i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}
.footer-contact li div {
    display: flex;
    flex-direction: column;
}
.footer-contact li strong {
    color: var(--white);
    font-size: 0.85rem;
    margin-bottom: 2px;
}
.footer-contact li a,
.footer-contact li span {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.footer-contact li a:hover {
    color: var(--accent);
}
.footer-map {
    margin-top: 20px;
}
.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}
.footer-social {
    margin-top: 20px;
}
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--text-muted);
    margin-right: 10px;
    transition: all 0.3s;
    font-size: 1.1rem;
}
.social-link:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}
.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    margin-top: 40px;
}
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-partner {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-kims-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
.footer-bottom p {
    font-size: 0.85rem;
    margin: 0;
}
.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}
.footer-bottom-links .separator {
    opacity: 0.5;
}
.footer-bottom a {
    color: var(--accent);
}
.footer-bottom a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .footer-partner { flex-direction: column; }
}

/* ===== SCROLL TOP ===== */
#scroll-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 45px; height: 45px; line-height: 45px; text-align: center;
    border-radius: 50%; background: var(--accent); color: var(--white);
    font-size: 1.2rem; z-index: 99; opacity: 0; visibility: hidden;
    transition: all 0.3s; box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}
#scroll-top.show { opacity: 1; visibility: visible; }
#scroll-top:hover { background: var(--accent-hover); transform: translateY(-3px); }

/* ===== NOTIFICATIONS ===== */
.alert {
    padding: 15px 20px; border-radius: 8px; margin-bottom: 20px;
    font-weight: 500;
}
.alert-success { background: var(--success-bg); color: var(--success-text); border: 1px solid var(--success-border); }
.alert-error { background: var(--danger-bg); color: var(--danger-text); border: 1px solid var(--danger-border); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .kims-images-grid { grid-template-columns: repeat(3, 1fr); }
    .kims-images-grid img { height: 160px; }
    .kims-photo img { height: 160px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .newsletter-content { flex-direction: column; text-align: center; }
    .newsletter-input-group { min-width: 100%; max-width: 400px; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .footer-bottom-links { flex-direction: column; gap: 5px; }
    .footer-bottom-links .separator { display: none; }
}
@media (max-width: 768px) {
    #menu-toggle { display: block; }
    #nav-menu {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: var(--white); flex-direction: column; padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    #nav-menu.show { display: flex; }
    #nav-menu li a { display: block; padding: 12px 15px; }
    .hero { min-height: 450px; }
    .hero .container { padding: 50px 20px; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .hero-caption span { font-size: 0.75rem; padding: 5px 14px; }
    .hero-caption.active { bottom: 60px; }
    .hero-caption { bottom: 50px; }
    .hero-arrow { width: 38px; height: 38px; font-size: 0.9rem; opacity: 1; background: rgba(255,255,255,0.15); }
    .hero-prev { left: 10px; }
    .hero-next { right: 10px; }
    .about-grid { grid-template-columns: 1fr; }
    .intro-block { grid-template-columns: 1fr; padding: 25px; }
    .intro-text h3 { font-size: 1.3rem; }
    .kims-grid { grid-template-columns: 1fr; }
    .kims-images-grid { grid-template-columns: 1fr; }
    .kims-images-grid img { height: 180px; }
    .kims-photo img { height: 180px; }
    .video-grid { grid-template-columns: 1fr; gap: 20px; }
    .kims-banner-wrap .kims-banner { padding: 30px 25px; }
    .contact-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { gap: 15px; padding: 20px 10px; }
    .hero-stat { padding: 10px 20px; }
    .hero-stat::after { display: none; }
    .hero-stat h3 { font-size: 1.8rem; }
    .section-title { font-size: 1.6rem; }
    .cta-section { padding: 50px 0; }
    .cta-section h2 { font-size: 1.5rem; }
    .section { padding: 50px 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .newsletter-input-group { flex-direction: column; min-width: 100%; }
    .newsletter-input-group .btn { width: 100%; }
    .footer-certifications { justify-content: center; flex-wrap: wrap; }
    .footer-social { text-align: center; }
}
@media (max-width: 480px) {
    .top-bar-flex { flex-direction: column; text-align: center; }
    .top-bar-info a { display: block; margin: 3px 0; }
}

/* ===== LOADING SPINNER ===== */
.spinner {
    display: inline-block; width: 20px; height: 20px;
    border: 2px solid rgba(255,255,255,0.3); border-top-color: white;
    border-radius: 50%; animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== TIMELINE ETAPES ===== */
.timeline { position: relative; padding: 20px 0; }
.timeline::before {
    content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
    width: 3px; background: linear-gradient(to bottom, var(--accent), var(--gold));
    transform: translateX(-50%);
}
.etape-block { margin-bottom: 60px; }
.etape-block:last-child { margin-bottom: 0; }
.etape-block .etape-header { margin-bottom: 30px; }

/* ===== ABOUT PAGE ===== */
.about-page-content { max-width: 800px; margin: 0 auto; }
.about-page-content h2 { color: var(--primary); margin: 30px 0 15px; }
.about-page-content p { color: var(--text-light); margin-bottom: 15px; }
.about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 25px; margin: 40px 0; }
.value-card { text-align: center; padding: 30px; background: var(--white); border-radius: 12px; box-shadow: 0 3px 15px rgba(0,0,0,0.05); }
.value-card i { font-size: 2rem; color: var(--accent); margin-bottom: 15px; }
.value-card h4 { color: var(--primary); margin-bottom: 8px; }

/* ===== KIMS SECTION ===== */
.kims-section { background: var(--white); }
.kims-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; margin-bottom: 40px;
}
.kims-banner-wrap .kims-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #1a5276 100%);
    color: var(--white); padding: 45px 35px; border-radius: 18px; text-align: center;
    box-shadow: 0 8px 30px rgba(10,38,71,0.25);
    height: 100%; display: flex; flex-direction: column; justify-content: center;
}
.kims-banner h3 { font-size: 1.6rem; margin-bottom: 15px; color: var(--white); }
.kims-banner p { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.8; margin-bottom: 15px; }
.kims-banner p strong { color: var(--white); }
.kims-link {
    display: inline-block; margin-top: 10px; padding: 10px 22px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
    color: var(--white); border-radius: 25px; font-weight: 600; font-size: 0.95rem;
    transition: all 0.3s;
}
.kims-link:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.kims-img-large img {
    width: 100%; border-radius: 18px; box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    display: block;
}
.kims-images-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px;
}
.kims-images-grid img {
    width: 100%; height: 200px; object-fit: cover; border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08); transition: transform 0.3s;
}
.kims-images-grid img:hover { transform: scale(1.03); }

/* ===== KIMS PHOTOS WITH CAPTIONS ===== */
.kims-photo { position: relative; overflow: hidden; border-radius: 14px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.kims-photo img { height: 200px; }
.kims-photo .photo-caption {
    position: absolute; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(6,26,51,0.85), transparent);
    color: var(--white); font-size: 0.85rem; font-weight: 600;
    padding: 22px 14px 10px; text-align: center;
}
.kims-img-large { position: relative; }
.kims-img-large .img-badge {
    position: absolute; top: 14px; right: 14px;
    background: var(--accent); color: var(--white); font-size: 0.72rem; font-weight: 700;
    padding: 6px 12px; border-radius: 20px; letter-spacing: 0.5px;
    box-shadow: 0 3px 12px var(--accent-50);
}

/* ===== VIDEOS KIMS ===== */
.video-section { background: var(--primary-dark); }
.video-section .section-title { color: var(--white); }
.video-section .section-title .eyebrow { color: var(--accent-light); }
.video-section .section-subtitle { color: rgba(255,255,255,0.75); }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.video-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px; padding: 14px; transition: transform 0.3s, border-color 0.3s;
}
.video-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.video-frame {
    position: relative; width: 100%; aspect-ratio: 16 / 9;
    border-radius: 10px; overflow: hidden; display: block; background: var(--primary-dark);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card h4 { color: var(--white); margin: 14px 4px 6px; font-size: 1.05rem; }
.video-card p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 0 4px 6px; line-height: 1.6; }

/* ===== UTILITY CLASSES (remplacement styles inline) ===== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-light { color: var(--text-light); }
.bg-light { background: var(--light-bg); }
.bg-white { background: var(--white); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.p-2 { padding: 20px; }
.p-3 { padding: 30px; }
.rounded { border-radius: 12px; }
.shadow { box-shadow: 0 3px 15px rgba(0,0,0,0.05); }
.shadow-lg { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }

/* Grid layouts for content sections */
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.content-grid-reverse { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.content-grid-reverse > div:first-child { order: 2; }
.content-grid-reverse > div:last-child { order: 1; }

/* Content blocks with background */
.info-block {
    background: var(--light-bg); border-radius: 15px; padding: 30px;
}

/* Image styling */
.img-cover { width: 100%; border-radius: 12px; max-height: 300px; object-fit: cover; }
.img-full { width: 100%; border-radius: 12px; }

/* Feature cards */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-card {
    background: var(--white); padding: 30px; border-radius: 12px;
    text-align: center; box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}
.feature-card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 15px; }
.feature-card h4 { color: var(--primary); margin-bottom: 10px; }
.feature-card p { color: var(--text-light); }

/* Why choose us */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.why-card {
    background: var(--white); padding: 30px; border-radius: 12px;
    text-align: center; box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}
.why-card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 15px; }
.why-card h4 { color: var(--primary); margin-bottom: 10px; }
.why-card p { color: var(--text-light); }

/* CTA inline styles replacement */
.cta-inline {
    position: relative; z-index: 1;
}

/* About page content */
.about-content-block { margin-bottom: 40px; }
.about-content-block h2 { color: var(--primary); margin-bottom: 15px; }
.about-content-block p { color: var(--text-light); margin-bottom: 15px; line-height: 1.8; }
.about-content-block ul { list-style: disc; padding-left: 20px; color: var(--text-light); line-height: 2; }
.about-content-block ul li { margin-bottom: 5px; }

/* QHSE cards */
.qhse-intro {
    display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center;
    margin-bottom: 50px; background: var(--white); border-radius: 15px;
    padding: 30px; box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}
.qhse-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.qhse-info-card {
    background: var(--white); padding: 30px; border-radius: 12px;
    text-align: center;
}
.qhse-info-card h3 { color: var(--primary); margin-bottom: 15px; }
.qhse-info-card p { color: var(--text-light); }

/* Contact info sidebar */
.contact-sidebar {
    margin-top: 10px; padding: 25px; background: var(--light-bg);
    border-radius: 12px;
}
.contact-sidebar h4 { color: var(--primary); margin-bottom: 15px; }
.contact-sidebar p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 10px; }

/* Contact CTA box */
.contact-cta-box {
    background: var(--primary); color: var(--white);
    padding: 20px; border-radius: 10px; margin-top: 20px;
}
.contact-cta-box p { font-size: 0.9rem; opacity: 0.9; }
.contact-cta-box .contact-phone {
    font-size: 1.1rem; font-weight: 600; margin-top: 5px;
}
.contact-cta-box i { color: var(--accent); }

/* Appointment sidebar */
.appointment-sidebar { background: var(--light-bg); padding: 35px; border-radius: 15px; }
.appointment-sidebar h3 { color: var(--primary); margin-bottom: 20px; }
.appointment-list { list-style: none; }
.appointment-list li {
    margin-bottom: 15px; display: flex; gap: 10px;
}
.appointment-list i { color: var(--accent); margin-top: 3px; }
.appointment-list strong { display: block; }
.appointment-list small { color: var(--text-light); }

/* Responsive for new classes */
@media (max-width: 768px) {
    .content-grid, .content-grid-reverse { grid-template-columns: 1fr; }
    .content-grid-reverse > div:first-child { order: 1; }
    .content-grid-reverse > div:last-child { order: 2; }
    .qhse-intro { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .faq-container { padding: 0 10px; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 1.5rem; bottom: 20px; left: 20px; }
    .feature-grid, .why-grid { grid-template-columns: 1fr; }
    .header-actions { gap: 5px; }
    .header-icon-btn { width: 36px; height: 36px; font-size: 0.9rem; }
    .chatbot-widget { width: 350px; height: 500px; }
    .chatbot-messages { max-height: 340px; }
}

/* ===== HEADER ACTIONS (Search + Login) ===== */
.header-actions {
    display: flex; align-items: center; gap: 10px;
}
.header-icon-btn {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--light-bg); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1rem; transition: all 0.3s;
    text-decoration: none;
}
.header-icon-btn:hover {
    background: var(--accent); color: var(--white);
    transform: translateY(-2px); box-shadow: 0 4px 12px var(--accent-30);
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
    position: fixed; inset: 0; background: rgba(10,38,71,0.95);
    z-index: 9999; display: none; align-items: center; justify-content: center;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}
.search-overlay.active { display: flex; }
.search-container {
    width: 90%; max-width: 700px; text-align: center;
}
.search-form {
    display: flex; gap: 0; background: var(--white);
    border-radius: 50px; overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.search-form input[type="search"] {
    flex: 1; padding: 18px 25px; border: none; font-size: 1.1rem;
    outline: none; background: transparent; color: var(--primary);
}
.search-form input[type="search"]::placeholder { color: var(--muted); }
.search-form input[type="search"]::-webkit-search-cancel-button { display: none; }
.search-submit {
    padding: 18px 25px; background: var(--accent); border: none;
    color: var(--white); font-size: 1.2rem; cursor: pointer;
    transition: background 0.3s;
}
.search-submit:hover { background: var(--accent-hover); }
.search-close {
    padding: 18px 20px; background: transparent; border: none;
    color: var(--muted); font-size: 1.3rem; cursor: pointer;
    transition: color 0.3s;
}
.search-close:hover { color: var(--danger); }
.search-suggestions { margin-top: 30px; }
.search-suggestions p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 12px; }
.search-tags { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.search-tag {
    padding: 8px 18px; background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2); border-radius: 20px;
    color: var(--white); font-size: 0.85rem; transition: all 0.3s;
}
.search-tag:hover { background: var(--accent); border-color: var(--accent); }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0;
    margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== CHATBOT ===== */
.chatbot-float {
    position: fixed; bottom: 100px; left: 30px;
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; z-index: 997;
    box-shadow: 0 4px 20px rgba(10,38,71,0.4);
    transition: all 0.3s;
    animation: chatbotPulse 2s infinite;
}
.chatbot-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(10,38,71,0.6);
}
@keyframes chatbotPulse {
    0% { box-shadow: 0 0 0 0 rgba(10,38,71,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(10,38,71,0); }
    100% { box-shadow: 0 0 0 0 rgba(10,38,71,0); }
}
.chatbot-widget {
    position: fixed; bottom: 170px; left: 30px;
    width: 400px; height: 550px; border-radius: 20px;
    background: var(--white); box-shadow: 0 10px 50px rgba(0,0,0,0.2);
    z-index: 998; display: none; flex-direction: column;
    overflow: hidden; border: 1px solid rgba(0,0,0,0.08);
    animation: slideUp 0.3s ease;
}
.chatbot-widget.active { display: flex; }
@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.chatbot-header {
    background: var(--primary-gradient);
    color: var(--white); padding: 18px 20px;
    display: flex; align-items: center; gap: 12px;
}
.chatbot-avatar {
    width: 45px; height: 45px; border-radius: 50%;
    background: var(--accent); display: flex; align-items: center;
    justify-content: center; font-size: 1.4rem;
    box-shadow: 0 3px 10px var(--accent-30);
}
.chatbot-header-info h4 { font-size: 1rem; margin-bottom: 2px; }
.chatbot-header-info small { opacity: 0.8; font-size: 0.75rem; }
.chatbot-close {
    margin-left: auto; background: none; border: none;
    color: var(--white); font-size: 1.2rem; cursor: pointer;
    opacity: 0.8; transition: opacity 0.3s;
}
.chatbot-close:hover { opacity: 1; }
.chatbot-messages {
    flex: 1; padding: 20px; overflow-y: auto;
    display: flex; flex-direction: column; gap: 15px;
    background: var(--chat-bg);
}
.chatbot-messages::-webkit-scrollbar { width: 5px; }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--text-muted); border-radius: 10px; }
.chat-msg {
    max-width: 85%; padding: 12px 16px;
    border-radius: 18px; font-size: 0.9rem; line-height: 1.5;
    animation: msgFade 0.3s ease;
}
@keyframes msgFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.chat-msg.bot {
    background: var(--white); color: var(--text);
    border: 1px solid rgba(0,0,0,0.06);
    align-self: flex-start; border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.chat-msg.user {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white); align-self: flex-end;
    border-bottom-right-radius: 4px;
}
.chat-msg.bot a { color: var(--accent); text-decoration: underline; font-weight: 600; }
.chat-msg.bot strong { color: var(--primary); }
.chat-typing {
    display: flex; gap: 4px; padding: 12px 16px;
    background: var(--white); border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px; border-bottom-left-radius: 4px;
    align-self: flex-start; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.chat-typing span {
    width: 8px; height: 8px; background: var(--text-muted); border-radius: 50%;
    animation: typing 1.4s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); background: var(--text-muted); }
    30% { transform: translateY(-8px); background: var(--accent); }
}
.chatbot-quick-replies {
    display: flex; flex-wrap: wrap; gap: 8px;
    padding: 0 20px 10px; background: var(--chat-bg);
}
.quick-reply-btn {
    padding: 8px 14px; border: 1px solid var(--accent);
    border-radius: 20px; background: var(--white);
    color: var(--accent); font-size: 0.8rem; cursor: pointer;
    transition: all 0.3s; font-weight: 500;
}
.quick-reply-btn:hover {
    background: var(--accent); color: var(--white);
}
.chatbot-input {
    display: flex; gap: 0; padding: 15px; background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.06);
}
.chatbot-input input {
    flex: 1; padding: 12px 16px; border: 2px solid var(--border);
    border-radius: 25px; font-size: 0.9rem; outline: none;
    transition: border-color 0.3s;
}
.chatbot-input input:focus { border-color: var(--accent); }
.chatbot-input button {
    width: 45px; height: 45px; border-radius: 50%;
    background: var(--accent); border: none; color: var(--white);
    font-size: 1rem; cursor: pointer; margin-left: 10px;
    transition: all 0.3s; display: flex; align-items: center;
    justify-content: center;
}
.chatbot-input button:hover {
    background: var(--accent-hover); transform: scale(1.05);
}
@media (max-width: 480px) {
    .chatbot-widget {
        width: calc(100% - 20px); height: calc(100% - 100px);
        bottom: 10px; left: 10px; right: 10px;
        border-radius: 15px;
    }
    .chatbot-float { bottom: 80px; left: 15px; width: 50px; height: 50px; font-size: 1.4rem; }
}

/* ========================================
   NOUVELLES STYLES - AMÉLIORATIONS SITE
   ======================================== */

/* Hero amélioré */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 800px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 179, 122, 0.15);
    border: 1px solid rgba(0, 179, 122, 0.3);
    border-radius: 30px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}
.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 30px;
}
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
    border-radius: 12px;
}
.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.trust-item img {
    height: 40px;
    width: auto;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}
.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.2s; opacity: 0; }
.delay-2 { animation-delay: 0.4s; opacity: 0; }
.delay-3 { animation-delay: 0.6s; opacity: 0; }
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 179, 122, 0.1);
    border-radius: 30px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    position: relative;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.stat-card {
    text-align: center;
    color: var(--white);
    padding: 30px 20px;
    border-radius: 16px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s, background 0.3s;
}
.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}
.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
}
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: inline;
}
.stat-suffix {
    font-size: 1.5rem;
    font-weight: 600;
    display: inline;
}
.stat-label {
    margin-top: 10px;
    font-size: 0.95rem;
    opacity: 0.9;
}
@media (max-width: 992px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .stats-grid { grid-template-columns: 1fr; }
}

/* About Section amélioré */
.about-section {
    background: var(--light-bg);
}
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}
.highlight-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.highlight-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.highlight-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-end));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.highlight-content h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--primary);
}
.highlight-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}
.about-images {
    position: relative;
}
.about-img-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.about-img-main img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}
.about-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(0, 179, 122, 0.95);
    color: var(--white);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}
.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 4px solid var(--white);
}
.about-img-secondary img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}
.about-partner-card {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    text-align: center;
}
.partner-logo-img {
    width: 120px;
    height: auto;
    margin: 0 auto 10px;
    display: block;
}
.about-partner-card h3 {
    margin: 0;
    font-size: 0.9rem;
    color: var(--primary);
}
.about-partner-card p {
    margin: 5px 0 0;
    font-size: 0.8rem;
    color: var(--text-light);
}
.about-partner-card a {
    display: block;
    margin-top: 8px;
    color: var(--accent);
    font-size: 0.8rem;
    text-decoration: none;
}
.kims-logo-inline {
    margin-bottom: 20px;
}
.kims-logo-img {
    max-width: 220px;
    height: auto;
}

/* Check list */
.check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}
.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}
.check-item i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* Intro block */
.intro-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}
.intro-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.intro-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}
.intro-img-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 15px 20px;
    background: rgba(0, 179, 122, 0.95);
    color: var(--white);
    border-radius: 12px;
    text-align: center;
}
.intro-stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
}
.intro-stat span {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    align-items: start;
}
.process-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-end));
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 179, 122, 0.3);
}
.process-content h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 25px;
    font-size: 1.4rem;
    color: var(--primary);
}
.process-content h3 i {
    color: var(--accent);
}

/* KIMS Section amélioré */
.kims-section-logo {
    max-width: 260px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}
.kims-locations {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(0, 179, 122, 0.05);
    border-radius: 12px;
}
.kims-location {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}
.kims-location i {
    color: var(--accent);
    font-size: 1.2rem;
}
.kims-location strong {
    display: block;
    color: var(--primary);
}
.kims-location span {
    font-size: 0.85rem;
    color: var(--text-light);
}
.kims-hospitals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.kims-hospital-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.kims-hospital-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.kims-hospital-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.kims-hospital-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.kims-hospital-card:hover .kims-hospital-img img {
    transform: scale(1.1);
}
.kims-hospital-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 8px 14px;
    background: var(--accent);
    color: var(--white);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.kims-hospital-info {
    padding: 25px;
}
.kims-hospital-info h4 {
    margin: 0 0 10px;
    color: var(--primary);
    font-size: 1.1rem;
}
.kims-hospital-info p {
    margin: 0 0 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}
.kims-hospital-info ul {
    list-style: none;
    margin-bottom: 20px;
}
.kims-hospital-info li {
    padding: 5px 0;
    font-size: 0.9rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}
.kims-hospital-info li i {
    color: var(--accent);
    font-size: 0.8rem;
}
.kims-hospital-info a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s;
}
.kims-hospital-info a:hover {
    gap: 12px;
}
@media (max-width: 992px) {
    .kims-hospitals-grid { grid-template-columns: 1fr; }
    .kims-locations { flex-direction: column; }
}
@media (max-width: 768px) {
    .kims-section-logo { max-width: 200px; }
}
.kims-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
}
.kims-info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.kims-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.kims-info-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: var(--primary);
}
.kims-badge {
    padding: 6px 12px;
    background: rgba(0, 179, 122, 0.1);
    color: var(--accent);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.kims-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}
.kims-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 12px;
}
.kims-feature i {
    font-size: 1.5rem;
    color: var(--accent);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 179, 122, 0.1);
    border-radius: 10px;
}
.kims-feature strong {
    display: block;
    font-size: 0.95rem;
    color: var(--primary);
}
.kims-feature span {
    font-size: 0.8rem;
    color: var(--text-light);
}
.kims-image-block {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.kims-image-block img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
.kims-image-badges {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
}
.img-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(0, 179, 122, 0.95);
    color: var(--white);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Partners Section */
.partners-section {
    margin-top: 60px;
}
.partners-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.5rem;
    color: var(--primary);
}
.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}
.partner-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 50%;
}
.partner-logo img {
    max-width: 60px;
    max-height: 60px;
}
.partner-logo i {
    font-size: 2rem;
    color: var(--accent);
}
.partner-card h4 {
    margin: 0 0 10px;
    color: var(--primary);
}
.partner-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}
.partner-card a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.partner-card a:hover {
    color: var(--accent-hover);
}

/* Video Section amélioré */
.video-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.video-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.video-info {
    padding: 25px;
}
.video-info h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
    color: var(--primary);
}
.video-info p {
    margin: 0 0 15px;
    color: var(--text-light);
    font-size: 0.95rem;
}
.video-meta {
    display: flex;
    gap: 20px;
}
.video-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* CTA Section amélioré */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    overflow: hidden;
    color: var(--white);
    text-align: center;
}
.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}
.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 179, 122, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.08) 0%, transparent 40%);
}
.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
}
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.15);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}
.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.cta-section p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}
.btn-whatsapp:hover {
    background: var(--whatsapp-hover);
    color: var(--white);
}
.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Testimonials amélioré */
.testimonial-card.featured {
    border: 2px solid var(--accent);
    position: relative;
}
.testimonial-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    padding: 6px 14px;
    background: var(--accent);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}
.testimonial-stars i {
    color: var(--star);
    font-size: 1rem;
}
.testimonial-text {
    font-style: italic;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-end));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}
.testimonial-info h5 {
    margin: 0;
    color: var(--primary);
}
.testimonial-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--accent);
}
.testimonial-medical {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.testimonial-medical span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-light);
}
.testimonials-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.testimonials-cta p {
    margin-bottom: 15px;
    color: var(--text-light);
}

/* FAQ amélioré */
.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: var(--white);
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    transition: background 0.3s;
}
.faq-question:hover {
    background: var(--light-bg);
}
.faq-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: rgba(0, 179, 122, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}
.faq-text {
    flex: 1;
}
.faq-arrow {
    color: var(--accent);
    transition: transform 0.3s;
}
.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer {
    max-height: 800px;
}
.faq-answer-content {
    padding: 0 25px 25px 75px;
}
.faq-prices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}
.faq-price-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 10px;
}
.faq-price-card i {
    font-size: 1.3rem;
    color: var(--accent);
}
.faq-price-card strong {
    display: block;
    color: var(--primary);
}
.faq-price-card span {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
}
.faq-checklist {
    margin: 15px 0;
}
.faq-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.faq-check-item i {
    color: var(--accent);
}
.faq-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}
.faq-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--light-bg);
    border-radius: 8px;
}
.faq-feature-item i {
    color: var(--accent);
}
.faq-timeline {
    margin: 20px 0;
    padding-left: 20px;
    border-left: 3px solid var(--accent);
}
.faq-timeline-item {
    position: relative;
    padding: 15px 0 15px 25px;
}
.faq-timeline-dot {
    position: absolute;
    left: -32px;
    top: 20px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--white);
}
.faq-timeline-content strong {
    display: block;
    color: var(--primary);
    margin-bottom: 4px;
}
.faq-certifications {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 25px 0;
}
.faq-cert-card {
    text-align: center;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
}
.faq-cert-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 10px;
}
.faq-cert-card strong {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
}
.faq-cert-card span {
    font-size: 0.8rem;
    color: var(--text-light);
}
.faq-process {
    margin: 20px 0;
}
.faq-process-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.faq-process-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}
.faq-process-info strong {
    display: block;
    color: var(--primary);
    margin-bottom: 4px;
}
.faq-cta {
    text-align: center;
    margin-top: 50px;
}
.faq-cta p {
    margin-bottom: 15px;
    color: var(--text-light);
}
@media (max-width: 768px) {
    .faq-prices,
    .faq-features,
    .faq-certifications { grid-template-columns: 1fr; }
}

/* Responsive global */
@media (max-width: 992px) {
    .kims-featured { grid-template-columns: 1fr; }
    .intro-block { grid-template-columns: 1fr; }
    .process-step { grid-template-columns: 60px 1fr; }
    .process-number { width: 60px; height: 60px; font-size: 1.4rem; }
}
@media (max-width: 768px) {
    .hero-badge { font-size: 0.75rem; padding: 8px 14px; }
    .hero-subtitle { font-size: 1rem; }
    .btn-lg { padding: 14px 24px; font-size: 0.9rem; }
    .hero-trust { flex-wrap: wrap; gap: 15px; }
    .section-badge { font-size: 0.75rem; padding: 6px 12px; }
    .kims-info-card { padding: 25px; }
    .kims-features { grid-template-columns: 1fr; }
    .process-step { grid-template-columns: 1fr; text-align: center; }
    .process-number { margin: 0 auto; }
    .cta-section h2 { font-size: 1.8rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-features { flex-direction: column; align-items: center; }
}
@media (max-width: 576px) {
    .faq-question { padding: 15px 20px; font-size: 0.9rem; }
    .faq-answer-content { padding: 0 20px 20px; }
}

/* ===== UTILITY CLASSES (Couleurs) ===== */
.c-accent { color: var(--accent); }
.c-primary { color: var(--primary); }
.c-white { color: var(--white); }
.c-text { color: var(--text); }
.c-text-light { color: var(--text-light); }
.c-text-muted { color: var(--text-muted); }
.c-danger { color: var(--danger); }
.c-muted { color: var(--muted); }
.c-gold { color: var(--gold); }
.bg-accent { background-color: var(--accent); }
.bg-primary { background-color: var(--primary); }
.bg-whatsapp { background-color: var(--whatsapp); }
.bg-success { background-color: var(--success); }
.bg-danger { background-color: var(--danger); }
.border-accent { border-color: var(--accent); }

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.lightbox-overlay.active {
    display: flex;
}
.lightbox-overlay img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    object-fit: contain;
}
.lightbox-close {
    position: absolute;
    top: 20px; right: 30px;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s;
    background: none;
    border: none;
    line-height: 1;
}
.lightbox-close:hover { color: var(--accent); }
.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1rem;
    background: rgba(0,0,0,0.6);
    padding: 8px 20px;
    border-radius: 20px;
    white-space: nowrap;
}
