/* ============================================================
   BRAVO SERVICES — Main Stylesheet
   Theme: Professional Light | Fonts: Poppins + Plus Jakarta Sans
   ============================================================ */

:root {
    --primary: #1B4FB0;
    --primary-dark: #123a87;
    --primary-light: #e8eef9;
    --accent: #F5A623;
    --accent-dark: #d48c0e;
    --white: #ffffff;
    --gray-50: #f8f9fc;
    --gray-100: #f0f2f8;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-900: #0f172a;
    --text: #1e293b;
    --text-muted: #64748b;
    --whatsapp: #25D366;
    --shadow-sm: 0 2px 8px rgba(27,79,176,0.08);
    --shadow-md: 0 8px 24px rgba(27,79,176,0.12);
    --shadow-lg: 0 20px 60px rgba(27,79,176,0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
/* Tous les titres utilisent Poppins Bold (700) — exigence client */
h1, h2, h3, h4, h5, h6,
.slide-title, .section-header h2, .footer-title,
.service-card-title, .sv-hero-title, .sv-section-title {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    line-height: 1.2;
    color: var(--gray-900);
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-muted); }

/* ── Container ── */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Section Styles ── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    margin: 16px auto 0;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(27,79,176,0.3);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(27,79,176,0.4);
}
.btn-accent {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(245,166,35,0.3);
}
.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white);
    color: var(--primary);
}
.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
}
.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}

/* ── Top Bar ── */
.topbar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    padding: 9px 0;
    font-weight: 500;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.topbar-left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar a {
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.topbar a:hover { color: var(--accent); }
.topbar-admin {
    background: rgba(255,255,255,0.1);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.78rem;
}

/* ── Navbar ── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.navbar.scrolled {
    box-shadow: var(--shadow-md);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 24px;
}
.nav-brand img { height: 56px; width: auto; }
.nav-logo { display: block; height: 56px; width: auto; }

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
    background: var(--primary-light);
    color: var(--primary);
}
.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 250px;
    padding: 8px;
    border: 1px solid var(--gray-200);
    z-index: 200;
    /* Transition fluide au lieu de display:none/block */
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    /* Délai de fermeture : le menu reste ouvert un court instant après que la souris quitte */
    transition-delay: 0s;
    pointer-events: none;
}
/* Petit pont invisible pour éviter le gap entre le nav-link et le dropdown */
.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px;
}
.has-dropdown:hover .dropdown,
.has-dropdown.drop-open .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
    transition-delay: 0s;
}
/* Délai de fermeture : attend 300ms avant de fermer */
.has-dropdown .dropdown {
    /* Délai de fermeture : 500ms — menu reste ouvert plus longtemps */
    transition: opacity 0.25s ease 0.5s, transform 0.25s ease 0.5s, visibility 0s ease 0.5s;
}
.has-dropdown:hover .dropdown,
.has-dropdown.drop-open .dropdown {
    /* Ouverture immédiate */
    transition: opacity 0.22s ease 0s, transform 0.22s ease 0s, visibility 0s ease 0s;
}
.dropdown li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
}
.dropdown li a:hover {
    background: var(--primary-light);
    color: var(--primary);
    padding-left: 18px;
}
.dropdown li a i { width: 20px; color: var(--primary); flex-shrink: 0; }

.btn-whatsapp-nav {
    background: var(--whatsapp);
    color: white !important;
    padding: 9px 18px;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-whatsapp-nav:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
}
.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

