@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --congo-red: #DC241F;
    --congo-yellow: #FBCD17;
    --congo-green: #009543;
    --text-dark: #1E293B;
    --text-light: #64748B;
    --background-light: #F8FAFC;
    --white: #FFFFFF;
    --border-color: #E2E8F0;
    --gradient-primary: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    --gradient-secondary: linear-gradient(135deg, var(--congo-yellow) 0%, #F59E0B 100%);
    --gradient-accent: linear-gradient(135deg, var(--congo-red) 0%, #EF4444 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    margin: 0;
    padding: 0;
    overscroll-behavior: none;
}

.highlight {
    color: var(--congo-yellow);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Typewriter animation */
.typewriter {
    overflow: hidden;
    border-right: 3px solid var(--congo-yellow);
    white-space: nowrap;
    margin: 0 auto;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--congo-yellow) }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    overscroll-behavior: none;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: none;
    padding: 0.75rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: none;
}

.header-overlay {
    background: transparent;
}

.header-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.header-scrolled nav ul li a {
    color: var(--text-dark) !important;
    text-shadow: none !important;
}

.header-scrolled .logo span {
    color: var(--text-dark) !important;
    text-shadow: none !important;
}

.header-scrolled nav ul li a:hover {
    background: rgba(37, 99, 235, 0.1) !important;
    color: var(--primary-blue) !important;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    height: 50px;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
    background-color: white;
    border-radius: 4px;
    padding: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--congo-yellow);
}

.cta-button, .cta-button-outline {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-button {
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-lg);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right,
        rgba(248, 250, 252, 0.92) 0%,
        rgba(248, 250, 252, 0.95) 25%,
        rgba(248, 250, 252, 0.95) 75%,
        rgba(248, 250, 252, 0.92) 100%
    );
    backdrop-filter: blur(3px);
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    right: 0;
    bottom: 0;
    background: var(--gradient-secondary);
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.cta-button .arrow {
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translateX(4px);
}

.cta-button-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button-outline span {
    color: white !important;
}

.cta-button-outline:hover {
    border-color: #2563EB;
    color: #2563EB;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

main {
    max-width: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

section {
    padding: 6rem 0;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    padding: 0;
    padding-top: 5rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/HERO.PARIS.NNP.png');
    background-size: cover;
    background-position: center 60%;
    background-repeat: no-repeat;
    filter: blur(2px);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 0;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.hero-tricolor {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right,
        var(--congo-green) 0%,
        var(--congo-yellow) 50%,
        var(--congo-red) 100%
    );
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 700px;
    padding: 2rem 0;
    overflow: visible;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: white;
    letter-spacing: -0.01em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    max-width: 100%;
    word-wrap: break-word;
}

h1 .highlight {
    color: var(--congo-yellow);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 550px;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-left: 0.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-align: center;
    max-width: 320px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
    /* ➕ AJOUT */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.98);
}

.card-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    object-fit: contain;
    display: block;
    background-color: white;
    border-radius: 8px;
    padding: 8px;
    border: 2px solid #e0e0e0;
    /* ➕ AJOUT */
    margin-left: auto;
    margin-right: auto;
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}


/* Stats Section */
.stats {
    background: var(--white);
    padding: 4rem 0;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 3rem 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 149, 67, 0.1), transparent);
    transition: left 0.5s;
}

.stat-item:hover::before {
    left: 100%;
}

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

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2563EB;
    display: inline;
    line-height: 1;
}

