/* ============================================================
   CLINIQUE OQUIJA — Design system "premium"
   Palette : petrol teal + paper + gold accent
   Typo : Fraunces (display) / Inter (texte) / IBM Plex Mono (data)
   Signature : ligne de flux (rappel circulation / dialyse)
   ============================================================ */

:root {
    /* Couleurs */
    --ink: #1A1405;
    --ink-soft: #6E5E38;
    --ink-faint: #8C7C52;
    --paper: #FBF6E9;
    --surface: #FFFFFF;
    --teal-900: #2A2007;
    --teal-800: #3D2E0A;
    --teal-700: #B8860B;
    --teal-600: #D4A017;
    --teal-500: #C9971A;
    --teal-100: #F8F0DA;
    --teal-50: #FDF9EF;
    --gold-500: #C9974B;
    --gold-100: #F6ECDA;
    --line: #EFE6CC;
    --line-dark: #3D2E0A;
    --danger: #C8553D;

    /* Ombres */
    --shadow-sm: 0 1px 3px rgba(42, 32, 7, 0.07), 0 1px 2px rgba(42, 32, 7, 0.08);
    --shadow-md: 0 8px 20px -6px rgba(42, 32, 7, 0.16);
    --shadow-lg: 0 24px 48px -12px rgba(42, 32, 7, 0.22);
    --shadow-xl: 0 32px 64px -16px rgba(42, 32, 7, 0.3);

    /* Layout */
    --container-width: 1240px;
    --radius-sm: 6px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 999px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s var(--ease);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background-color: var(--paper);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea {
    font-family: inherit;
    font-size: 1rem;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typographie */
h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

h2 {
    font-size: clamp(2rem, 3.2vw, 2.75rem);
}

h3 {
    font-size: 1.3rem;
}

p {
    color: var(--ink-soft);
}

.lead {
    font-size: 1.1rem;
    color: var(--ink);
    font-weight: 500;
}

.eyebrow {
    display: inline-block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 8px;
}

.divider {
    width: 56px;
    height: 3px;
    background: var(--gold-500);
    border-radius: var(--radius-full);
    margin: 18px 0 22px;
}

.divider.center {
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    max-width: 640px;
    margin-bottom: 56px;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-description {
    font-size: 1.05rem;
    color: var(--ink-soft);
}

/* Accessibilité : lien d'évitement */
.skip-link {
    position: absolute;
    top: -100px;
    left: 12px;
    background: var(--teal-700);
    color: #fff;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    transition: top 0.2s ease;
    font-weight: 600;
}
.skip-link:focus {
    top: 12px;
}

:focus-visible {
    outline: 2px solid var(--teal-600);
    outline-offset: 3px;
}

/* Mouvement réduit */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* Grilles génériques */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.align-center { align-items: center; }
.gap-4 { gap: 64px; }

/* Boutons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}
.btn i {
    width: 18px;
    height: 18px;
}
.btn-lg {
    padding: 16px 30px;
    font-size: 1rem;
}
.btn-primary {
    background: var(--teal-700);
    color: #fff;
    box-shadow: var(--shadow-md);
}
.btn-primary:hover {
    background: var(--teal-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-ghost {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.45);
    backdrop-filter: blur(6px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.18);
    border-color: #fff;
}
.btn-block {
    width: 100%;
}
.btn-nav {
    padding: 10px 22px;
    font-size: 0.9rem;
}

/* Reveal au scroll */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* ============================================================
   1. Barre supérieure
   ============================================================ */
.top-bar {
    background: var(--teal-900);
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
}
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 24px;
    gap: 20px;
}
.top-info {
    display: flex;
    align-items: center;
    gap: 22px;
}
.top-info a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.top-info a:hover { color: #fff; }
.icon-small { width: 14px; height: 14px; }
.top-whatsapp {
    background: rgba(255,255,255,0.1);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-weight: 600;
}
.top-whatsapp:hover { background: rgba(255,255,255,0.2); }
.top-bar .lang-switch {
    border-color: rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.85);
}
.top-bar .lang-switch:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* ============================================================
   2. En-tête fixe
   ============================================================ */
.main-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(251, 246, 233, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.main-header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    border-bottom-color: var(--line);
    box-shadow: var(--shadow-sm);
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-img { height: 46px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-title {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--teal-800);
    letter-spacing: 0.02em;
}
.logo-subtitle {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-faint);
}
.logo-container.invert .logo-title { color: #fff; }
.logo-container.invert .logo-subtitle { color: rgba(255,255,255,0.6); }

.nav-menu { display: flex; align-items: center; gap: 36px; }
.nav-menu ul { display: flex; gap: 30px; }
.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--ink-soft);
    position: relative;
    padding: 4px 0;
    transition: var(--transition);
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--teal-600);
    transition: width 0.25s var(--ease);
}
.nav-link:hover { color: var(--teal-700); }
.nav-link:hover::after { width: 100%; }