/* ── Hero / Rev Slider ── */
.hero-slider { position: relative; height: 100vh; min-height: 580px; max-height: 900px; }
.swiper { width: 100%; height: 100%; }
.swiper-slide { position: relative; overflow: hidden; }
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 8s ease;
}
.swiper-slide-active .slide-bg { transform: scale(1); }
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27,79,176,0.88) 0%, rgba(18,58,135,0.75) 50%, rgba(245,166,35,0.25) 100%);
}
.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}
.slide-content .container { padding-top: 40px; }
.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,166,35,0.2);
    border: 1px solid rgba(245,166,35,0.4);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.slide-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    max-width: 700px;
    line-height: 1.15;
}
.slide-title span { color: var(--accent); }
.slide-desc {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.7;
}
.slide-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.swiper-pagination-bullet { background: white; opacity: 0.5; width: 10px; height: 10px; }
.swiper-pagination-bullet-active { opacity: 1; background: var(--accent); width: 28px; border-radius: 5px; }
.swiper-button-next, .swiper-button-prev {
    color: white;
    background: rgba(255,255,255,0.15);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--accent);
    border-color: var(--accent);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 16px; }

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}
.scroll-indicator i { font-size: 1.2rem; }
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Stats Bar ── */
.stats-bar {
    background: var(--white);
    padding: 0;
    position: relative;
    z-index: 2;
}
.stats-bar-inner {
    background: var(--primary);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 40px 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat-item {
    text-align: center;
    padding: 16px;
    border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-number span { color: var(--accent); }
.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

/* ── About Section ── */
.about-section { background: var(--gray-50); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image-wrap {
    position: relative;
}
.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    background: var(--gray-200);
}
.about-image-main img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: white;
    border-radius: var(--radius);
    padding: 20px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.about-badge .num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    display: block;
}
.about-badge .lbl { font-size: 0.78rem; font-weight: 600; opacity: 0.9; }
.about-content .section-tag { margin-bottom: 16px; }
.about-content h2 { margin-bottom: 20px; }
.about-content > p { margin-bottom: 16px; }
.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}
.value-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}
.value-item i {
    color: var(--primary);
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.value-item h5 { font-size: 0.9rem; margin-bottom: 4px; }
.value-item p { font-size: 0.82rem; }
.about-ceo {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--primary-light);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    margin-top: 24px;
}
.ceo-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    overflow: hidden;
}
.ceo-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ceo-name { font-weight: 700; font-size: 0.95rem; color: var(--gray-900); }
.ceo-title { font-size: 0.82rem; color: var(--primary); font-weight: 500; }

/* ── Services Section ── */
.services-section { background: var(--white); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.service-card-image {
    height: 200px;
    background: var(--gray-100);
    overflow: hidden;
    position: relative;
}
.service-card-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-card-image img { transform: scale(1.08); }
.service-card-image-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    font-size: 3rem;
    color: rgba(255,255,255,0.5);
}
.service-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
}
.service-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-icon-wrap {
    width: 52px;
    height: 52px;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 16px;
    transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
    background: var(--primary);
    color: white;
}
.service-card-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card-body p { font-size: 0.9rem; flex: 1; margin-bottom: 20px; }
.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}
.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.service-link:hover { gap: 10px; }
.service-form-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--gray-100);
    color: var(--gray-600);
}

/* ── Process Section ── */
.process-section { background: var(--gray-50); }
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 0;
}
.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.process-num {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.process-step:hover .process-num {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; }

/* ── Testimonials ── */
.testimonials-section { background: var(--primary); }
.testimonials-section .section-header h2 { color: white; }
.testimonials-section .section-tag {
    background: rgba(255,255,255,0.15);
    color: var(--accent);
}
.testimonials-section .accent-line { background: linear-gradient(90deg, var(--accent), var(--white)); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}
.testimonial-card:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-4px);
}
.testimonial-stars { color: var(--accent); margin-bottom: 16px; font-size: 0.9rem; }
.testimonial-text {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    overflow: hidden;
    flex-shrink: 0;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { color: white; font-weight: 700; font-size: 0.95rem; }
.author-company { color: rgba(255,255,255,0.6); font-size: 0.82rem; }

/* ── CTA Section ── */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #2563eb 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-inner h2 { color: white; margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 40px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Forms ── */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}
.form-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.form-subtitle { font-size: 0.9rem; margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}
.form-label .req { color: #e53e3e; margin-left: 2px; }
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27,79,176,0.1);
}
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; margin-top: 8px; }
.form-success, .form-error {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 0.9rem;
    display: none;
}
.form-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.form-error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }

