/* ======================================
   CENTRAL TAXI - Style Sheet
   Transport Médicalisé Conventionné CPAM
   ====================================== */

/* --- CSS CUSTOM PROPERTIES --- */
:root {
    --primary: #1e3a5f;
    --primary-dark: #152c4a;
    --primary-light: #2a5080;
    --secondary: #14b8a6;
    --secondary-dark: #0d9488;
    --secondary-light: #2dd4bf;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --accent-light: #fbbf24;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-subtle: #f1f5f9;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --container: 1200px;
    --header-height: 80px;
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.45);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.25);
}

.btn--lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* --- SECTION HEADERS --- */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(30, 58, 95, 0.08));
    border: 1px solid rgba(20, 184, 166, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-dark);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.section-tag i {
    font-size: 0.8rem;
}

.section-tag--light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--secondary-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title--light {
    color: #fff;
}

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

.section-subtitle--light {
    color: rgba(255, 255, 255, 0.75);
}

/* ======================================
   HEADER
   ====================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: var(--transition);
}

.header--scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.header__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.header__logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.25);
}

.header__logo-text {
    display: flex;
    flex-direction: column;
}

.header__logo-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.header__logo-tagline {
    font-size: 0.7rem;
    color: var(--secondary);
    font-weight: 500;
    letter-spacing: 0.03em;
}

.header__nav {
    display: flex;
    align-items: center;
}

.header__nav-list {
    display: flex;
    gap: 8px;
}

.header__nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-medium);
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
}

.header__nav-link:hover,
.header__nav-link.active {
    color: var(--primary);
    background: rgba(30, 58, 95, 0.05);
}

.header__nav-link.active {
    font-weight: 600;
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    z-index: 10;
}

.header__phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.header__phone i {
    font-size: 0.85rem;
    animation: phone-ring 2s ease-in-out infinite;
}

@keyframes phone-ring {

    0%,
    100% {
        transform: rotate(0deg);
    }

    15% {
        transform: rotate(15deg);
    }

    30% {
        transform: rotate(-10deg);
    }

    45% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(5deg);
    }
}

.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 10;
}

.header__hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.header__hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.header__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* --- MOBILE NAV --- */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(30, 58, 95, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.mobile-nav__link {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    padding: 8px 24px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.mobile-nav__link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-light);
}

.mobile-nav__phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

/* ======================================
   HERO
   ====================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
    background: linear-gradient(165deg, var(--bg-white) 0%, var(--bg-light) 40%, rgba(20, 184, 166, 0.03) 100%);
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero__gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.hero__gradient-orb--1 {
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.15), transparent);
    animation: float-orb 8s ease-in-out infinite;
}

.hero__gradient-orb--2 {
    bottom: -10%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.1), transparent);
    animation: float-orb 10s ease-in-out infinite reverse;
}

.hero__gradient-orb--3 {
    top: 40%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08), transparent);
    animation: float-orb 12s ease-in-out infinite 2s;
}

@keyframes float-orb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-15px, 15px) scale(0.95);
    }
}

.hero__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(20, 184, 166, 0.05));
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-dark);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.hero__badge i {
    color: var(--secondary);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero__title-highlight {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 540px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero__trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

.hero__trust-item i {
    color: var(--secondary);
    font-size: 1rem;
}

.hero__image {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.hero__image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero__image-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.hero__image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow);
}

.hero__image-badge i {
    color: var(--accent);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ======================================
   SERVICES
   ====================================== */
.services {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

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

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--border);
    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.service-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-card--featured {
    border-color: rgba(245, 158, 11, 0.2);
    background: linear-gradient(165deg, var(--bg-white), rgba(245, 158, 11, 0.02));
}

.service-card--featured:hover {
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.12);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(30, 58, 95, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: var(--secondary);
    transition: var(--transition);
}

.service-card:hover .service-card__icon {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: #fff;
    transform: scale(1.08);
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card__title small {
    display: block;
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 2px;
}

.service-card__text {
    font-size: 0.92rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-card__tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-subtle);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ======================================
   CTA BAND
   ====================================== */
.cta-band {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.15), transparent);
    border-radius: 50%;
}

.cta-band__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    z-index: 2;
}

.cta-band__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
}

.cta-band__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-top: 4px;
}

/* ======================================
   ZONES
   ====================================== */