.mobile-menu-toggle { display: none; z-index: 210; color: var(--ink); }
.nav-backdrop { display: none; }

/* ============================================================
   3. Hero plein écran
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.6s ease;
}
.hero-slide.active { opacity: 1; }
.hero-scrim {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(42,32,7,0.78) 0%, rgba(42,32,7,0.62) 45%, rgba(42,32,7,0.85) 100%);
}
.hero-wave {
    position: absolute;
    bottom: -2px; left: 0;
    width: 100%; height: 90px;
    fill: none;
    stroke: rgba(255,255,255,0.18);
    stroke-width: 2;
}
.hero-container { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 60px; }
.hero-content { max-width: 700px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(6px);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 26px;
}
.pulse-dot {
    width: 8px; height: 8px;
    background: #EBCB78;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(235,203,120,0.6);
    animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(235,203,120,0.55); }
    70% { box-shadow: 0 0 0 9px rgba(235,203,120,0); }
    100% { box-shadow: 0 0 0 0 rgba(235,203,120,0); }
}
.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.1rem);
    color: #fff;
    margin-bottom: 22px;
}
.hero-lead {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.86);
    max-width: 560px;
    margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    min-width: 130px;
}
.hero-stat-number {
    font-family: 'Fraunces', serif;
    font-size: 1.9rem;
    font-weight: 600;
}
.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.78);
    margin-top: 2px;
}
.hero-stat-chip {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.hero-stat-chip i { width: 20px; height: 20px; color: #EBCB78; }

.hero-scroll-cue {
    position: absolute;
    bottom: 28px; left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.75);
    z-index: 2;
    animation: bounceCue 2.2s infinite;
}
@keyframes bounceCue {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
}

/* ============================================================
   4. Pourquoi choisir OQUIJA ?
   ============================================================ */
.why-section { padding: 110px 0; background: var(--surface); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.why-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: var(--transition);
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    background: var(--surface);
}
.why-icon {
    width: 54px; height: 54px;
    display: flex; align-items: center; justify-content: center;
    background: var(--teal-100);
    color: var(--teal-700);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}
.why-icon i { width: 26px; height: 26px; }
.why-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.why-card p { font-size: 0.95rem; }

/* ============================================================
   5. Présentation
   ============================================================ */
.presentation-section { padding: 110px 0; background: var(--paper); }
.presentation-image { position: relative; }
.presentation-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.presentation-badge {
    position: absolute;
    bottom: -22px; left: 28px;
    background: var(--surface);
    padding: 14px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}
.presentation-badge i { color: var(--teal-600); width: 20px; height: 20px; }
.presentation-text h2 { margin-bottom: 0; }
.presentation-text .lead { margin-bottom: 14px; }
.presentation-text > p { margin-bottom: 18px; }

.pull-quote {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--teal-800);
    border-left: 3px solid var(--gold-500);
    padding: 4px 0 4px 22px;
    margin: 26px 0;
}
.pull-quote cite {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-style: normal;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-faint);
    margin-top: 10px;
}

.check-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--ink);
    font-weight: 500;
}
.check-list i { width: 19px; height: 19px; color: var(--teal-600); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   6. Nos équipements
   ============================================================ */
.equipment-section { padding: 110px 0; background: var(--surface); }
.equipment-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.equipment-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/5;
}
.equipment-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.equipment-card:hover img { transform: scale(1.07); }
.equipment-caption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 28px 24px 22px;
    background: linear-gradient(180deg, rgba(42,32,7,0) 0%, rgba(26,20,5,0.92) 85%);
    color: #fff;
}
.equipment-caption h3 { color: #fff; font-size: 1.1rem; margin-bottom: 6px; }
.equipment-caption p { color: rgba(255,255,255,0.82); font-size: 0.85rem; }

/* ============================================================
   7. Nos services
   ============================================================ */
.services-section { padding: 110px 0; background: var(--paper); }
.services-list {
    max-width: 920px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
}
.service-row {
    display: flex;
    align-items: flex-start;
    gap: 26px;
    padding: 30px 10px;
    border-bottom: 1px solid var(--line);
    transition: var(--transition);
}
.service-row:hover { background: var(--teal-50); }
.service-row-icon {
    width: 48px; height: 48px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--teal-700);
    border-radius: var(--radius-md);
}
.service-row-icon i { width: 22px; height: 22px; }
.service-row-text h3 { font-size: 1.1rem; margin-bottom: 6px; }
.service-row-text p { font-size: 0.95rem; }