/* ════════════════════════════════════════════════════════════
   CONTACT PAGE — Layout & info card
   ════════════════════════════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 40px;
    align-items: start;
}

/* ── Info card (colonne gauche) ── */
.contact-info-card {
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 60%, #1a4eb5 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,166,35,0.18), transparent 70%);
    pointer-events: none;
}
.contact-info-card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
    pointer-events: none;
}
.contact-info-card h3 {
    color: #fff !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.4rem;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}
.contact-info-card > p {
    color: rgba(255,255,255,0.78);
    font-size: 0.93rem;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    z-index: 1;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}
.contact-info-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(245,166,35,0.4);
    transform: translateX(4px);
}
.contact-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), #ffc568);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.05rem;
    box-shadow: 0 4px 12px rgba(245,166,35,0.35);
}
.contact-info-text { flex: 1; min-width: 0; }
.contact-info-text .label {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent);
    margin-bottom: 4px;
}
.contact-info-text p,
.contact-info-text a {
    color: #fff;
    font-size: 0.92rem;
    line-height: 1.55;
    word-break: break-word;
    text-decoration: none;
    transition: color 0.25s ease;
    margin: 0;
}
.contact-info-text a:hover { color: var(--accent); }

/* ── Alertes ── */
.alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 18px;
    font-weight: 500;
    font-size: 0.92rem;
    border: 1px solid transparent;
}
.alert i { font-size: 1.15rem; flex-shrink: 0; }
.alert-success {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}
.alert-success i { color: #16a34a; }
.alert-error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}
.alert-error i { color: #dc2626; }

/* ════════════════════════════════════════════════════════════
   FAQ — Accordion
   ════════════════════════════════════════════════════════════ */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}
.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}
.faq-item.open {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--gray-900);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.25s ease;
}
.faq-question:hover { color: var(--primary); }
.faq-question i {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}
.faq-item.open .faq-question i {
    background: var(--primary);
    color: #fff;
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer {
    max-height: 500px;
}
.faq-answer p {
    padding: 0 24px 22px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ── Page Hero ── */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; text-align: center; }
.page-hero h1 { color: white; margin-bottom: 12px; }
.page-hero .lead { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 560px; margin: 0 auto 24px; }
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); font-weight: 600; }

/* ═══════════════════════════════════════════════════════
   SERVICE PAGE — Nouvelle mise en page (style référence)
   ═══════════════════════════════════════════════════════ */

/* Hero service 2 colonnes */

/* ================================================================
   PAGES SERVICE — CSS complet v5
   ================================================================ */

/* ── HERO ── */
.sv-hero {
    background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 60%, #1a6aaa 100%);
    padding: 110px 0 0;
    position: relative;
    overflow: hidden;
}
.sv-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 65% 80% at 75% 50%, rgba(245,166,35,.13) 0%, transparent 60%);
    pointer-events: none;
}
.sv-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}
.sv-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 20px;
}
.sv-breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.sv-breadcrumb a:hover { color: var(--accent); }
.sv-breadcrumb i { font-size: .55rem; }
.sv-breadcrumb span { color: var(--accent); font-weight: 600; }