.zones {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.zones__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Map Illustration */
.zones__map-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.zones__map-header {
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.zones__map-header i {
    color: var(--secondary-light);
}

.zones__map-visual {
    padding: 24px;
    min-height: 320px;
}

.map-illustration {
    position: relative;
    width: 100%;
    height: 300px;
    background: linear-gradient(180deg, rgba(30, 58, 95, 0.02), rgba(20, 184, 166, 0.05));
    border-radius: var(--radius);
    overflow: hidden;
}

.map-illustration__center {
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
}

.map-illustration__pin {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.map-illustration__pin--home i {
    font-size: 1.8rem;
    color: var(--accent);
    filter: drop-shadow(0 2px 6px rgba(245, 158, 11, 0.4));
}

.map-illustration__pin-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary);
    background: #fff;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.map-illustration__ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(20, 184, 166, 0.2);
    border-radius: 50%;
    animation: pulse-ring 3s ease-in-out infinite;
}

.map-illustration__ring--1 {
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.map-illustration__ring--2 {
    width: 200px;
    height: 200px;
    animation-delay: 0.5s;
}

.map-illustration__ring--3 {
    width: 300px;
    height: 300px;
    animation-delay: 1s;
}

@keyframes pulse-ring {

    0%,
    100% {
        opacity: 0.3;
        border-color: rgba(20, 184, 166, 0.15);
    }

    50% {
        opacity: 1;
        border-color: rgba(20, 184, 166, 0.35);
    }
}

.map-illustration__dot {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    z-index: 3;
    transition: var(--transition);
    cursor: default;
}

.map-illustration__dot:hover {
    transform: scale(1.15);
}

.map-illustration__dot i {
    font-size: 1.2rem;
    color: var(--primary);
    filter: drop-shadow(0 1px 3px rgba(30, 58, 95, 0.2));
}

.map-illustration__dot span {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--text-medium);
    background: rgba(255, 255, 255, 0.8);
    padding: 1px 6px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.zones__map-footer {
    padding: 14px 24px;
    background: rgba(20, 184, 166, 0.05);
    border-top: 1px solid var(--border-light);
}

.zones__map-footer p {
    font-size: 0.82rem;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 8px;
}

.zones__map-footer i {
    color: var(--secondary);
}

/* Hospitals */
.zones__hospitals-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.zones__hospitals-grid {
    display: grid;
    gap: 12px;
}

.hospital-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.hospital-card:hover {
    background: var(--bg-white);
    border-color: var(--secondary);
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.hospital-card__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(30, 58, 95, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.hospital-card__info h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
}

.hospital-card__time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--secondary-dark);
    font-weight: 500;
    margin-top: 2px;
}

.zones__coverage {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.06), rgba(30, 58, 95, 0.04));
    border: 1px solid rgba(20, 184, 166, 0.15);
    border-radius: var(--radius);
}

.zones__coverage i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.zones__coverage p {
    font-size: 0.9rem;
    color: var(--text-medium);
}

/* ======================================
   WHY US
   ====================================== */
.why {
    padding: 100px 0;
    background: linear-gradient(165deg, var(--primary-dark), var(--primary));
    position: relative;
    overflow: hidden;
}

.why::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(20, 184, 166, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.06) 0%, transparent 50%);
}

.why__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.why__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.why-card {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-6px);
}

.why-card__number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.06);
    position: absolute;
    top: 16px;
    right: 20px;
    line-height: 1;
}

.why-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.why-card__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.why-card__text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* ======================================
   FOOTER
   ====================================== */
.footer {
    background: #0c1e33;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

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

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 72px 0 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer__logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.footer__logo-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.1;
}

.footer__logo-tagline {
    font-size: 0.7rem;
    color: var(--secondary-light);
    font-weight: 500;
}

.footer__logo-text {
    display: flex;
    flex-direction: column;
}

.footer__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.footer__heading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
}

.footer__contact-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.footer__contact-list li a:hover {
    color: var(--secondary-light);
}