/* ============================================================
   8. Galerie + Lightbox
   ============================================================ */
.gallery-section { padding: 110px 0; background: var(--surface); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 18px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    grid-column: span 1;
    grid-row: span 1;
}
.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item-tall { grid-row: span 2; }
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.gallery-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    gap: 8px;
    background: rgba(42,32,7,0.55);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.lightbox {
    position: fixed; inset: 0;
    background: rgba(18, 14, 4, 0.94);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}
.lightbox-caption {
    position: absolute;
    bottom: 28px; left: 0; right: 0;
    text-align: center;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
}
.lightbox-close {
    position: absolute; top: 24px; right: 28px;
    color: #fff;
    background: rgba(255,255,255,0.1);
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav {
    position: absolute; top: 50%;
    transform: translateY(-50%);
    color: #fff;
    background: rgba(255,255,255,0.1);
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ============================================================
   9. Témoignages
   ============================================================ */
.testimonials-section { padding: 110px 0; background: var(--teal-50); }
.testimonial-disclaimer { font-size: 0.85rem; font-style: italic; color: var(--ink-faint); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: var(--surface);
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
}
.quote-icon {
    width: 30px; height: 30px;
    color: var(--gold-500);
    opacity: 0.7;
    margin-bottom: 14px;
}
.testimonial-card p {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--ink);
    margin-bottom: 22px;
}
.testimonial-author { display: flex; flex-direction: column; }
.testimonial-name { font-weight: 600; font-size: 0.92rem; }
.testimonial-role { font-size: 0.8rem; color: var(--ink-faint); }

/* ============================================================
   10. Chiffres clés
   ============================================================ */
.stats-section {
    position: relative;
    background: var(--teal-900);
    padding: 90px 0;
    overflow: hidden;
}
.stats-wave {
    position: absolute;
    top: -1px; left: 0;
    width: 100%; height: 80px;
    fill: none;
    stroke: rgba(255,255,255,0.07);
    stroke-width: 2;
}
.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.stat-block {
    text-align: center;
    color: #fff;
    padding: 0 10px;
}
.stat-block-number {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #EBCB78;
    margin-bottom: 8px;
}
.stat-block-icon {
    width: 38px; height: 38px;
    color: #EBCB78;
    margin-bottom: 14px;
}
.stat-block-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.78);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
}

/* ============================================================
   11. FAQ
   ============================================================ */
