﻿/* ========== GLOBAL STYLES ========== */
body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f5f7fa;
    color: #222831;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ========== PAGE TRANSITIONS ========== */
.page-transition-ready {
    transition: transform 200ms ease;
    will-change: transform;
}

.page-transition {
    transform: translateY(6px);
}

.page-transition-in {
    transform: translateY(0);
}

.page-transition-out {
    transform: translateY(6px);
}

@media (prefers-reduced-motion: reduce) {
    .page-transition-ready,
    .page-transition,
    .page-transition-in,
    .page-transition-out {
        transition: none !important;
        transform: none !important;
    }
}

/* ========== HEADER & NAVIGATION ========== */
header {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: #1e90ff;
    padding: 30px 40px;
    box-shadow: 0 2px 8px rgba(30, 144, 255, 0.08);
}
header .logo img {
    height: 48px;
}

header nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 2em;
    font-weight: 500;
    font-size: 1.1em;
    transition: color 0.2s;
}
header nav a:hover {
    color: #ffd700;
}

/* Old nav styles (if you use <nav><ul><li>) */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2em;
    margin: 0;
    padding: 0;
}

nav ul > li {
    display: flex;
    align-items: center;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}
nav a:hover {
    color: #e63946; /* Red accent on hover */
}

header nav ul a {
    margin-left: 0;
}

.social-nav-item {
    display: flex;
    align-items: center;
    gap: 0.45em;
    margin-left: 0.2em;
}

.social-nav-item a {
    margin-left: 0 !important;
}

.insta-corner-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    line-height: 0;
    color: #ffffff;
    opacity: 0.92;
    margin-left: 0;
    transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.insta-corner-link:hover {
    color: #ffd700;
    opacity: 1;
    transform: translateY(-1px);
}

.insta-corner-link svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.youtube-corner-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    line-height: 0;
    color: #ffffff;
    opacity: 0.92;
    margin-left: 0;
    transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.youtube-corner-link:hover {
    color: #ffd700;
    opacity: 1;
    transform: translateY(-1px);
}

.youtube-corner-link svg {
    display: block;
    width: 100%;
    height: 100%;
}

.lang-switch-item {
    display: flex;
    align-items: center;
    margin-left: 0.15em;
}

.lang-switch-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45em;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border-radius: 999px;
    padding: 0.25em 0.55em;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.86em;
    line-height: 1;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.lang-switch-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.75);
}

.lang-switch-btn .lang-option {
    opacity: 0.8;
}

.lang-switch-btn.is-en .lang-option--en,
.lang-switch-btn:not(.is-en) .lang-option--fr {
    opacity: 1;
}

.lang-switch-btn .lang-knob {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
}

.mobile-menu-item {
    display: none;
}

.mobile-menu-toggle {
    display: none;
}

/* Responsive header/nav */
@media (max-width: 600px) {
    header {
        padding: 18px 14px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 0.6em;
        column-gap: 1em;
        position: relative;
    }

    header nav a {
        font-size: 0.98em;
    }

    .social-nav-item {
        margin-left: 0;
    }

    .mobile-menu-item {
        display: flex;
        align-items: center;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.62);
        background: rgba(255, 255, 255, 0.15);
        color: #fff;
        border-radius: 999px;
        padding: 0.35em 0.75em;
        font-weight: 700;
        font-size: 0.95em;
        line-height: 1;
        cursor: pointer;
    }

    nav ul > li.mobile-collapse-item {
        display: none;
    }

    nav ul.nav-mobile-open > li.mobile-collapse-item {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    nav ul.nav-mobile-open > li.mobile-collapse-item a {
        display: block;
        width: min(94%, 420px);
        text-align: center;
        padding: 0.58em 0.7em;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.13);
    }

}

/* ========== HERO SECTION ========== */
.hero {
    text-align: center;
    padding: 0em 1em 2em 1em;
    background: transparent;
    color: #222831;
}

.hero h1 {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    font-size: 3.5em;         /* Taille du titre d'accueil */
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 0.5em;
    margin-top: 1em;
}
.hero p {
    color: #444;
    font-size: 1.3em;
    margin-top: 0.8em;
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2em;     /* Responsive: slightly smaller on mobile */
    }
}