.sv-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,166,35,.18);
    border: 1px solid rgba(245,166,35,.4);
    color: var(--accent);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 18px;
}
.sv-hero-text h1 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 16px;
    line-height: 1.15;
}
.sv-hero-text h1 strong { color: var(--accent); }
.sv-lead {
    color: rgba(255,255,255,.82);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 26px;
    max-width: 480px;
}
.sv-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}
.sv-perk {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.92);
    font-size: .83rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 100px;
    backdrop-filter: blur(4px);
    transition: background .2s;
}
.sv-perk:hover { background: rgba(255,255,255,.18); }
.sv-perk i { color: var(--accent); font-size: .8rem; }
.sv-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Image hero */
.sv-hero-img-col {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.sv-hero-img-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
}
.sv-hero-img-wrap img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    display: block;
    box-shadow: 0 -20px 60px rgba(0,0,0,.25), 0 0 0 5px rgba(255,255,255,.1);
    transition: transform .5s ease;
}
.sv-hero-img-wrap:hover img { transform: scale(1.02); }
.sv-badge {
    position: absolute;
    bottom: 24px;
    right: -18px;
    background: var(--accent);
    color: var(--primary-dark);
    font-family: var(--font-display);
    font-weight: 800;
    padding: 16px 22px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(245,166,35,.5);
    min-width: 95px;
    line-height: 1.2;
    animation: svBadgePop .7s 1s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes svBadgePop {
    from { opacity:0; transform: scale(.5) rotate(-8deg); }
    to   { opacity:1; transform: scale(1) rotate(0); }
}
.sv-badge-num { font-size: 1.9rem; display: block; line-height: 1; }
.sv-badge-lbl { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; opacity: .85; margin-top: 3px; display: block; }

/* Vague de transition */
.sv-wave {
    position: relative;
    margin-bottom: -2px;
    line-height: 0;
}
.sv-wave svg { width: 100%; height: 72px; }

/* ── ÉTAPES ── */
.sv-steps-section { background: #fff; }
.sv-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 20px;
}
.sv-step {
    text-align: center;
    padding: 0 16px 32px;
    position: relative;
}
.sv-step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 5rem;
    color: var(--primary);
    opacity: .07;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
}
.sv-step-icon-wrap {
    position: relative;
    z-index: 2;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    font-size: 1.5rem;
    color: var(--primary);
}
.sv-step:hover .sv-step-icon-wrap {
    background: var(--primary);
    color: #fff;
    transform: scale(1.08);
}
.sv-step-connector {
    position: absolute;
    top: 76px;
    left: calc(50% + 40px);
    right: calc(-50% + 40px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 1;
    opacity: .3;
}
.sv-step h4 { font-size: .95rem; margin-bottom: 8px; color: var(--gray-900); }
.sv-step p  { font-size: .83rem; line-height: 1.65; }

/* ── PRESTATIONS ── */
.sv-prest-section { background: var(--gray-50); }
.sv-prest-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}
.sv-prest-block {
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid var(--gray-200);
    overflow: hidden;
    transition: box-shadow .3s, border-color .3s;
}
.sv-prest-block:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(27,79,176,.2);
}
/* Bloc pleine largeur si seul ou si "Impression & Photocopie" */
.sv-prest-block:only-child,
.sv-prest-block.full-width { grid-column: 1 / -1; }

.sv-prest-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    border-bottom: 1.5px solid var(--gray-100);
    background: linear-gradient(90deg, var(--primary-light) 0%, #fff 100%);
}
.sv-prest-ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}
.sv-prest-head h3 { font-size: 1rem; font-weight: 700; margin: 0 0 2px; color: var(--gray-900); }
.sv-prest-head span { font-size: .75rem; color: var(--text-muted); }
.sv-prest-badge-count {
    margin-left: auto;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: .75rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Corps pills */
.sv-prest-body { padding: 18px 22px; }
.sv-pills { display: flex; flex-wrap: wrap; gap: 9px; }
.sv-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    color: var(--gray-700);
    font-size: .83rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 100px;
    transition: all .2s ease;
    cursor: default;
}
.sv-pill:hover { background: var(--primary-light); border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.sv-pill i { font-size: .68rem; color: var(--accent); }

/* Corps liste avec point */
.sv-item-list { display: flex; flex-direction: column; gap: 0; }
.sv-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 8px;
    border-radius: 8px;
    transition: background .2s;
    cursor: default;
}
.sv-item:hover { background: var(--gray-50); }
.sv-item-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    flex-shrink: 0;
    margin-top: 1px;
    transition: background .2s, color .2s;
}
.sv-item:hover .sv-item-dot { background: var(--primary); color: #fff; }
.sv-item > div strong { display: block; font-size: .9rem; font-weight: 700; color: var(--gray-900); margin-bottom: 2px; }
.sv-item > div span { font-size: .8rem; color: var(--text-muted); line-height: 1.5; }

/* CTA prestations */
.sv-prest-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 14px;
    border: 1.5px dashed var(--gray-300);
    padding: 24px 28px;
    margin-top: 8px;
}
.sv-prest-cta strong { display: block; font-size: .95rem; margin-bottom: 4px; color: var(--gray-900); }
.sv-prest-cta p { font-size: .85rem; margin: 0; }

