/* ============================================================
   AÉROCLUB DU VEXIN — Design System
   ============================================================ */

/* --- Variables --- */
:root {
    --navy:        #0f2456;
    --blue:        #1d4ed8;
    --blue-mid:    #2563eb;
    --sky:         #3b82f6;
    --sky-light:   #93c5fd;
    --sky-pale:    #dbeafe;
    --gold:        #f59e0b;
    --gold-light:  #fde68a;
    --dark:        #0a0f1e;
    --text:        #1e293b;
    --text-mid:    #475569;
    --text-light:  #94a3b8;
    --white:       #ffffff;
    --bg:          #f8fafc;
    --bg-card:     #ffffff;
    --border:      #e2e8f0;
    --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow:      0 4px 16px rgba(15,36,86,.12);
    --shadow-lg:   0 12px 40px rgba(15,36,86,.18);
    --radius:      12px;
    --radius-lg:   20px;
    --radius-full: 999px;
    --transition:  0.35s cubic-bezier(.4,0,.2,1);
    --font-head:   'Montserrat', sans-serif;
    --font-body:   'Open Sans', sans-serif;
    --max-width:   1200px;
}

/* --- Reset & Base --- */
*, *::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);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

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

/* --- Typographie --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.15rem; color: var(--text-mid); line-height: 1.75; }
.text-muted { color: var(--text-light); }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-blue { color: var(--blue); }
.text-gold { color: var(--gold); }

/* --- Section header --- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--text-mid); font-size: 1.05rem; }

.section-tag {
    display: inline-block;
    background: var(--sky-pale);
    color: var(--blue);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .3rem .9rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

/* --- Boutons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .95rem;
    padding: .75rem 1.75rem;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}
.btn-primary {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}
.btn-primary:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(29,78,216,.35);
}
.btn-outline {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
}
.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.btn-gold {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    font-weight: 700;
}
.btn-gold:hover {
    background: #d97706;
    border-color: #d97706;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,158,11,.35);
}
.btn-sm { padding: .5rem 1.25rem; font-size: .875rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.1rem 0;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.transparent { background: transparent; }
.navbar.scrolled {
    background: rgba(10, 20, 60, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: .7rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,.2);
}
.navbar-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: .85rem;
    text-decoration: none;
    flex-shrink: 0;
}
.brand-logo { width: 44px; height: 44px; flex-shrink: 0; }
.brand-logo img { width: 44px; height: 44px; object-fit: contain; }
.brand-logo-fallback {
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}
.brand-text { display: flex; flex-direction: column; }
.brand-name {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -.01em;
}
.brand-tagline {
    font-size: .7rem;
    color: rgba(255,255,255,.65);
    letter-spacing: .04em;
    font-style: italic;
}
.navbar-menu {
    display: flex;
    align-items: center;
    gap: .2rem;
    margin-left: auto;
}
.navbar-menu > li { position: relative; }
.navbar-menu > li > a {
    display: flex;
    align-items: center;
    gap: .3rem;
    color: rgba(255,255,255,.88);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .88rem;
    padding: .5rem .9rem;
    border-radius: 8px;
    transition: all var(--transition);
    text-decoration: none;
    letter-spacing: .01em;
}
.navbar-menu > li > a:hover,
.navbar-menu > li > a.active {
    color: var(--white);
    background: rgba(255,255,255,.12);
}
.navbar-menu .arrow { font-size: .65rem; opacity: .7; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: .5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .25s ease;
    border: 1px solid var(--border);
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: block;
    padding: .65rem 1rem;
    color: var(--text);
    font-size: .9rem;
    border-radius: 8px;
    transition: all var(--transition);
    font-family: var(--font-head);
    font-weight: 600;
}
.dropdown li a:hover {
    background: var(--sky-pale);
    color: var(--blue);
}
.dropdown-divider { border-top: 1px solid var(--border); margin: .35rem 0; }
.text-danger { color: #ef4444 !important; }

/* Bouton membres */
.nav-membres-btn {
    background: var(--blue) !important;
    color: var(--white) !important;
    border-radius: var(--radius-full) !important;
    padding: .5rem 1.1rem !important;
}
.nav-membres-btn:hover {
    background: var(--navy) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(29,78,216,.4);
}