/* ========== CALL TO ACTION BUTTON ========== */
.cta-btn {
    display: inline-block;
    margin-top: 2em;
    padding: 1em 2em;
    background: #e63946; /* Red */
    color: #fff;
    font-weight: bold;
    border-radius: 30px;
    border: 2px solid transparent;
    box-sizing: border-box;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.cta-btn:hover {
    background: #1e90ff;
    color: #fff;
    border-color: #1e90ff;
    transform: translateY(-2px);
}

/* ========== FOOTER ========== */
footer {
    text-align: center;
    padding: 1em 0;
    background: #153a66;
    color: #eaf3ff;
    margin-top: 2em;
}

/* ========== ABOUT & WHY US SECTIONS ========== */
.about, .why-us {
    max-width: 800px;
    width: min(800px, calc(100% - 2rem));
    margin: 3em auto;
    padding: 2em;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(30, 144, 255, 0.07);
    text-align: center;
}
.about h2, .why-us h2 {
    color: #1e90ff;
    margin-bottom: 1em;
}
.why-us ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: left;
    display: inline-block;
}
.why-us li {
    font-size: 1.1em;
    margin-bottom: 0.7em;
    color: #222831;
}

/* ========== HOME DAY FLOW ========== */
.day-flow {
    max-width: 1100px;
    width: min(1100px, calc(100% - 2rem));
    margin: 3em auto;
    padding: 2.2em 2em 2.4em;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(247, 250, 255, 0.95) 100%);
    border-radius: 22px;
    border: 1px solid rgba(30, 144, 255, 0.12);
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.12);
}

.day-flow h2 {
    color: #1e90ff;
    margin-top: 0;
    margin-bottom: 1.4em;
    text-align: center;
    font-size: clamp(1.7rem, 2.4vw, 2.4rem);
    letter-spacing: 0.01em;
}

.roadmap {
    list-style: none;
    margin: 0;
    padding: 0 0.25em;
    display: grid;
    grid-template-columns: repeat(5, minmax(155px, 1fr));
    gap: 1.8em;
}

.roadmap-step {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(30, 144, 255, 0.2);
    border-radius: 18px;
    padding: 1.2em 1em;
    min-height: 210px;
    box-shadow: 0 8px 18px rgba(30, 144, 255, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.roadmap-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(30, 144, 255, 0.16);
}

.roadmap-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -0.95em;
    top: 50%;
    transform: translateY(-50%);
    color: #1e90ff;
    font-weight: 900;
    font-size: 1.5em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e90ff 0%, #46a7ff 100%);
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.9em;
    box-shadow: 0 6px 12px rgba(30, 144, 255, 0.3);
    font-size: 1.1em;
}

.roadmap-step p {
    margin: 0;
    color: #1f2a3a;
    font-size: 1.12em;
    line-height: 1.4;
    text-align: center;
    max-width: 11ch;
    width: 100%;
}

@media (max-width: 980px) {
    .day-flow {
        padding: 1.6em 1.2em 1.8em;
        border-radius: 18px;
    }

    .roadmap {
        grid-template-columns: 1fr;
        gap: 0.95em;
        max-width: 540px;
        margin: 0 auto;
    }

    .roadmap-step {
        min-height: 0;
        padding: 1.1em 1em;
    }

    .roadmap-step:not(:last-child)::after {
        content: "↓";
        right: auto;
        left: 50%;
        top: auto;
        bottom: -0.9em;
        transform: translateX(-50%);
        font-size: 1.25em;
    }
}

/* ========== HOME OFFERS (CONVERSION) ========== */
.home-offers {
    max-width: 1080px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 251, 255, 0.95) 100%);
    border: 1px solid rgba(30, 144, 255, 0.12);
    box-shadow: 0 12px 30px rgba(30, 144, 255, 0.11);
}

.home-offers .offers-intro {
    margin: 0 auto 1.4em;
    max-width: 700px;
    font-size: 1.12em;
    color: #304258;
}

.home-offers .services-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 1.3em;
    align-items: stretch;
}

.home-offers .offer-card {
    position: relative;
    width: auto;
    max-width: none;
    margin: 0;
    background: #ffffff;
    border: 1px solid rgba(30, 144, 255, 0.18);
    border-radius: 18px;
    box-shadow: 0 10px 20px rgba(30, 144, 255, 0.08);
    padding: 1.25em 1.2em 1.15em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-offers .offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 24px rgba(30, 144, 255, 0.14);
}

.home-offers .offer-badge {
    display: inline-block;
    margin-bottom: 0.7em;
    padding: 0.35em 0.7em;
    border-radius: 999px;
    font-size: 0.8em;
    font-weight: 700;
    color: #115fae;
    background: rgba(30, 144, 255, 0.11);
}

