/* ==========================================================
   AFRIKA MOBILITÉ ASSURANCES — STYLE PRINCIPAL
   Couleurs du logo : Bleu Royal · Vert · Orange
   ========================================================== */

/* ===== VARIABLES ===== */
:root {
    /* Couleurs principales du logo */
    --primary:        #1E40AF;   /* Bleu royal AFRIKA */
    --primary-dark:   #1E3A8A;
    --primary-light:  #3B82F6;
    --primary-pale:   #DBEAFE;

    --secondary:      #16A34A;   /* Vert */
    --secondary-dark: #15803D;
    --secondary-light:#22C55E;

    --accent:         #F97316;   /* Orange */
    --accent-dark:    #EA580C;
    --accent-light:   #FB923C;

    /* Échelle de gris */
    --white:    #FFFFFF;
    --gray-50:  #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Typographie */
    --font-heading: 'Poppins', -apple-system, sans-serif;
    --font-body:    'Inter', -apple-system, sans-serif;

    /* Layout */
    --container:   1200px;
    --radius-sm:   6px;
    --radius:      12px;
    --radius-lg:   16px;
    --radius-xl:   24px;

    /* Ombres */
    --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
    --shadow:     0 4px 12px rgba(30,64,175,0.10);
    --shadow-lg:  0 12px 32px rgba(30,64,175,0.15);
    --shadow-xl:  0 20px 60px rgba(30,64,175,0.20);

    /* Transition */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.25;
    margin-bottom: 1rem;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
em { font-style: normal; color: var(--accent); }

/* ===== UTILITAIRES ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.section   { padding: 5rem 0; }
.text-center { text-align: center; }

.section-header { max-width: 760px; margin: 0 auto 3.5rem; }
.section-tag {
    display: inline-block;
    padding: 0.4rem 1.1rem;
    background: var(--primary-pale);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}
.section-title { margin-bottom: 1rem; }
.section-lead  { font-size: 1.125rem; color: var(--gray-600); }
.lead { font-size: 1.15rem; color: var(--gray-600); margin-bottom: 1.25rem; }

/* ===== BOUTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary {
    background: var(--primary);
    color: var(--white) !important;
}
.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-primary i { color: var(--white) !important; }

.btn-accent {
    background: var(--accent);
    color: var(--white) !important;
}
.btn-accent:hover {
    background: var(--accent-dark);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(249,115,22,0.30);
}
.btn-accent i { color: var(--white) !important; }
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-light {
    background: var(--white);
    color: var(--primary);
}
.btn-light:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-lg { padding: 1.05rem 2.25rem; font-size: 1rem; }

/* ===== HEADER ===== */
.topbar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 0.55rem 0;
    font-size: 0.85rem;
}
.topbar-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.topbar-info { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar-info a { color: var(--white); display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar-info a:hover { color: var(--accent-light); }
.topbar-actions { display: flex; gap: 1rem; align-items: center; }
.lang-switch a {
    color: rgba(255,255,255,0.7);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}
.lang-switch a.active, .lang-switch a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}

.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}
.header-row { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; gap: 2rem; }
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo img { height: 55px; width: auto; }
.logo-text { font-family: var(--font-heading); font-weight: 800; color: var(--primary); line-height: 1.1; }
.logo-text strong { display: block; font-size: 1.2rem; }
.logo-text small { font-size: 0.75rem; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; }

.nav-main { display: flex; align-items: center; gap: 2rem; }
.nav-main > ul { display: flex; gap: 1.75rem; }
.nav-main a {
    color: var(--gray-700);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}
.nav-main a:hover, .nav-main a.active { color: var(--primary); }
/* Le bouton "Devis gratuit" du header garde sa couleur blanche */
.nav-main a.btn,
.nav-main a.btn:hover,
.nav-main a.btn i,
.nav-main a.btn:hover i {
    color: var(--white) !important;
    padding: 0.9rem 1.8rem;
}
.nav-main a.btn i { padding: 0; }
.nav-main a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

.nav-toggle { display: none; font-size: 1.5rem; color: var(--primary); }

/* ===== HERO / SLIDER ===== */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    overflow: hidden;
    padding: 4rem 0;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(249,115,22,0.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(34,197,94,0.18) 0%, transparent 50%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 39.5h40M39.5 0v40' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { color: var(--accent-light); }
.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.92);
    max-width: 620px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.hero-feature { display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; }
.hero-feature i { color: var(--accent-light); font-size: 1.2rem; }

/* ===== PAGE BANNER ===== */
.page-banner {
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
}
.banner-content { position: relative; z-index: 2; }
.banner-tag {
    display: inline-block;
    padding: 0.4rem 1.25rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}