/* Toggle mobile */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    margin-left: auto;
}
.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}
.navbar-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle.open span:nth-child(2) { opacity: 0; }
.navbar-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #071b52 0%, #0f2456 35%, #1a3a8f 65%, #0e4f8a 100%);
}
.hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center 40%;
    opacity: 0.35;
    transform: scale(1.05);
    animation: kenBurns 18s ease-in-out infinite alternate;
}
@keyframes kenBurns {
    from { transform: scale(1.05) translate(0, 0); }
    to   { transform: scale(1.15) translate(-1%, -1%); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(7,27,82,.55) 0%, rgba(7,27,82,.35) 60%, rgba(7,27,82,.7) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 100px;
}
.hero-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    min-height: calc(100vh - 100px);
    padding-bottom: 80px;
}
.hero-text { max-width: 580px; }
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: var(--sky-light);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .4rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}
.hero-tag svg { width: 14px; }
.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 1.25rem;
    letter-spacing: -.02em;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 2.25rem;
    line-height: 1.7;
}
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}
.hero-stats {
    display: flex;
    gap: 2.5rem;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 1.75rem;
}
.hero-stat-value {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.9rem;
    color: var(--white);
    line-height: 1;
}
.hero-stat-value span { color: var(--gold); }
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: .2rem; }

.hero-image-side {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-plane-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    overflow: hidden;
    max-width: 480px;
    width: 100%;
}
.hero-plane-card-img {
    height: 280px;
    background: linear-gradient(135deg, #1a3a8f, #0e4f8a);
    position: relative;
    overflow: hidden;
}
.hero-plane-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.hero-plane-card:hover .hero-plane-card-img img { transform: scale(1.06); }
.hero-plane-card-body { padding: 1.25rem 1.5rem; }
.hero-plane-card-body h3 { color: var(--white); font-size: 1.1rem; margin-bottom: .35rem; }
.hero-plane-card-body p { color: rgba(255,255,255,.65); font-size: .875rem; margin: 0; }

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.5);
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-family: var(--font-head);
}
.scroll-mouse {
    width: 24px; height: 38px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}
.scroll-mouse::after {
    content: '';
    width: 4px; height: 8px;
    background: rgba(255,255,255,.5);
    border-radius: 2px;
    animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

/* ============================================================
   SECTIONS GÉNÉRALES
   ============================================================ */
section { padding: 5rem 0; }
.section-light { background: var(--bg); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.75); }
.section-dark .section-tag {
    background: rgba(255,255,255,.1);
    color: var(--sky-light);
}

/* ============================================================
   CARDS
   ============================================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
}
.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--border);
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.card-image {
    overflow: hidden;
    aspect-ratio: 16/10;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.card:hover .card-image img { transform: scale(1.08); }
.card-body { padding: 1.5rem; }
.card-body h3 { margin-bottom: .5rem; font-size: 1.2rem; }
.card-body p { color: var(--text-mid); font-size: .93rem; }
.card-tag {
    display: inline-block;
    background: var(--sky-pale);
    color: var(--blue);
    font-size: .72rem;
    font-weight: 700;
    font-family: var(--font-head);
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .22rem .7rem;
    border-radius: var(--radius-full);
    margin-bottom: .75rem;
}

/* ============================================================
   CARDS SERVICES
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--sky));
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.service-icon {
    width: 56px; height: 56px;
    background: var(--sky-pale);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--blue);
    transition: all var(--transition);
}
.service-card:hover .service-icon {
    background: var(--blue);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
}
.service-card h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.service-card p { color: var(--text-mid); font-size: .93rem; margin-bottom: 1.25rem; }
.service-price {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--navy);
}
.service-price span { font-size: .85rem; font-weight: 500; color: var(--text-mid); }

/* ============================================================
   SECTION FLOTTE (accueil)
   ============================================================ */