.home-offers .premium-card .offer-badge {
    color: #9a2b36;
    background: rgba(230, 57, 70, 0.13);
}

.home-offers .offer-card h3 {
    margin-bottom: 0.55em;
}

.home-offers .offer-card p {
    margin-bottom: 0.9em;
}

.home-offers .offer-points {
    list-style: none;
    padding: 0;
    margin: 0 0 1em;
}

.home-offers .offer-points li {
    font-size: 0.98em;
    color: #31445d;
    margin-bottom: 0.45em;
}

.home-offers .offer-points li::before {
    content: "✓ ";
    color: #1e90ff;
    font-weight: 700;
}

.home-offers .price {
    font-size: 1.55em;
    line-height: 1.1;
}

.home-offers .offers-reassurance {
    margin: 1.25em auto 0.4em;
    max-width: 700px;
    color: #38516f;
    font-size: 0.98em;
}

@media (max-width: 900px) {
    .home-offers .services-list {
        grid-template-columns: 1fr;
    }
}

/* ========== CTA LINK ========== */
.cta-link {
    display: inline-block;
    margin-top: 1.5em;
    color: #e63946;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s;
}
.cta-link:hover {
    color: #1e90ff;
}

/* ========== SERVICES PREVIEW SECTION ========== */
.services-preview {
    max-width: 1000px;
    width: min(1000px, calc(100% - 2rem));
    margin: 3em auto;
    padding: 2em;
    background: #f8f9fa;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(230, 57, 70, 0.07);
    text-align: center;
}
.services-preview h2 {
    color: #e63946;
    margin-bottom: 1.5em;
}
.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    margin-bottom: 1.5em;
}
.service-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(30, 144, 255, 0.08);
    padding: 1.5em 1em;
    width: 260px;
    min-width: 220px;
    max-width: 300px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.service-item h3 {
    color: #1e90ff;
    margin-top: 0;
    margin-bottom: 0.5em;
}
.service-item p {
    flex: 1;
    margin-bottom: 1em;
}
.price {
    font-weight: bold;
    color: #e63946;
    font-size: 1.1em;
}

/* ========== HOMEPAGE GALLERY PREVIEW ========== */
.gallery-preview {
    max-width: 1000px;
    margin: 3em auto;
    padding: 2em;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(30, 144, 255, 0.07);
    text-align: center;
}
.gallery-preview h2 {
    color: #1e90ff;
    margin-bottom: 1.5em;
}
.gallery-thumbs {
    display: flex;
    justify-content: center;
    gap: 1.5em;
    margin-bottom: 1.5em;
    flex-wrap: wrap;
}
.gallery-thumbs img {
    width: 200px;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(30, 144, 255, 0.08);
    transition: transform 0.2s;
}
.gallery-thumbs img:hover {
    transform: scale(1.05);
}

/* ========== LIGHTBOX (GALLERY POPUP) ========== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(34, 40, 49, 0.85);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.lightbox img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(30, 144, 255, 0.2);
}
.lightbox-close {
    position: absolute;
    top: 2em;
    right: 3em;
    color: #fff;
    font-size: 2.5em;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.2s;
    background: transparent;
    border: 0;
    line-height: 1;
    padding: 0;
}
.lightbox-close:hover {
    color: #e63946;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(20, 28, 38, 0.45);
    color: #ffffff;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    padding: 0;
}

.lightbox-nav:hover {
    background: rgba(30, 144, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.85);
    color: #ffffff;
}

.lightbox-nav-prev {
    left: 1.2rem;
}

.lightbox-nav-next {
    right: 1.2rem;
}

.lightbox-nav svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 700px) {
    .lightbox-nav {
        width: 38px;
        height: 38px;
        font-size: 1.55rem;
    }

    .lightbox-nav-prev {
        left: 0.65rem;
    }

    .lightbox-nav-next {
        right: 0.65rem;
    }
}

#lightbox-caption {
    color: #fff;
    margin-top: 1em;
    font-size: 1.1em;
    text-align: center;
}

.home-bg:not(.gallery-page) #lightbox-caption {
    display: none;
}

.gallery-page #lightbox-caption {
    display: none;
}

/* ========== BOTTOM CALL TO ACTION ========== */
.cta-bottom {
    max-width: 700px;
    width: min(700px, calc(100% - 2rem));
    margin: 3em auto 0 auto;
    padding: 2.5em 1.5em;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(30, 144, 255, 0.10);
    text-align: center;
}
.cta-bottom h2 {
    color: #e63946;
    margin-bottom: 0.7em;
}
.cta-bottom p {
    color: #222831;
    font-size: 1.15em;
    margin-bottom: 1.5em;
}