.page-banner h1 { color: var(--white); margin-bottom: 1rem; }
.breadcrumb { display: inline-flex; align-items: center; gap: 0.6rem; color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.breadcrumb a { color: var(--white); }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb i { font-size: 0.7rem; }

/* ===== STATS ===== */
.stats-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 3.5rem 0;
    color: var(--white);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stat-item { padding: 1rem; }
.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--accent-light);
    backdrop-filter: blur(10px);
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
    display: inline-block;
}
.stat-suffix { font-size: 2rem; font-weight: 800; color: var(--accent-light); }
.stat-label { margin-top: 0.5rem; opacity: 0.9; font-size: 0.95rem; }

/* ===== ABOUT GRID ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image { position: relative; }
.about-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.experience-badge strong { display: block; font-size: 2rem; font-family: var(--font-heading); line-height: 1; }
.experience-badge span { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}
.about-feature { display: flex; align-items: center; gap: 0.6rem; }
.about-feature i { color: var(--secondary); font-size: 1.1rem; }

/* ===== SERVICES BLOCKS ===== */
.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-block-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.service-block-image img { width: 100%; height: 420px; object-fit: cover; }
.featured-tag {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: var(--shadow);
}

.service-badge {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    background: var(--secondary);
    color: var(--white);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.service-icon-large {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}
.service-features { margin-top: 1.5rem; }
.service-features li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.5rem 0;
    color: var(--gray-700);
}
.service-features li i {
    color: var(--secondary);
    margin-top: 0.3rem;
    flex-shrink: 0;
}

/* ===== PRODUCTS GRID (cards) ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--primary-pale); }
.product-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.product-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(30,64,175,0.6) 100%);
}
.product-card-icon {
    position: absolute;
    bottom: -25px;
    left: 1.5rem;
    width: 55px;
    height: 55px;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow);
    z-index: 2;
}
.product-card-body { padding: 2.25rem 1.75rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.product-card-body h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--primary); }
.product-card-body p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 1.25rem; flex: 1; }
.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}
.product-card-link:hover { color: var(--primary); gap: 0.7rem; }

/* ===== MVV CARDS ===== */
.mvv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.mvv-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary-pale); }
.mvv-icon {
    width: 80px; height: 80px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
}
.mvv-card:nth-child(2) .mvv-icon { background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%); }
.mvv-card:nth-child(3) .mvv-icon { background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%); }
.mvv-card h3 { color: var(--primary); margin-bottom: 0.75rem; }

/* ===== PARTNERS ===== */
.partners-section { background: var(--gray-50); }
.partners-subtitle {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 3rem 0 1.5rem;
    position: relative;
}
.partners-subtitle::before, .partners-subtitle::after {
    content: '';
    display: inline-block;
    width: 50px;
    height: 2px;
    background: var(--accent);
    vertical-align: middle;
    margin: 0 1rem;
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}
.partner-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.partner-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.partner-card.coming-soon { opacity: 0.85; }
.partner-card.coming-soon::after {
    content: attr(data-soon);
    position: absolute;
    top: 12px;
    right: -32px;
    background: var(--accent);
    color: var(--white);
    padding: 0.25rem 2.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transform: rotate(45deg);
}
.partner-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.partner-logo img { max-height: 70px; max-width: 180px; object-fit: contain; }
.partner-card h3 { font-size: 1.15rem; color: var(--primary); margin-bottom: 0.5rem; }
.partner-card .partner-tag {
    display: inline-block;
    background: var(--primary-pale);
    color: var(--primary);
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.partner-card p { font-size: 0.9rem; color: var(--gray-600); }
.partner-detail-list { text-align: left; margin-top: 1rem; font-size: 0.88rem; }
.partner-detail-list li { padding: 0.4rem 0; display: flex; gap: 0.5rem; }
.partner-detail-list strong { color: var(--gray-800); }

/* ===== PARALLAX ===== */
.parallax-banner {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}
.parallax-content h2 { color: var(--white); margin-bottom: 1rem; }
.parallax-content p { font-size: 1.15rem; margin-bottom: 2rem; opacity: 0.95; max-width: 700px; margin-left: auto; margin-right: auto; }

/* ===== TESTIMONIALS ===== */
.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.temoignage-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent);
    position: relative;
}
.temoignage-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: var(--primary-pale);
    font-family: Georgia, serif;
    line-height: 1;
}
.temoignage-stars { color: var(--accent); margin-bottom: 1rem; }
.temoignage-content { font-style: italic; color: var(--gray-700); margin-bottom: 1.5rem; }
.temoignage-author { display: flex; align-items: center; gap: 1rem; }
.temoignage-avatar {
    width: 55px; height: 55px;
    border-radius: 50%;
    background: var(--gray-200);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    flex-shrink: 0;
}
.temoignage-avatar img { width: 100%; height: 100%; object-fit: cover; }
.temoignage-name { font-weight: 700; color: var(--gray-900); }
.temoignage-role { font-size: 0.85rem; color: var(--gray-500); }

/* ===== PROCESS ===== */
.process-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    position: relative;
}
.process-step {
    text-align: center;
    padding: 2rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid var(--gray-200);
}
.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px; height: 40px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: var(--shadow);
}
.step-icon {
    width: 70px; height: 70px;
    margin: 1rem auto;
    background: var(--primary-pale);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}