.flotte-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.plane-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}
.plane-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    color: inherit;
}
.plane-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #1a3a8f, #0e4f8a);
}
.plane-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.plane-card:hover .plane-card-image img { transform: scale(1.1); }
.plane-immat {
    position: absolute;
    bottom: 12px; left: 12px;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(6px);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.1rem;
    padding: .25rem .75rem;
    border-radius: 6px;
    letter-spacing: .05em;
}
.plane-card-body { padding: 1.4rem; }
.plane-card-body h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.plane-card-body p { color: var(--text-mid); font-size: .88rem; }

/* ============================================================
   CHIFFRES CLÉS
   ============================================================ */
.stats-section {
    background: linear-gradient(135deg, var(--navy), #1a3a8f);
    padding: 4rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-item { color: var(--white); }
.stat-number {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 3rem;
    line-height: 1;
    color: var(--white);
    margin-bottom: .35rem;
}
.stat-number .stat-suffix { color: var(--gold); font-size: 2rem; }
.stat-label {
    font-size: .88rem;
    color: rgba(255,255,255,.65);
    letter-spacing: .06em;
    text-transform: uppercase;
    font-family: var(--font-head);
    font-weight: 600;
}

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.temoignage-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: relative;
}
.temoignage-card::before {
    content: '"';
    position: absolute;
    top: -10px; left: 20px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--sky-pale);
    line-height: 1;
}
.temoignage-text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.25rem;
    margin-top: 1rem;
}
.temoignage-author {
    display: flex;
    align-items: center;
    gap: .85rem;
}
.temoignage-avatar {
    width: 44px; height: 44px;
    background: var(--sky-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.temoignage-author-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .92rem;
    color: var(--navy);
}
.temoignage-author-info { font-size: .8rem; color: var(--text-light); }
.stars { color: var(--gold); font-size: .85rem; margin-bottom: .5rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, #071b52 0%, #1d4ed8 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
    top: -200px; right: -100px;
}
.cta-section::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: rgba(255,255,255,.03);
    border-radius: 50%;
    bottom: -150px; left: -80px;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.8); max-width: 540px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

/* ============================================================
   PAGE HERO (pages intérieures)
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--navy), #1a3a8f);
    padding: 7rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero.bg-image {
    background-image: url('/assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}
.page-hero.bg-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(7,27,82,.75);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 580px; margin: 0 auto; }
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 1.25rem;
    font-family: var(--font-head);
    font-weight: 600;
}
.breadcrumb a { color: var(--sky-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ============================================================
   TARIFS
   ============================================================ */
.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.tarif-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    border: 2px solid var(--border);
    text-align: center;
    transition: all var(--transition);
    position: relative;
}
.tarif-card.featured {
    border-color: var(--blue);
    transform: scale(1.04);
    box-shadow: var(--shadow-lg);
}
.tarif-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .75rem;
    padding: .25rem .9rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
}
.tarif-card:hover:not(.featured) {
    border-color: var(--sky);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.tarif-icon {
    width: 60px; height: 60px;
    background: var(--sky-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--blue);
}
.tarif-card h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.tarif-card p { color: var(--text-mid); font-size: .88rem; margin-bottom: 1.25rem; }
.tarif-price {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--navy);
    line-height: 1;
}
.tarif-price small {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-mid);
}

/* ============================================================
   FORMULAIRE CONTACT
   ============================================================ */