/* ========== FULL GALLERY PAGE GRID ========== */
.gallery-page-panel {
    max-width: 1240px;
    width: min(1240px, calc(100% - 2rem));
    margin: 2.2em auto;
    padding: 1.2em 0.2em 1.5em;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(30, 144, 255, 0.12);
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(30, 144, 255, 0.12);
}

.gallery-video-preview {
    max-width: 900px;
    margin: 0.8em auto 1.4em;
    padding: 0 1em;
    text-align: center;
}

.gallery-video-preview h2 {
    color: #1e90ff;
    margin: 0 0 0.35em;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.gallery-video-preview p {
    margin: 0 0 0.9em;
    color: #304258;
    font-size: 1.03em;
}

.gallery-video-preview .video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(30, 144, 255, 0.18);
    box-shadow: 0 10px 22px rgba(30, 144, 255, 0.14);
    background: #0b1d33;
}

.gallery-video-preview .video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.gallery-local-videos {
    max-width: 1120px;
    margin: 1.1em auto 1.8em;
    padding: 0 1em;
    text-align: center;
}

.home-local-videos {
    max-width: 760px;
    width: min(760px, calc(100% - 2rem));
    margin: 2.1em auto 1.6em;
    padding: 1.7em 1.2em 1.8em;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(30, 144, 255, 0.14);
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(30, 144, 255, 0.12);
}

.gallery-local-videos h2 {
    color: #1e90ff;
    margin: 0 0 0.35em;
    font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.gallery-local-videos p {
    margin: 0 0 0.9em;
    color: #304258;
    font-size: 1.01em;
}

.gallery-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 200px));
    justify-content: center;
    gap: 0.8em;
}

.gallery-video-grid video {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(30, 144, 255, 0.18);
    box-shadow: 0 10px 22px rgba(30, 144, 255, 0.14);
    background: #0b1d33;
}

.gallery-video-grid video:fullscreen {
    width: auto;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    aspect-ratio: 9 / 16;
    object-fit: contain;
    background: #000;
}

.gallery-video-grid video:-webkit-full-screen {
    width: auto;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    aspect-ratio: 9 / 16;
    object-fit: contain;
    background: #000;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2em;
    margin: 2em auto;
    max-width: 1200px;
    padding: 0 1em;
}
.gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(30, 144, 255, 0.10);
    transition: transform 0.2s;
}
.gallery-grid img:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 24px rgba(230, 57, 70, 0.15);
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 600px) {
    .gallery-page-panel {
        margin: 1.4em 0.6em;
        padding: 0.9em 0.2em 1em;
        border-radius: 14px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.8em;
    }
    .gallery-grid img {
        height: 140px;
    }
    .gallery-video-grid {
        grid-template-columns: repeat(2, minmax(120px, 150px));
        gap: 0.65em;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ========== PAGE TITLES ========== */
h1 {
    text-align: center;
    margin-top: 1.5em;
    font-size: 2.2em;
    color: #1e90ff;
    letter-spacing: 1px;

}

/* */

/* ========== PAGES BACKGROUND ========== */
body.home-bg {
    background:
            linear-gradient(rgba(255,255,255,0.35), rgba(255,255,255,0)),
            url('../images/fondcentre.jpg') no-repeat center center fixed;
    background-size: cover;
}

@media (max-width: 900px) {
    body.home-bg {
        background:
            linear-gradient(rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.10)),
            url('../images/fondbas.jpg') no-repeat center 32% scroll;
        background-size: cover;
        background-color: #dbe8f8;
    }
}

@media (max-width: 600px) {
    body.home-bg {
        background-position: center 36%;
    }
}

/* ========== TEAM PAGE ========== */
.team-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3em;
    margin: 3em 0 2em 0;
}
.team-member {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(30, 144, 255, 0.07);
    padding: 2em 1.5em;
    max-width: 320px;
    text-align: center;
}
.team-member img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    object-position: 50% 40%;
    border-radius: 50%;
    margin-bottom: 1em;
    border: 3px solid #1e90ff;
}
.team-photo-placeholder {
    width: 180px;
    height: 180px;
    margin: 0 auto 1em;
    border-radius: 50%;
    border: 3px dashed #1e90ff;
    background: rgba(30, 144, 255, 0.08);
    color: #1e90ff;
    font-weight: 700;
    font-size: 0.95em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.8em;
    box-sizing: border-box;
}
.team-member h2 {
    color: #1e90ff;
    margin-bottom: 0.5em;
}
.team-member p {
    color: #222831;
    font-size: 1.05em;
}