/* ── ATOUTS ── */
.sv-atouts-section { background: #fff; }
.sv-atouts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.sv-atouts-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.sv-atouts-img-wrap img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.sv-atouts-img-wrap:hover img { transform: scale(1.04); }
.sv-atouts-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--primary);
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: .9rem;
    box-shadow: var(--shadow-md);
}
.sv-atouts-overlay i { font-size: 1.2rem; color: var(--accent); }
.sv-atouts-list { display: flex; flex-direction: column; gap: 18px; }
.sv-atout {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1.5px solid var(--gray-100);
    background: var(--gray-50);
    transition: all .25s ease;
}
.sv-atout:hover { border-color: var(--primary); background: var(--primary-light); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.sv-atout-ico {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.sv-atout h4 { font-size: .93rem; margin-bottom: 4px; color: var(--gray-900); }
.sv-atout p  { font-size: .82rem; margin: 0; }

/* ── DEVIS ── */
.sv-devis-section { background: var(--gray-50); }
.sv-devis-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
}
.sv-devis-info h2 { line-height: 1.2; }
.sv-ccontacts { display: flex; flex-direction: column; gap: 12px; }
.sv-ccontact {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 12px;
    border: 1.5px solid var(--gray-200);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}
.sv-ccontact:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.sv-ccontact-ico {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.sv-ccontact > div strong { display: block; font-size: .88rem; color: var(--gray-900); margin-bottom: 2px; }
.sv-ccontact > div span  { font-size: .78rem; color: var(--text-muted); }

/* Formulaire carte */
.sv-form-col { position: sticky; top: 100px; }
.sv-form-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.sv-form-head {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 20px 28px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sv-form-sub {
    padding: 12px 28px 0;
    font-size: .82rem;
    color: var(--text-muted);
}
.sv-form-card form { padding: 18px 28px 0; }
.sv-frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sv-submit { width: 100%; justify-content: center; margin-top: 4px; }
.sv-form-note { text-align: center; font-size: .72rem; color: var(--text-muted); margin-top: 8px; padding-bottom: 0; }
.sv-form-wa {
    border-top: 1px solid var(--gray-100);
    padding: 16px 28px 24px;
    text-align: center;
}
.sv-form-wa span { display: block; font-size: .78rem; color: var(--text-muted); margin-bottom: 10px; }

/* ── FAQ ── */
.sv-faq-section { background: var(--gray-50); }

/* ── CTA FINALE ── */
.sv-final-cta { padding: 60px 0; background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.sv-final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    background: rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 40px 48px;
    border: 1px solid rgba(255,255,255,.15);
}
.sv-final-text h2 { color: #fff; margin-bottom: 8px; font-size: clamp(1.4rem,3vw,2rem); }
.sv-final-text p  { color: rgba(255,255,255,.8); margin: 0; }
.sv-final-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ================================================================
   RESPONSIVE PAGES SERVICE
   ================================================================ */
@media (max-width: 1100px) {
    .sv-devis-grid { grid-template-columns: 1fr; }
    .sv-form-col { position: static; }
}
@media (max-width: 960px) {
    .sv-hero-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 0; }
    .sv-hero-img-col { justify-content: center; }
    .sv-hero-img-wrap { max-width: 100%; }
    .sv-hero-img-wrap img { height: 320px; border-radius: 16px; }
    .sv-badge { right: 0; }
    .sv-steps { grid-template-columns: repeat(2, 1fr); }
    .sv-step-connector { display: none; }
    .sv-prest-wrapper { grid-template-columns: 1fr; }
    .sv-atouts-grid { grid-template-columns: 1fr; gap: 40px; }
    .sv-atouts-img-wrap img { height: 300px; }
    .sv-final-cta-inner { flex-direction: column; text-align: center; padding: 32px 24px; }
    .sv-final-btns { justify-content: center; }
}
@media (max-width: 640px) {
    .sv-hero { padding: 90px 0 0; }
    .sv-hero-img-wrap img { height: 240px; }
    .sv-hero-btns { flex-direction: column; }
    .sv-hero-btns .btn { justify-content: center; }
    .sv-steps { grid-template-columns: 1fr; }
    .sv-step-number { font-size: 3.5rem; }
    .sv-frow { grid-template-columns: 1fr; }
    .sv-form-head { padding: 16px 20px; font-size: .95rem; }
    .sv-form-card form { padding: 14px 20px 0; }
    .sv-form-wa { padding: 14px 20px 20px; }
    .sv-prest-cta { flex-direction: column; text-align: center; }
    .sv-atouts-overlay { display: none; }
}


/* ════════════════════════════════════════════════════════════
   FOOTER — Premium dark blue design
   ════════════════════════════════════════════════════════════ */
.footer {
    position: relative;
    background:
        radial-gradient(1200px 600px at 85% 0%, rgba(245,166,35,0.10), transparent 60%),
        radial-gradient(900px 500px at 10% 100%, rgba(27,79,176,0.55), transparent 60%),
        linear-gradient(160deg, #0a1f4d 0%, #0d2a66 45%, #102f73 100%);
    color: #e2e8f0;
    overflow: hidden;
    isolation: isolate;
}
/* Subtle decorative top accent line */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
    z-index: 2;
}
/* Decorative grid pattern overlay */
.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
}

.footer-top {
    padding: 80px 0 56px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 48px;
}

.footer-col h4,
.footer-col h5 {
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.05rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #ffc568);
    border-radius: 2px;
}
.footer-col h5 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    padding-bottom: 0;
    text-transform: none;
    letter-spacing: 0;
}
.footer-col h5::after { display: none; }
.footer-col h5 i { color: var(--accent); margin-right: 6px; }

/* ── Brand col ── */
.footer-brand img {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
    background: rgba(255,255,255,0.95);
    padding: 10px 14px;
    border-radius: 12px;
}
.footer-brand p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 320px;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #0a1f4d;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245,166,35,0.35);
}
.footer-social a[aria-label="WhatsApp"]:hover {
    background: var(--whatsapp);
    border-color: var(--whatsapp);
    color: white;
    box-shadow: 0 8px 20px rgba(37,211,102,0.35);
}