.faq-section { padding: 110px 0; background: var(--surface); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--line);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 4px;
    text-align: left;
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
}
.faq-icon {
    width: 20px; height: 20px;
    color: var(--teal-600);
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(135deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
}
.faq-answer p { padding: 0 4px 24px; font-size: 0.97rem; max-width: 660px; }

/* ============================================================
   12. Contact
   ============================================================ */
.contact-section { padding: 110px 0; background: var(--paper); }

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
}
.contact-info-card {
    background-color: var(--teal-900);
    color: white;
    padding: 44px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
}
.contact-info-card h3 { color: #fff; margin-bottom: 10px; }
.contact-info-card > p { color: rgba(255,255,255,0.72); font-size: 0.95rem; margin-bottom: 30px; }

.contact-details-list { display: flex; flex-direction: column; gap: 22px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 16px; }
.detail-icon {
    width: 42px; height: 42px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    color: #EBCB78;
}
.detail-icon i { width: 19px; height: 19px; }
.detail-label {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.55);
    margin-bottom: 3px;
}
.detail-value { font-weight: 600; font-size: 1rem; }
.detail-value a:hover { color: #EBCB78; }

.quick-contact-row { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.quick-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(255,255,255,0.08);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
}
.quick-contact-link i { width: 13px; height: 13px; }
.quick-contact-link:hover { background: rgba(255,255,255,0.18); color: #fff; }

.footer-quick-links { display: flex; gap: 10px; margin-top: 16px; }
.footer-quick-links a {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    transition: var(--transition);
}
.footer-quick-links a:hover { background: var(--teal-700); color: #fff; }
.footer-quick-links i { width: 16px; height: 16px; }

.contact-map-card {
    margin-top: 24px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    line-height: 0;
}

.contact-form-wrapper {
    background: var(--surface);
    padding: 44px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.contact-form h3 { margin-bottom: 8px; }
.form-intro { font-size: 0.92rem; margin-bottom: 28px; }

.form-group-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}
.input-wrapper { position: relative; }
.input-icon {
    position: absolute;
    left: 16px; top: 50%;
    transform: translateY(-50%);
    width: 18px; height: 18px;
    color: var(--ink-faint);
    pointer-events: none;
}
.input-wrapper input {
    width: 100%;
    padding: 13px 16px 13px 44px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--paper);
    transition: var(--transition);
}
.textarea-wrapper textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--paper);
    resize: vertical;
    transition: var(--transition);
}
.input-wrapper input:focus,
.textarea-wrapper textarea:focus {
    outline: none;
    border-color: var(--teal-600);
    background: var(--surface);
    box-shadow: 0 0 0 4px rgba(184,134,11,0.1);
}
.form-group.has-error input,
.form-group.has-error textarea {
    border-color: var(--danger);
    background: #FBF1EE;
}
.field-error {
    display: block;
    min-height: 18px;
    font-size: 0.78rem;
    color: var(--danger);
    margin-top: 6px;
    font-weight: 500;
}
.form-status {
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
}
.form-status.success { background: var(--teal-100); color: var(--teal-800); }
.form-status.error { background: #FBF1EE; color: var(--danger); }
.form-status.hidden { display: none; }

/* ============================================================
   13. Pied de page
   ============================================================ */
.main-footer { background: var(--ink); color: rgba(255,255,255,0.7); }
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 50px;
    padding: 80px 24px 56px;
}
.footer-desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin: 18px 0 18px; max-width: 320px; }
.footer-manager-mention {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem;
    color: #EBCB78;
    font-weight: 600;
}
.footer-manager-mention i { width: 16px; height: 16px; }

.footer-links h4, .footer-hours h4, .footer-contact-info h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: #EBCB78; }