.team-list .team-member:nth-of-type(3) img {
    object-position: 50% 50%;
}

/* ========== SERVICES PAGE ========== */

.services-page .services-preview {
    max-width: 1060px;
    width: min(1060px, calc(100% - 2rem));
    margin: 3em auto 2em auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 250, 255, 0.96));
    border: 1px solid rgba(30, 144, 255, 0.12);
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(30, 144, 255, 0.12);
    padding: 2.6em 1.8em 2.2em 1.8em;
    text-align: center;
}

.services-page .services-preview h1 {
    color: #1e90ff;
    margin-bottom: 0.35em;
    font-size: clamp(2rem, 3vw, 2.8rem);
}

.services-page .services-preview > p {
    color: #304258;
    font-size: 1.14em;
    margin: 0 auto 2.1em;
    max-width: 760px;
    line-height: 1.45;
}

.services-page .services-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    column-gap: 1.35em;
    row-gap: 1.35em;
    grid-auto-flow: row;
    align-items: start;
    margin-bottom: 2.2em;
}

.services-page .service-item {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(30, 144, 255, 0.2);
    box-shadow: 0 10px 20px rgba(30, 144, 255, 0.09);
    padding: 1.45em 1.25em 1.2em 1.25em;
    width: auto;
    max-width: none;
    margin: 0;
    min-width: 0;
    text-align: left;
    align-self: start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services-page .service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 24px rgba(30, 144, 255, 0.14);
}

.services-page .service-tag {
    display: inline-block;
    margin-bottom: 0.7em;
    padding: 0.34em 0.7em;
    border-radius: 999px;
    background: rgba(30, 144, 255, 0.12);
    color: #0f63b8;
    font-weight: 700;
    font-size: 0.8rem;
}

.services-page .service-premium .service-tag {
    background: rgba(230, 57, 70, 0.12);
    color: #a12434;
}

.services-page details {
    margin-top: 1em;
    cursor: pointer;
}

.services-page summary {
    font-weight: bold;
    color: #1e90ff;
    list-style: none;
    position: relative;
    padding-left: 20px;
}

.services-page summary::before {
    content: "▶";
    position: absolute;
    left: 0;
    transition: transform 0.2s;
}

.services-page details[open] summary::before {
    transform: rotate(90deg); /* fleche qui pivote quand c'est ouvert */
}

.services-page .service-item h2 {
    color: #1e90ff;
    font-size: 1.42em;
    margin-bottom: 0.4em;
}

.services-page .service-hook {
    margin: 0 0 0.8em;
    color: #2a3b54;
    font-size: 1.03em;
    line-height: 1.4;
}

.services-page .service-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1em;
}

.services-page .service-benefits li {
    margin-bottom: 0.45em;
    font-size: 0.98em;
    color: #263a53;
}

.services-page .service-benefits li::before {
    content: "✓ ";
    color: #1e90ff;
    font-weight: 700;
}

.services-page .service-price {
    margin: 0 0 0.9em;
    color: #e63946;
    font-size: 1.58em;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.services-page .service-item details p {
    color: #444;
    font-size: 0.98em;
    margin-bottom: 0.2em;
}

.services-page .service-item details .meeting-slot {
    margin: 0.55em 0;
}

.services-page .options {
    margin: 2em auto 1.5em auto;
    max-width: 760px;
    width: min(760px, calc(100% - 2rem));
    background: #ffffff;
    border: 1px solid rgba(30, 144, 255, 0.16);
    border-radius: 16px;
    box-shadow: 0 8px 18px rgba(30, 144, 255, 0.08);
    padding: 1.4em 1.2em;
    text-align: left;
}

.services-page .options h3 {
    color: #222831;
    margin-bottom: 0.7em;
}

.services-page .options ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1em 0;
}

.services-page .options li {
    font-size: 1.08em;
    margin-bottom: 0.5em;
    color: #222831;
}