/* Legal info */
.footer-legal {
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-legal small {
    color: #94a3b8;
    font-size: 0.78rem;
    line-height: 1.8;
    display: inline-block;
}

/* ── Footer links ── */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #cbd5e1;
    font-size: 0.93rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    padding: 4px 0;
}
.footer-links a i {
    font-size: 0.7rem;
    color: var(--accent);
    transition: transform 0.25s ease;
}
.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}
.footer-links a:hover i {
    transform: translateX(2px);
}

/* ── Contact list ── */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #cbd5e1;
    font-size: 0.92rem;
    line-height: 1.6;
}
.footer-contact-list li i {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(245,166,35,0.12);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    border: 1px solid rgba(245,166,35,0.18);
}
.footer-contact-list li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.25s ease;
    word-break: break-word;
}
.footer-contact-list li a:hover {
    color: var(--accent);
}
.footer-contact-list li span {
    padding-top: 6px;
}

/* Footer hours */
.footer-hours {
    margin-top: 24px;
    padding: 16px 18px;
    background: rgba(255,255,255,0.04);
    border-left: 3px solid var(--accent);
    border-radius: 0 10px 10px 0;
}
.footer-hours p {
    color: #cbd5e1;
    font-size: 0.88rem;
    margin: 4px 0;
    line-height: 1.5;
}

/* ── Footer bottom ── */
.footer-bottom {
    background: rgba(0,0,0,0.25);
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 1;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.footer-bottom p {
    color: #94a3b8;
    font-size: 0.85rem;
    margin: 0;
}
.footer-bottom p i {
    margin: 0 4px;
}

/* ── WhatsApp floating button ── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    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.45);
    z-index: 998;
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--whatsapp);
    opacity: 0.6;
    animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    70% { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(1.3); opacity: 0; }
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(37,211,102,0.55);
}
.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%);
    background: #0a1f4d;
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #0a1f4d;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── Back to top ── */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 32px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--primary);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(27,79,176,0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 997;
    font-size: 1rem;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(27,79,176,0.5);
}