.form-group {
    margin-bottom: 1.35rem;
}
.form-label {
    display: block;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .88rem;
    color: var(--text);
    margin-bottom: .45rem;
}
.form-control {
    width: 100%;
    padding: .75rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-control:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(29,78,216,.12);
}
textarea.form-control { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.alert {
    padding: .85rem 1.1rem;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    font-size: .93rem;
    font-weight: 500;
}
.alert-success { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }
.alert-error   { background: #fee2e2; color: #dc2626; border: 1px solid #fecaca; }
.alert-info    { background: var(--sky-pale); color: var(--navy); border: 1px solid #bfdbfe; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,.7); }
.footer-top { padding: 4rem 0 2.5rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.4fr 1.4fr;
    gap: 2.5rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
}
.footer-logo span {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--white);
}
.footer-desc { font-size: .88rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}
.footer-col h4 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.1rem;
}
.footer-col ul li { margin-bottom: .45rem; }
.footer-col ul li a {
    color: rgba(255,255,255,.6);
    font-size: .88rem;
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-info { margin-top: 1rem; }
.footer-contact-info p {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    margin-bottom: .6rem;
}
.footer-contact-info svg { flex-shrink: 0; margin-top: 3px; opacity: .7; }
.footer-contact-info a { color: rgba(255,255,255,.6); }
.footer-contact-info a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 1.25rem 0;
    display: flex;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   SCROLL TOP
   ============================================================ */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px; height: 46px;
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(29,78,216,.4);
    opacity: 0;
    transform: translateY(12px);
    transition: all var(--transition);
    z-index: 99;
}
.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}
.scroll-top:hover {
    background: var(--navy);
    transform: translateY(-3px);
}

/* ============================================================
   ANIMATIONS SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity .65s ease, transform .65s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity .65s ease, transform .65s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============================================================
   ESPACE MEMBRES — Styles spécifiques
   ============================================================ */
.membres-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: calc(100vh - 80px);
    margin-top: 80px;
}
.membres-sidebar {
    background: var(--navy);
    padding: 2rem 1.25rem;
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    overflow-y: auto;
}
.sidebar-user {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 1.5rem;
}
.sidebar-avatar {
    width: 64px; height: 64px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .75rem;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--white);
}
.sidebar-username {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--white);
    font-size: .95rem;
}
.sidebar-role {
    font-size: .75rem;
    color: rgba(255,255,255,.45);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: rgba(255,255,255,.7);
    padding: .65rem .9rem;
    border-radius: 8px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: .2rem;
    transition: all var(--transition);
}
.sidebar-nav a:hover, .sidebar-nav a.active {
    background: rgba(255,255,255,.1);
    color: var(--white);
}
.sidebar-nav a svg { width: 18px; flex-shrink: 0; opacity: .7; }
.sidebar-nav a:hover svg, .sidebar-nav a.active svg { opacity: 1; }
.sidebar-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,.08);
    margin: .75rem 0;
}

.membres-content { padding: 2.5rem; background: var(--bg); }
.membres-content h1 {
    font-size: 1.75rem;
    margin-bottom: 1.75rem;
}