.process-step h4 { color: var(--primary); }
.process-step p { font-size: 0.9rem; color: var(--gray-600); margin-top: 0.5rem; }

/* ===== CTA SECTION ===== */
.cta-section { background: var(--gray-50); }
.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4rem 3rem;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(249,115,22,0.20), transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(34,197,94,0.20), transparent 50%);
}
.cta-box > * { position: relative; z-index: 2; }
.cta-box h2 { color: var(--white); margin-bottom: 1rem; }
.cta-box p { font-size: 1.15rem; margin-bottom: 2rem; opacity: 0.95; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ===== CONTACT FORM ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; }
.contact-info { background: var(--gray-50); padding: 2.5rem; border-radius: var(--radius-lg); }
.contact-info h3 { color: var(--primary); margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-icon {
    width: 50px; height: 50px;
    background: var(--white);
    color: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.contact-item h4 { font-size: 0.95rem; color: var(--gray-900); margin-bottom: 0.25rem; }
.contact-item p, .contact-item a { font-size: 0.95rem; color: var(--gray-700); }

.contact-form, .form-card { background: var(--white); padding: 2.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.4rem; color: var(--gray-700); font-size: 0.9rem; }
.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-pale); }
textarea.form-control { min-height: 140px; resize: vertical; }

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 4rem 0 0;
    margin-top: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}
.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}
.footer-col p { color: var(--gray-400); font-size: 0.9rem; line-height: 1.7; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { color: var(--gray-400); font-size: 0.9rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--accent-light); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 0.75rem; margin-bottom: 1rem; align-items: flex-start; font-size: 0.9rem; }
.footer-contact-item i { color: var(--accent); margin-top: 0.25rem; }

.footer-logo { height: 60px; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); transform: translateY(-3px); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.85rem;
}
.footer-bottom p { margin: 0.25rem 0; }
.footer-bottom .agrement { color: var(--accent-light); font-size: 0.8rem; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px; height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
    z-index: 999;
    animation: pulse 2s infinite;
}
.whatsapp-float:hover { background: #128C7E; color: white; transform: scale(1.1); }
@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 8px 32px rgba(37,211,102,0.7); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-grid, .service-block, .service-block.reverse, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .service-block.reverse { direction: ltr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero { min-height: auto; padding: 3rem 0; }
    .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .section { padding: 3rem 0; }
    .nav-toggle { display: block; }
    .nav-main { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 1.25rem; box-shadow: var(--shadow); }
    .nav-main.show { display: flex; }
    .nav-main > ul { flex-direction: column; gap: 0.5rem; width: 100%; }
    .nav-main a { padding: 0.75rem; border-bottom: 1px solid var(--gray-100); }
    .topbar-info { font-size: 0.8rem; gap: 1rem; }
    .topbar-actions { width: 100%; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-buttons, .cta-buttons { flex-direction: column; }
    .hero-buttons .btn, .cta-buttons .btn { width: 100%; justify-content: center; }
    .cta-box { padding: 2.5rem 1.5rem; }
    .experience-badge { right: 10px; bottom: 10px; padding: 0.85rem 1rem; }
    .experience-badge strong { font-size: 1.5rem; }
}

/* ===== SLIDER SWIPER ===== */
.hero-slider { position: relative; }
.heroSwiper {
    width: 100%;
    height: 88vh;
    min-height: 580px;
    max-height: 760px;
}
.heroSwiper .swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.heroSwiper .swiper-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 39.5h40M39.5 0v40' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E");
    pointer-events: none;
}
.slide-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 2rem 0;
}
.slide-content.slide-center { margin: 0 auto; text-align: center; }
.slide-content.slide-right  { margin-left: auto; text-align: right; }
.slide-content h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.75rem);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}
.slide-content h1 em { color: var(--accent-light); font-style: normal; }
.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.95);
    max-width: 640px;
}
.slide-content.slide-center p { margin-left: auto; margin-right: auto; }
.slide-content.slide-right p { margin-left: auto; }
.slide-content .hero-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}
.slide-content .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.slide-content.slide-center .hero-buttons { justify-content: center; }
.slide-content.slide-right .hero-buttons { justify-content: flex-end; }

/* Pagination Swiper */
.heroSwiper .swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
    transition: var(--transition);
}
.heroSwiper .swiper-pagination-bullet-active {
    background: var(--accent);
    width: 36px;
    border-radius: 6px;
}

/* Flèches Swiper */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    color: var(--white);
    background: rgba(0,0,0,0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}
.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
    background: var(--accent);
}
.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
    font-size: 1.25rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .heroSwiper { height: 75vh; min-height: 480px; }
    .heroSwiper .swiper-button-next, .heroSwiper .swiper-button-prev { display: none; }
    .slide-content.slide-right, .slide-content.slide-center { text-align: left; margin: 0; }
    .slide-content.slide-right .hero-buttons, .slide-content.slide-center .hero-buttons { justify-content: flex-start; }
}