/* ════════════════════════════════════════════════════════════
   ADMIN PANEL — Dashboard, sidebar, tables, forms
   ════════════════════════════════════════════════════════════ */

/* Reset body for admin pages (no topbar/navbar) */
body:has(.admin-layout) {
    background: var(--gray-50);
    line-height: 1.6;
}

.admin-layout {
    display: flex;
    min-height: 100vh;
    background: var(--gray-50);
}

/* ── Sidebar ── */
.admin-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #0a1f4d 0%, #0d2a66 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}
.admin-sidebar::-webkit-scrollbar { width: 6px; }
.admin-sidebar::-webkit-scrollbar-track { background: transparent; }
.admin-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 3px; }

.admin-sidebar-header {
    padding: 28px 24px 22px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-sidebar-header img {
    max-width: 140px;
    height: auto;
    background: rgba(255,255,255,0.95);
    padding: 8px 12px;
    border-radius: 10px;
    margin: 0 auto;
    display: block;
}

/* Sidebar nav */
.admin-nav {
    flex: 1;
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.admin-nav-section {
    padding: 18px 24px 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.4);
}
.admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 24px;
    color: rgba(255,255,255,0.78);
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}
.admin-nav a i {
    width: 18px;
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s ease;
}
.admin-nav a:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
}
.admin-nav a:hover i { color: var(--accent); }
.admin-nav a.active {
    background: rgba(245,166,35,0.12);
    color: #fff;
    border-left-color: var(--accent);
}
.admin-nav a.active i { color: var(--accent); }

/* ── Main content area ── */
.admin-main {
    flex: 1;
    min-width: 0;
    padding: 0;
    background: var(--gray-50);
}
.admin-content,
.admin-main > * {
    padding: 28px 36px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    background: #fff;
    padding: 22px 36px !important;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 0;
}
.admin-header h1 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.5rem !important;
    margin: 0;
    color: var(--gray-900);
}

/* ── Stats grid ── */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}
.admin-stat-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.25s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.admin-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}
.admin-stat-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(27,79,176,0.25);
}
.admin-stat-card:nth-child(2) .admin-stat-icon { background: linear-gradient(135deg, var(--accent), #d48c0e); box-shadow: 0 4px 12px rgba(245,166,35,0.3); }
.admin-stat-card:nth-child(3) .admin-stat-icon { background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 4px 12px rgba(16,185,129,0.3); }
.admin-stat-card:nth-child(4) .admin-stat-icon { background: linear-gradient(135deg, #8b5cf6, #6d28d9); box-shadow: 0 4px 12px rgba(139,92,246,0.3); }

.admin-stat-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.7rem;
    color: var(--gray-900);
    line-height: 1.1;
}
.admin-stat-lbl {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ── Cards ── */
.admin-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.admin-card-header {
    padding: 18px 24px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
}
.admin-card-header h2,
.admin-card-header h3,
.admin-card-header h4 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    margin: 0;
    color: var(--gray-900);
}
.admin-card-body {
    padding: 24px;
}

/* ── Tables ── */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}
.admin-table thead {
    background: var(--gray-50);
}
.admin-table th {
    text-align: left;
    padding: 14px 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--gray-200);
}
.admin-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--text);
    vertical-align: middle;
}
.admin-table tbody tr {
    transition: background 0.15s ease;
}
.admin-table tbody tr:hover {
    background: var(--gray-50);
}
.admin-table tbody tr:last-child td {
    border-bottom: none;
}
.admin-table img {
    border-radius: 8px;
    object-fit: cover;
}