/* Widgets dashboard */
.dashboard-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
.widget {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1rem;
}
.widget-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.widget-icon.blue { background: var(--sky-pale); color: var(--blue); }
.widget-icon.gold { background: #fef3c7; color: #d97706; }
.widget-icon.green { background: #dcfce7; color: #16a34a; }
.widget-icon.red { background: #fee2e2; color: #dc2626; }
.widget-value {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--navy);
    line-height: 1;
}
.widget-label { font-size: .82rem; color: var(--text-light); margin-top: .2rem; }

/* Tables membres */
.table-container {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.table {
    width: 100%;
    border-collapse: collapse;
}
.table th {
    background: var(--bg);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-light);
    padding: .9rem 1.25rem;
    text-align: left;
    border-bottom: 2px solid var(--border);
}
.table td {
    padding: .85rem 1.25rem;
    border-bottom: 1px solid var(--border);
    font-size: .9rem;
    color: var(--text);
}
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: var(--bg); }

/* Badge statuts */
.badge {
    display: inline-block;
    padding: .22rem .65rem;
    border-radius: var(--radius-full);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .75rem;
    letter-spacing: .04em;
}
.badge-success { background: #dcfce7; color: #15803d; }
.badge-warning { background: #fef3c7; color: #d97706; }
.badge-danger  { background: #fee2e2; color: #dc2626; }
.badge-info    { background: var(--sky-pale); color: var(--blue); }

/* Forum */
.forum-topic {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.1rem 1.5rem;
    margin-bottom: .75rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition);
}
.forum-topic:hover {
    border-color: var(--sky);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}
.forum-topic a { color: var(--navy); font-weight: 600; font-family: var(--font-head); }
.forum-topic a:hover { color: var(--blue); }
.forum-topic-meta { font-size: .82rem; color: var(--text-light); margin-top: .2rem; }
.forum-topic-stats {
    text-align: right;
    font-size: .82rem;
    color: var(--text-light);
    font-family: var(--font-head);
    font-weight: 600;
    white-space: nowrap;
}

/* Calendrier réservation */
.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.avion-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
    margin-bottom: 1.5rem;
}
.avion-option {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
}
.avion-option:hover, .avion-option.selected {
    border-color: var(--blue);
    background: var(--sky-pale);
}
.avion-option-immat {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1rem;
    color: var(--navy);
}
.avion-option-name { font-size: .78rem; color: var(--text-mid); margin-top: .2rem; }

/* Login page */
.login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #071b52, #1a3a8f);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.login-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.75rem 2.5rem;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-lg);
}
.login-logo {
    text-align: center;
    margin-bottom: 2rem;
}
.login-logo h1 {
    font-size: 1.4rem;
    margin-top: .75rem;
}
.login-logo p { color: var(--text-mid); font-size: .9rem; margin-top: .25rem; }

/* ============================================================
   GALERIE
   ============================================================ */
.galerie-grid {
    columns: 3;
    gap: 1rem;
}
.galerie-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    display: block;
}
.galerie-item img {
    width: 100%;
    display: block;
    transition: transform .55s ease;
}
.galerie-item:hover img { transform: scale(1.06); }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); }
.lightbox-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: rgba(255,255,255,.15);
    border: none;
    color: var(--white);
    width: 44px; height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.3); }

/* ============================================================
   CARTE LOCALISATION
   ============================================================ */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .flotte-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .hero-content .container { grid-template-columns: 1fr; }
    .hero-image-side { display: none; }
    .membres-layout { grid-template-columns: 220px 1fr; }
}

@media (max-width: 768px) {
    :root { font-size: 15px; }
    section { padding: 3.5rem 0; }

    .navbar-toggle { display: flex; }
    .navbar-menu {
        position: fixed;
        inset: 0;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: .5rem;
        transform: translateX(100%);
        transition: transform var(--transition);
        padding: 2rem;
    }
    .navbar-menu.open { transform: translateX(0); }
    .navbar-menu > li > a { font-size: 1.1rem; padding: .75rem 1.5rem; }
    .dropdown {
        position: static;
        background: rgba(255,255,255,.07);
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        width: 100%;
        margin-top: .25rem;
    }
    .has-dropdown:hover .dropdown { display: block; }
    .dropdown li a { color: rgba(255,255,255,.75); }

    .hero-btns { flex-direction: column; align-items: flex-start; }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }

    .services-grid { grid-template-columns: 1fr; }
    .flotte-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .tarifs-grid { grid-template-columns: 1fr; }
    .tarif-card.featured { transform: scale(1); }

    .membres-layout { grid-template-columns: 1fr; }
    .membres-sidebar {
        position: static;
        height: auto;
        padding: 1.5rem;
    }
    .reservation-grid { grid-template-columns: 1fr; }
    .avion-selector { grid-template-columns: 1fr; }
    .galerie-grid { columns: 2; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.9rem; }
    .btn { width: 100%; justify-content: center; }
    .hero-btns .btn { width: auto; }
    .cta-btns .btn { width: 100%; }
    .galerie-grid { columns: 1; }
    .stats-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   UTILITAIRES
   ============================================================ */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-2 { gap: 1rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.w-100 { width: 100%; }
.rounded { border-radius: var(--radius); }
.shadow { box-shadow: var(--shadow); }
.divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