.services-page .options strong {
    color: #1e90ff;
}

.services-page .options p {
    margin-top: 1em;
    font-size: 1.05em;
    color: #222831;
}

.services-page .flight-details {
    margin: 1.4em auto 1.4em auto;
    max-width: 760px;
    width: min(760px, calc(100% - 2rem));
    background: #ffffff;
    border: 1px solid rgba(30, 144, 255, 0.16);
    border-radius: 16px;
    box-shadow: 0 8px 18px rgba(30, 144, 255, 0.08);
    padding: 1.45em 1.2em;
    text-align: center;
}

.services-page .flight-details h3 {
    margin-top: 0;
    margin-bottom: 0.7em;
    color: #1e90ff;
}

.services-page .flight-details h4 {
    margin: 1em 0 0.35em;
    color: #22324a;
    font-size: 1.04em;
}

.services-page .flight-details p {
    margin: 0 0 0.55em;
    color: #22324a;
    font-size: 1.02em;
    line-height: 1.45;
    text-align: justify;
}

.services-page .flight-vehicle-gallery {
    margin: 0.95em 0 0.65em;
}

.services-page .flight-vehicle-title {
    text-align: center !important;
    font-weight: 400;
    font-style: italic;
    font-size: 0.84em;
    color: #5a6f8e;
    margin-top: 0.45em !important;
    margin-bottom: 0 !important;
}

.services-page .flight-vehicle-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5em;
    max-width: 460px;
    margin: 0 auto;
}

.services-page .flight-vehicle-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    object-position: center center;
    border-radius: 10px;
    border: 1px solid rgba(30, 144, 255, 0.14);
    background: transparent;
    box-shadow: 0 2px 8px rgba(30, 144, 255, 0.08);
    padding: 0;
}

.services-page .flight-vehicle-grid .vehicle-photo-1 {
    object-position: 52% 62%;
}

.services-page .flight-vehicle-grid .vehicle-photo-2 {
    object-position: 50% 60%;
}

.services-page .inline-contact-btn {
    display: inline;
    margin-left: 0.35em;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #e63946;
    font-weight: 400;
    text-decoration: underline;
    line-height: 1.2;
    transition: color 0.2s ease;
}

.services-page .inline-contact-btn:hover {
    color: #c92f3b;
}

.services-page .cta-btn {
    display: inline-block;
    margin-top: 2em;
    background: #e63946; /* Solid red */
    color: #fff;
    font-weight: bold;
    font-size: 1.15em;
    padding: 0.9em 2.2em;
    border-radius: 30px;
    border: 2px solid transparent;
    box-sizing: border-box;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(30, 144, 255, 0.10);
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.services-page .cta-btn:hover {
    background: #1e90ff; /* Solid blue on hover */
    color: #fff;
    border-color: #1e90ff;
    transform: translateY(-2px);
}

@media (max-width: 920px) {
    .services-page .services-list {
        grid-template-columns: 1fr;
        gap: 1em;
    }

    .services-page .flight-vehicle-grid img {
        height: 110px;
    }
}

/* ========== CONTACTS PAGE ========== */

.contact-section {
    max-width: 1080px;
    width: min(1080px, calc(100% - 2rem));
    margin: 3.2em auto 2.2em auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.96));
    border: 1px solid rgba(30, 144, 255, 0.12);
    border-radius: 24px;
    box-shadow: 0 14px 30px rgba(30, 144, 255, 0.12);
    padding: 2.8em 2em 2.2em 2em;
    text-align: center;
}

.contact-section h1 {
    color: #1e90ff;
    margin-bottom: 0.45em;
    font-size: clamp(2rem, 3vw, 3rem);
    letter-spacing: 0.01em;
}

.contact-section > p {
    color: #304258;
    font-size: 1.24em;
    margin: 0 auto 2.1em;
    max-width: 840px;
    line-height: 1.35;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 1.25em;
    margin-bottom: 2.2em;
}

.contact-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(30, 144, 255, 0.18);
    border-radius: 18px;
    box-shadow: 0 8px 18px rgba(30, 144, 255, 0.08);
    padding: 1.35em 1.2em 1.25em;
    min-height: 0;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(30, 144, 255, 0.35);
    box-shadow: 0 14px 24px rgba(30, 144, 255, 0.14);
}

.contact-card h2 {
    color: #1e90ff;
    font-size: 1.45rem;
    line-height: 1.2;
    margin-bottom: 0.55em;
    min-height: 0;
}