/* Status badges in tables */
.admin-table .badge,
.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.status-nouveau, .badge-new { background: #dbeafe; color: #1e40af; }
.status-en-cours, .badge-pending { background: #fef3c7; color: #92400e; }
.status-traite, .badge-success, .status-actif { background: #d1fae5; color: #065f46; }
.status-annule, .badge-error, .status-inactif { background: #fee2e2; color: #991b1b; }

/* ── Action buttons in admin ── */
.admin-table .btn,
.admin-action-btn {
    padding: 6px 12px !important;
    font-size: 0.82rem !important;
    border-radius: 8px !important;
}

/* Admin form styling overrides */
.admin-card-body .form-group { margin-bottom: 18px; }
.admin-card-body .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
    display: block;
}
.admin-card-body .form-control,
.admin-card-body input[type="text"],
.admin-card-body input[type="email"],
.admin-card-body input[type="tel"],
.admin-card-body input[type="number"],
.admin-card-body input[type="password"],
.admin-card-body input[type="url"],
.admin-card-body select,
.admin-card-body textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.93rem;
    color: var(--text);
    background: #fff;
    transition: var(--transition);
    outline: none;
}
.admin-card-body .form-control:focus,
.admin-card-body input:focus,
.admin-card-body select:focus,
.admin-card-body textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27,79,176,0.1);
}
.admin-card-body textarea { min-height: 100px; resize: vertical; }

/* Empty state */
.admin-empty {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-muted);
}
.admin-empty i {
    font-size: 2.5rem;
    color: var(--gray-200);
    margin-bottom: 12px;
}


/* ── Responsive ── */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image-wrap { order: -1; max-width: 500px; margin: 0 auto; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
}

@media (max-width: 768px) {
    .topbar-left { gap: 16px; font-size: 0.78rem; }
    .nav-toggle { display: flex; }
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        z-index: 999;
        padding: 80px 24px 24px;
        overflow-y: auto;
    }
    .nav-menu.open { display: block; }
    .nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
    .nav-link { font-size: 1.1rem; padding: 14px 16px; }
    .dropdown {
        position: static;
        box-shadow: none;
        border: none;
        background: var(--gray-50);
        border-radius: var(--radius);
        margin-top: 4px;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: all;
        transition: none;
        display: none;
    }
    .has-dropdown.drop-open .dropdown { display: block; }
    .hero-slider { height: 70vh; min-height: 500px; }
    .stats-bar-inner { grid-template-columns: repeat(2, 1fr); border-radius: 0; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
    .stat-item:nth-child(2n) { border-bottom: 1px solid rgba(255,255,255,0.15); }
    .stat-item:nth-last-child(-n+2) { border-bottom: none; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-top { padding: 56px 0 36px; }
    .footer-bottom .container { flex-direction: column; text-align: center; gap: 8px; }
    .footer-brand p { max-width: 100%; }
    .whatsapp-float { width: 54px; height: 54px; bottom: 20px; right: 20px; font-size: 1.5rem; }
    .back-to-top { bottom: 86px; right: 24px; width: 42px; height: 42px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .admin-layout { flex-direction: column; }
    .admin-sidebar { width: 100%; height: auto; position: relative; }
    .admin-sidebar-header { padding: 16px; }
    .admin-nav { padding: 8px 0; }
    .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .admin-header { padding: 18px 20px !important; }
    .admin-content, .admin-main > * { padding: 20px; }
    .admin-table { font-size: 0.85rem; }
    .admin-table th, .admin-table td { padding: 10px 12px; }
    .section { padding: 64px 0; }
    .slide-actions { flex-direction: column; }
    /* Service hero responsive */
    .service-hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .service-hero-image { display: flex; justify-content: center; padding-bottom: 0; }
    .service-hero-img-wrap { max-width: 100%; border-radius: var(--radius-lg); }
    .service-hero-img-wrap img { height: 280px; }
    .service-hero-badge { right: 0; }
    .service-hero { padding: 90px 0 0; }
    .service-hero-text { padding-bottom: 20px; }
    .service-hero-perks { flex-wrap: wrap; gap: 8px; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .atouts-grid { grid-template-columns: repeat(2, 1fr); }
    .service-cta-banner { padding: 36px 24px; }
}

@media (max-width: 480px) {
    .stats-bar-inner { padding: 24px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .form-card { padding: 24px; }
    .admin-stats-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .atouts-grid { grid-template-columns: 1fr; }
    .prestation-cards-grid { grid-template-columns: 1fr; padding: 8px 12px 16px; }
    .prestation-block-head { padding: 16px 18px; }
    .prestation-pills { padding: 16px 18px; gap: 8px; }
    .prestation-cta { flex-direction: column; text-align: center; padding: 20px; }
}