.stat-plus, .stat-unit {
    font-size: 1.5rem;
    color: var(--congo-red);
    font-weight: 600;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
    margin-top: 0.5rem;
    display: block;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--congo-green);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 149, 67, 0.3);
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.faq h2 {
    color: var(--congo-yellow);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.contact-section h2 {
    color: var(--congo-green);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
    font-size: 1.1rem;
    color: white;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

/* Services Section */
.services {
    position: relative;
    background: transparent;
    padding: 6rem 0;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./assets/HERO.PARIS.NNP.png');
    background-size: cover;
    background-position: center 60%;
    background-repeat: no-repeat;
    filter: blur(2px);
    z-index: -1;
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 0;
}

.services .section-header,
.services .service-grid {
    position: relative;
    z-index: 1;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-item {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-premium {
    background: linear-gradient(135deg, #2563EB 0%, var(--congo-yellow) 100%);
    color: var(--white);
}

.service-premium .service-content h3,
.service-premium .service-content p {
    color: var(--white);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-details {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem 0;
}

.service-details li {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    padding-left: 0;
    font-weight: 500;
}

.service-details li::before {
    content: '✓';
    color: #10B981;
    font-weight: 600;
    margin-right: 0.5rem;
}

.service-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--background-light);
    color: #2563EB;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.feature-tag.premium {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, var(--background-light) 0%, rgba(248, 250, 252, 0.8) 100%);
    padding: 6rem 0;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="80" cy="40" r="1" fill="%23e2e8f0" opacity="0.2"/><circle cx="40" cy="80" r="1" fill="%23e2e8f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--congo-green) 0%, var(--congo-yellow) 50%, var(--congo-red) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.active::before {
    opacity: 1;
}

.faq-item:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px) scale(1.01);
    background: rgba(255, 255, 255, 0.98);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.faq-question h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
    flex: 1;
    padding-right: 1.5rem;
    letter-spacing: -0.01em;
}

.faq-toggle {
    font-size: 1.8rem;
    font-weight: 300;
    color: #2563EB;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: rgba(37, 99, 235, 0.15);
    color: #1D4ED8;
}

.faq-answer {
    padding: 0 2.5rem 2rem 2.5rem;
    display: none;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    margin-top: 0.5rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.faq-answer li {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.faq-answer li::before {
    content: '✓';
    color: #10B981;
    font-weight: 600;
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

@keyframes slideDown {
    from { 
        opacity: 0; 
        transform: translateY(-20px);
        max-height: 0;
    }
    to { 
        opacity: 1; 
        transform: translateY(0);
        max-height: 500px;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--background-light) 100%);
    padding: 6rem 0;
    position: relative;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.whatsapp-btn, .map-link {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.map-link {
    background: var(--gradient-primary);
}

.whatsapp-btn:hover, .map-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.submit-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    margin-top: 6rem;
}

.footer-main {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 0.8rem 0;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 1.5rem 0;
    font-size: 1rem;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-btn:hover {
    background: var(--congo-yellow);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-section h4 {
    color: var(--congo-yellow);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    border-bottom: 2px solid var(--congo-yellow);
    padding-bottom: 0.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--congo-yellow);
}

.contact-item .icon {
    font-size: 1.3rem;
    width: 30px;
    text-align: center;
    margin-top: 0.2rem;
}

.contact-item strong {
    color: var(--congo-yellow);
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
    font-size: 0.95rem;
}

.service-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-links a:hover {
    color: var(--congo-yellow);
    padding-left: 1rem;
    border-bottom-color: var(--congo-yellow);
}

.hours-info {
    margin-bottom: 2rem;
}

.hours-box,
.emergency-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.2rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--congo-green);
}

.emergency-info {
    border-left-color: var(--congo-red);
}

.hours-box strong,
.emergency-info strong {
    color: var(--congo-yellow);
    display: block;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.hours-box p,
.emergency-info p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.4rem 0;
}

.footer-links a:hover {
    color: var(--congo-yellow);
    padding-left: 0.8rem;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-tricolor {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right,
        var(--congo-green) 0%,
        var(--congo-yellow) 50%,
        var(--congo-red) 100%
    );
    margin: 0 auto 1rem auto;
    border-radius: 2px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

/* Navigation mobile hamburger */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-nav {
        display: none;
    }
    
    /* Hero section mobile */
    .hero {
        padding-top: 3rem;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        white-space: normal;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
        padding: 0 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
        width: 100%;
    }
    
    .cta-button, .cta-button-outline {
        width: 100%;
        max-width: none;
        text-align: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        margin: 0;
    }
    
    .hero-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .service-card {
        max-width: 280px;
        width: 100%;
        margin: 0 auto;
        padding: 1.25rem;
    }
    
    /* Services section mobile */
    .services {
        padding: 3rem 0;
    }
    
    .services-container {
        padding: 0 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .service-item {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    /* Stats section mobile */
    .stats {
        padding: 2rem 0;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .stat-item {
        padding: 1rem 0.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    /* FAQ section mobile */
    .faq {
        padding: 3rem 0;
    }
    
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-item {
        margin-bottom: 0.75rem;
    }
    
    .faq-item h3 {
        font-size: 0.95rem;
        padding: 0.875rem;
    }
    
    .faq-item p {
        padding: 0 0.875rem 0.875rem;
        font-size: 0.85rem;
    }
    
    /* Contact section mobile */
    .contact {
        padding: 3rem 0;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
        margin: 0 1rem;
        border-radius: 8px;
    }
    
    .contact-form h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-item {
        text-align: left;
        padding: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-social {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .footer-social .social-btn {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
}

/* Bouton WhatsApp flottant */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s infinite;
}

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

.whatsapp-float-btn svg {
    width: 28px;
    height: 28px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 480px) {
    /* Header mobile très petit écran */
    .logo span {
        font-size: 0.9rem;
    }
    
    .logo-img {
        width: 32px;
        height: 32px;
    }
    
    /* Hero section très petit écran */
    .hero {
        padding-top: 2.5rem;
        min-height: 100vh;
    }
    
    .hero-container {
        padding: 0 0.75rem;
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.05;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
        padding: 0 0.25rem;
    }
    
    .hero-buttons {
        gap: 0.5rem;
    }
    
    .cta-button, .cta-button-outline {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .service-card {
        padding: 1rem 0.75rem;
        max-width: 260px;
    }
    
    .card-logo {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card p {
        font-size: 0.8rem;
    }
    
    /* Stats section très petit écran */
    .stats-container {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0 0.75rem;
    }
    
    .stat-item {
        padding: 0.75rem 0.5rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Services section très petit écran */
    .services-container {
        padding: 0 0.75rem;
    }
    
    .services-grid {
        gap: 1rem;
    }
    
    .service-item {
        padding: 1.25rem 0.75rem;
        margin: 0 0.25rem;
    }
    
    .service-item h3 {
        font-size: 1rem;
    }
    
    .service-item p {
        font-size: 0.8rem;
    }
    
    /* FAQ section très petit écran */
    .faq-container {
        padding: 0 0.75rem;
    }
    
    .faq-item h3 {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
    
    .faq-item p {
        padding: 0 0.75rem 0.75rem;
        font-size: 0.8rem;
    }
    
    /* Contact section très petit écran */
    .contact-form {
        margin: 0 0.75rem;
        padding: 1.25rem 0.75rem;
    }
    
    .contact-form h2 {
        font-size: 1.3rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 0.85rem;
        padding: 0.625rem;
    }
    
    /* Footer très petit écran */
    .footer-content {
        padding: 0 0.75rem;
        gap: 1.25rem;
    }
    
    .footer-section h4 {
        font-size: 0.95rem;
    }
    
    .contact-item {
        padding: 0.625rem;
        font-size: 0.85rem;
    }
    
    .footer-social .social-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    /* WhatsApp button très petit écran */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float-btn {
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-float-btn svg {
        width: 20px;
        height: 20px;
    }
}