.footer-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-contact-info p {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 14px;
}
.footer-contact-info i { width: 16px; height: 16px; color: #EBCB78; flex-shrink: 0; }
.footer-contact-info a:hover { color: #EBCB78; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; }
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    flex-wrap: wrap;
    gap: 8px;
}

/* ============================================================
   Bouton WhatsApp flottant + Retour en haut
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px; left: 28px;
    width: 58px; height: 58px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 150;
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-ring {
    position: absolute; inset: -6px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: ringPulse 2.4s infinite;
}
@keyframes ringPulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.back-to-top {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 50px; height: 50px;
    background: var(--teal-700);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
    z-index: 150;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--teal-600); }

/* ============================================================
   Responsive — Tablette (<=1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .grid-2, .why-grid, .equipment-showcase, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .hide-tablet { display: none; }
    .gallery-grid { grid-auto-rows: 170px; }
    .gap-4 { gap: 40px; }
    .presentation-section .grid-2 { gap: 50px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
}

/* ============================================================
   Responsive — Mobile (<=768px)
   ============================================================ */
@media (max-width: 768px) {
    html { scroll-padding-top: 70px; }
    .top-bar .hide-mobile { display: none; }
    .top-bar-content { padding: 8px 16px; }
    .top-info { gap: 14px; }

    .container { padding: 0 18px; }

    .header-container { padding: 12px 18px; }
    .logo-img { height: 38px; }
    .logo-title { font-size: 1.1rem; }
    .logo-subtitle { font-size: 0.56rem; }

    .mobile-menu-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0; right: 0;
        height: 100vh;
        width: min(320px, 84vw);
        background: var(--surface);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 110px 32px 40px;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        z-index: 205;
        box-shadow: var(--shadow-xl);
    }
    .nav-menu.active { transform: translateX(0); }
    .nav-menu ul { flex-direction: column; gap: 4px; width: 100%; }
    .nav-menu ul li { width: 100%; opacity: 0; transform: translateX(16px); transition: opacity 0.35s ease, transform 0.35s ease; }
    .nav-menu.active ul li { opacity: 1; transform: translateX(0); }
    .nav-menu.active ul li:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu.active ul li:nth-child(2) { transition-delay: 0.1s; }
    .nav-menu.active ul li:nth-child(3) { transition-delay: 0.15s; }
    .nav-menu.active ul li:nth-child(4) { transition-delay: 0.2s; }
    .nav-menu.active ul li:nth-child(5) { transition-delay: 0.25s; }
    .nav-menu.active ul li:nth-child(6) { transition-delay: 0.3s; }
    .nav-link { display: block; padding: 14px 0; font-size: 1.05rem; border-bottom: 1px solid var(--line); width: 100%; }
    .btn-nav { margin-top: 24px; width: 100%; }
    .nav-backdrop {
        position: fixed; inset: 0;
        background: rgba(26,20,5,0.5);
        z-index: 204;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    .nav-backdrop.active { opacity: 1; visibility: visible; }

    .hero-content h1 { font-size: clamp(2.1rem, 8vw, 2.6rem); }
    .hero-lead { font-size: 1rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-stats { grid-template-columns: 1fr 1fr; display: grid; }
    .hero-scroll-cue { display: none; }

    .why-section, .presentation-section, .equipment-section,
    .services-section, .gallery-section, .testimonials-section,
    .faq-section, .contact-section { padding: 70px 0; }

    .why-grid, .equipment-showcase, .testimonials-grid, .stats-grid { grid-template-columns: 1fr; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .gap-4 { gap: 32px; }

    .presentation-image img { height: 320px; }
    .presentation-badge { left: 16px; bottom: -18px; padding: 10px 16px; font-size: 0.8rem; }

    .service-row { padding: 22px 0; gap: 18px; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
    .gallery-item:nth-child(1) { grid-column: span 2; }
    .gallery-item-tall { grid-row: span 1; }

    .stat-block-number { font-size: 2.3rem; }

    .contact-info-card, .contact-form-wrapper { padding: 28px 24px; }
    .form-group-grid { grid-template-columns: 1fr; gap: 0; }

    .footer-top { grid-template-columns: 1fr; padding: 60px 18px 40px; gap: 36px; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
.footer-bottom-links a { text-decoration: underline; transition: var(--transition); }
.footer-bottom-links a:hover { color: #EBCB78; }

    .whatsapp-float { width: 52px; height: 52px; bottom: 20px; left: 20px; }
    .back-to-top { width: 44px; height: 44px; bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    h2 { font-size: 1.7rem; }
}

/* ============================================================
   Version arabe — Ajustements RTL (lecture droite-à-gauche)
   ============================================================ */
html[dir="rtl"] body {
    font-family: 'Cairo', sans-serif;
}
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4 {
    font-family: 'Amiri', serif;
    font-weight: 700;
}
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .logo-subtitle,
html[dir="rtl"] .detail-label,
html[dir="rtl"] .footer-links h4,
html[dir="rtl"] .footer-hours h4,
html[dir="rtl"] .footer-contact-info h4,
html[dir="rtl"] .stat-block-label {
    font-family: 'Cairo', sans-serif;
    letter-spacing: 0;
}
html[dir="rtl"] .pull-quote cite {
    font-family: 'Cairo', sans-serif;
}

/* Éléments positionnés physiquement à inverser */
html[dir="rtl"] .skip-link { left: auto; right: 12px; }
html[dir="rtl"] .presentation-badge { left: auto; right: 28px; }
html[dir="rtl"] .pull-quote { border-left: none; border-right: 3px solid var(--gold-500); padding-left: 0; padding-right: 22px; }
html[dir="rtl"] .whatsapp-float { left: auto; right: 28px; }
html[dir="rtl"] .back-to-top { right: auto; left: 28px; }
html[dir="rtl"] .input-icon { left: auto; right: 16px; }
html[dir="rtl"] .input-wrapper input { padding-left: 16px; padding-right: 44px; }
html[dir="rtl"] .lang-switch i { transform: scaleX(-1); }

@media (max-width: 768px) {
    html[dir="rtl"] .whatsapp-float { right: 20px; }
    html[dir="rtl"] .back-to-top { left: 20px; }
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-soft);
    border: 1px solid var(--line);
    padding: 7px 14px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    margin-right: 6px;
}
.lang-switch:hover { background: var(--teal-100); color: var(--teal-700); }
.lang-switch i { width: 15px; height: 15px; }