.footer__contact-list i {
    color: var(--secondary);
    width: 18px;
    text-align: center;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer__contact-list small {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.78rem;
    margin-top: 2px;
}

.footer__link-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__link-list a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer__link-list a::before {
    content: '›';
    color: var(--secondary);
    font-weight: 700;
}

.footer__link-list a:hover {
    color: var(--secondary-light);
    padding-left: 4px;
}

.footer__badge {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(20, 184, 166, 0.08);
    border: 1px solid rgba(20, 184, 166, 0.15);
    border-radius: var(--radius);
}

.footer__badge i {
    color: var(--secondary);
    font-size: 1.3rem;
}

.footer__badge span {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.footer__bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer__legal {
    margin-top: 4px;
    font-size: 0.78rem;
}

/* ======================================
   MOBILE STICKY CTA
   ====================================== */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    z-index: 998;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
    transition: var(--transition);
}

.mobile-cta__btn:active {
    transform: scale(0.98);
}

.mobile-cta__btn i {
    animation: phone-ring 2s ease-in-out infinite;
}

/* ======================================
   SCROLL REVEAL ANIMATION
   ====================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======================================
   RESPONSIVE
   ====================================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__trust-badges {
        justify-content: center;
    }

    .hero__image-wrapper img {
        height: 340px;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .zones__layout {
        grid-template-columns: 1fr;
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .cta-band__container {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .header__nav {
        display: none;
    }

    .header__phone span {
        display: none;
    }

    .header__phone {
        padding: 10px;
        border-radius: 50%;
        width: 42px;
        height: 42px;
        justify-content: center;
    }

    .header__hamburger {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 20px);
        padding-bottom: 100px;
    }

    .hero__container {
        padding: 30px 20px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__image-wrapper img {
        height: 260px;
    }

    .services {
        padding: 60px 0;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .zones {
        padding: 60px 0;
    }

    .map-illustration {
        height: 240px;
    }

    .zones__hospitals-grid {
        grid-template-columns: 1fr;
    }

    .why {
        padding: 60px 0;
    }

    .why__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 0 32px;
    }

    .mobile-cta {
        display: block;
    }

    body {
        padding-bottom: 72px;
    }

    .cta-band__title {
        font-size: 1.3rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .service-card {
        padding: 28px 20px;
    }

    .why-card {
        padding: 24px 20px;
    }
}

/* --- SECONDARY BUTTON (Vert d'eau) --- */
.btn--secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: #fff;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.btn--secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.4);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* --- NAV CTA LINK --- */
.header__nav-link--cta {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)) !important;
    color: #fff !important;
    padding: 8px 20px !important;
    font-weight: 600 !important;
}

.header__nav-link--cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.35);
}

.header__nav-link--cta i {
    font-size: 0.8rem;
}

/* --- MOBILE NAV CTA --- */
.mobile-nav__link--cta {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)) !important;
    color: #fff !important;
    padding: 12px 28px !important;
    margin-top: 8px;
}

/* ======================================
   RESERVATION MODAL
   ====================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
    transform: scale(0.9) translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal::-webkit-scrollbar {
    width: 6px;
}

.modal::-webkit-scrollbar-track {
    background: transparent;
}

.modal::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

/* Modal Close Button */
.modal__close {
    position: sticky;
    top: 16px;
    float: right;
    margin: 16px 16px 0 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--bg-subtle);
    color: var(--text-medium);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    z-index: 10;
}

.modal__close:hover {
    background: var(--primary);
    color: #fff;
    transform: rotate(90deg);
}

/* Modal Header */
.modal__header {
    text-align: center;
    padding: 40px 40px 24px;
}

.modal__header-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(30, 58, 95, 0.08));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--secondary);
}

.modal__title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.modal__subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Form */
.modal__form {
    padding: 0 40px 40px;
}

.form-section {
    margin-bottom: 28px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
}

.form-section__title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-section__title i {
    color: var(--secondary);
    font-size: 0.9rem;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row--2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-lighter);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8.5L1 3.5h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

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

/* Form Actions */
.form-actions {
    padding-top: 8px;
}

.form-legal {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-legal i {
    color: var(--secondary);
}

/* Success State */
.modal__success {
    padding: 60px 40px;
    text-align: center;
}

.modal__success-icon {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 20px;
    animation: successPop 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    70% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.modal__success-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.modal__success-text {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
    max-width: 420px;
    margin: 0 auto 28px;
}

.modal__success-contact {
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.modal__success-contact p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

/* ======================================
   MODAL RESPONSIVE
   ====================================== */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 10px;
        align-items: flex-end;
    }

    .modal {
        max-height: 95vh;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .modal__header {
        padding: 32px 24px 16px;
    }

    .modal__form {
        padding: 0 24px 24px;
    }

    .form-section {
        padding: 18px;
    }

    .form-row--2 {
        grid-template-columns: 1fr;
    }

    .modal__title {
        font-size: 1.3rem;
    }

    .modal__success {
        padding: 40px 24px;
    }
}