.contact-card a {
    color: #111111;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px dashed rgba(17, 17, 17, 0.35);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-card a[href^="tel:"] {
    color: #e63946;
    border-bottom-color: rgba(230, 57, 70, 0.45);
}

.contact-card a:hover {
    color: #000000;
    border-color: rgba(0, 0, 0, 0.55);
}

.contact-card p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.45;
    color: #1f2a3a;
}

.contact-card .contact-card-subnote {
    margin: -0.2em 0 0.55em;
    font-size: 0.9rem;
    color: #5c6b80;
}

.contact-social {
    margin: 2.2em 0 1.4em;
    padding: 0.95em 1em;
    text-align: center;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 14px;
    border: 1px solid rgba(30, 144, 255, 0.2);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 8px 18px rgba(30, 144, 255, 0.1);
}

.contact-social h3 {
    margin: 0 0 0.25em;
    color: #1e90ff;
    font-size: 1.2em;
}

.contact-social p {
    margin: 0 0 0.55em;
    color: #3d4d66;
    font-size: 1em;
}

.contact-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    padding: 0;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    color: #e63946;
    background: transparent;
    box-shadow: none;
    transition: color 0.2s ease;
    font-size: 1em;
}

.contact-social-link:hover {
    color: #1e90ff;
}

.contact-social-link span {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-social-link svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.contact-info {
    margin: 2.4em 0 1.5em 0;
    text-align: left;
}

.contact-info h3 {
    color: #1e90ff;
    margin-bottom: 0.45em;
    font-size: 1.45em;
}

.contact-info p {
    color: #22324a;
    font-size: 1.08em;
    margin-bottom: 1em;
    line-height: 1.45;
}

.map-container {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(30, 144, 255, 0.14);
    box-shadow: 0 10px 22px rgba(30, 144, 255, 0.12);
}

.contact-note {
    margin-top: 2.2em;
    font-size: 1.08em;
    color: #22324a;
}

.contact-bottom-cta {
    margin-top: 1.5em;
    text-align: center;
}

@media (max-width: 950px) {
    .contact-section {
        padding: 2em 1.2em 1.8em;
        border-radius: 18px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1em;
    }

    .contact-card {
        min-height: 0;
    }

    .contact-card h2 {
        min-height: 0;
    }
}

/* ========== FAQS PAGE ========== */

.faq-section {
    max-width: 980px;
    margin: 3em auto 2em auto;
    background: #fff;
    border-radius: 22px;
    border: 1px solid rgba(30, 144, 255, 0.12);
    box-shadow: 0 12px 26px rgba(30, 144, 255, 0.1);
    padding: 2.6em 1.8em 2.2em;
    text-align: center;
}

.faq-section h1 {
    color: #1e90ff;
    margin-bottom: 1.2em;
    font-size: clamp(1.9rem, 2.8vw, 2.6rem);
    letter-spacing: 0.01em;
}

.faq-list {
    text-align: left;
    margin: 0 auto;
    max-width: 700px;
}

.faq-section .resource-download-wrap {
    max-width: 700px;
    margin: 1.05em auto 1.55em;
}

.faq-section .resource-download {
    display: block;
    font-size: 0.96rem;
    line-height: 1.35;
    text-align: center;
}

.faq-item {
    margin-bottom: 1em;
    background: #ffffff;
    border: 1px solid rgba(30, 144, 255, 0.16);
    border-radius: 14px;
    box-shadow: 0 6px 14px rgba(30, 144, 255, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    width: 100%;
    border: 0;
    background: transparent;
    justify-content: space-between;
    align-items: center;
    padding: 1em 1.05em;
    cursor: pointer;
    transition: background 0.2s ease;
    text-align: left;
}

.faq-question:hover {
    background: rgba(30, 144, 255, 0.05);
}

.faq-question h2 {
    color: #1e90ff;
    font-size: 1.12rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    line-height: 1.35;
}

.faq-toggle {
    color: #1e90ff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-left: 1em;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    color: #1e90ff;
    font-size: 1.04rem;
    line-height: 1.5;
    margin: 0;
    padding: 0 1.05em 1.1em 1.05em;
}

.resource-download-wrap {
    margin: 1em 0 0.35em;
    text-align: center;
}

.resource-download {
    display: inline-block;
    color: #e63946;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.resource-download:hover {
    color: #1e90ff;
}

