/* ============================================================
   VOYAGES SORTIR 08 — CSS PRINCIPAL
   ============================================================ */

:root {
    --teal: #59b7b7;
    --teal-dark: #3d9a9a;
    --teal-light: #7ecece;
    --teal-ultra: #edf8f8;
    --coral: #e8724a;
    --coral-dark: #d4603c;
    --gold: #c9a84c;
    --gold-light: #e8c96e;
    --dark: #0f2424;
    --dark-mid: #1a3a3a;
    --cream: #f9f6f0;
    --white: #ffffff;
    --gray: #6b7280;
    --gray-light: #f0f2f4;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

h1,h2,h3,h4,h5,h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

/* ============================================================
   ANNONCE BAR
============================================================ */
.vs08-annonce {
    background: linear-gradient(90deg, var(--dark-mid), var(--teal-dark));
    color: white;
    text-align: center;
    padding: 11px 20px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}
.vs08-annonce a {
    color: var(--gold-light);
    font-weight: 700;
    margin-left: 8px;
    border-bottom: 1px solid var(--gold-light);
    transition: opacity 0.2s;
}
.vs08-annonce a:hover { opacity: 0.8; }

/* ============================================================
   HEADER & NAV
============================================================ */
.vs08-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.vs08-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 60px;
    background: transparent;
    transition: all 0.4s ease;
}

/* Header sombre au scroll OU sur pages internes */
.vs08-header.scrolled .vs08-annonce,
.vs08-header.vs08-dark .vs08-annonce { display: none; }

.vs08-header.scrolled .vs08-nav,
.vs08-header.vs08-dark .vs08-nav {
    background: rgba(15, 36, 36, 0.97);
    backdrop-filter: blur(20px);
    padding: 12px 60px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.35);
}

/* Logo texte fallback */
.vs08-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: white;
}
.vs08-logo-text span { color: var(--teal-light); }

/* Logo image */
.vs08-nav-logo img,
.vs08-nav-logo .custom-logo {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: height 0.3s;
}
.vs08-header.scrolled .vs08-nav-logo img,
.vs08-header.scrolled .vs08-nav-logo .custom-logo { height: 42px; }

/* Menu */
.vs08-menu {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
}
.vs08-menu li a {
    color: rgba(255,255,255,0.88);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}
.vs08-menu li a:hover { color: var(--teal-light); }

/* Bouton CTA dans le menu */
.vs08-menu li.vs08-nav-cta a,
.vs08-menu li:last-child a {
    background: var(--teal);
    color: white !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 700 !important;
    box-shadow: 0 4px 20px rgba(89,183,183,0.35);
    transition: all 0.3s !important;
}
.vs08-menu li.vs08-nav-cta a:hover,
.vs08-menu li:last-child a:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(89,183,183,0.5);
}

/* Toggle mobile */
.vs08-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.vs08-nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================================
   HERO
============================================================ */
.vs08-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.vs08-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,36,36,0.88) 0%, rgba(15,36,36,0.5) 50%, rgba(89,183,183,0.15) 100%);
}

.vs08-hero-content {
    position: relative;
    z-index: 2;
    padding: 160px 80px 100px;
    max-width: 820px;
}

.vs08-hero-badge {
    display: inline-block;
    color: var(--teal-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.vs08-hero-content h1 {
    font-size: clamp(44px, 6vw, 78px);
    color: white;
    line-height: 1.08;
    margin-bottom: 16px;
    font-weight: 700;
}

.vs08-hero-content h1 em {
    font-style: italic;
    color: var(--teal-light);
}

.vs08-hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.vs08-hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 44px;
    max-width: 520px;
}

.vs08-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.vs08-hero-stats {
    position: absolute;
    bottom: 60px;
    right: 80px;
    display: flex;
    gap: 44px;
    z-index: 2;
}

.vs08-hero-stat { text-align: right; }

.vs08-stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--teal-light);
    line-height: 1;
}

.vs08-stat-lbl {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ============================================================
   BUTTONS
============================================================ */
.vs08-btn-primary {
    display: inline-block;
    background: var(--teal);
    color: white;
    padding: 17px 38px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(89,183,183,0.4);
}
.vs08-btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(89,183,183,0.5);
    color: white;
}

.vs08-btn-outline {
    display: inline-block;
    color: white;
    border: 2px solid rgba(255,255,255,0.35);
    padding: 15px 32px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s;
}
.vs08-btn-outline:hover {
    border-color: var(--teal-light);
    color: var(--teal-light);
    transform: translateY(-2px);
}

.vs08-btn-coral {
    display: inline-block;
    background: var(--coral);
    color: white;
    padding: 18px 40px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(232,114,74,0.4);
}
.vs08-btn-coral:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    color: white;
}

.vs08-btn-ghost {
    display: inline-block;
    color: rgba(255,255,255,0.75);
    border: 1.5px solid rgba(255,255,255,0.25);
    padding: 17px 30px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s;
}
.vs08-btn-ghost:hover {
    border-color: var(--teal-light);
    color: var(--teal-light);
}

/* ============================================================
   SEARCH BAR
============================================================ */
.vs08-search-section {
    position: relative;
    z-index: 10;
    margin-top: -55px;
    padding: 0 80px;
}

.vs08-search-card {
    background: white;
    border-radius: 22px;
    padding: 28px 36px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.13);
    display: flex;
    align-items: flex-end;
    gap: 0;
}

.vs08-search-field {
    flex: 1;
    padding: 0 20px;
    border-right: 1px solid var(--gray-light);
}
.vs08-search-field:first-child { padding-left: 0; }
.vs08-search-field:last-of-type { border-right: none; }

.vs08-search-field label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--teal-dark);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.vs08-search-field input,
.vs08-search-field select {
    width: 100%;
    border: none;
    border-bottom: 2px solid var(--gray-light);
    padding: 10px 0;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    background: transparent;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color 0.2s;
}
.vs08-search-field input:focus,
.vs08-search-field select:focus { border-bottom-color: var(--teal); }

.vs08-btn-search {
    background: var(--coral);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    margin-left: 20px;
    flex-shrink: 0;
    white-space: nowrap;
    transition: all 0.3s;
    box-shadow: 0 6px 25px rgba(232,114,74,0.35);
}
.vs08-btn-search:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
}

/* ============================================================
   SECTIONS COMMUNES
============================================================ */
.vs08-container { max-width: 1400px; margin: 0 auto; padding: 0 80px; }
.vs08-section { padding: 100px 0; }

.vs08-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
}

.vs08-section-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.vs08-label-light { color: var(--teal-light); }

.vs08-section-title {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.vs08-section-title em { font-style: italic; color: var(--teal); }
.vs08-title-white { color: white; }
.vs08-title-white em { color: var(--teal-light); }

.vs08-section-link {
    color: var(--teal-dark);
    font-weight: 600;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
    transition: all 0.2s;
}
.vs08-section-link:hover { color: var(--teal); letter-spacing: 0.3px; }

/* ============================================================
   CARTES SÉJOURS
============================================================ */
.vs08-sejours-section { background: var(--cream); }

.vs08-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.vs08-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.vs08-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.16);
}

/* Carte featured : image gauche, texte droite, pleine largeur */
.vs08-card-featured {
    grid-column: span 2;
    flex-direction: row;
}
.vs08-card-featured .vs08-card-img-wrap {
    width: 55%;
    flex-shrink: 0;
}
.vs08-card-featured .vs08-card-img-wrap img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}
.vs08-card-featured .vs08-card-body {
    padding: 36px;
    justify-content: space-between;
}
.vs08-card-featured .vs08-card-title { font-size: 26px; }

.vs08-card-img-wrap {
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.vs08-card-img-wrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.vs08-card:hover .vs08-card-img-wrap img { transform: scale(1.08); }

.vs08-badge {
    position: absolute;
    top: 14px; left: 14px;
    padding: 5px 13px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    font-family: 'Outfit', sans-serif;
    z-index: 2;
}
.vs08-badge-new  { background: var(--teal-dark); }
.vs08-badge-promo{ background: var(--coral); }
.vs08-badge-best { background: var(--gold); }

.vs08-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vs08-card-country {
    font-size: 11px;
    color: var(--teal);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.vs08-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
    flex: 1;
}

.vs08-card-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 18px;
    font-family: 'Outfit', sans-serif;
}

.vs08-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--gray-light);
    margin-top: auto;
}

.vs08-card-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.vs08-tag {
    background: var(--teal-ultra);
    color: var(--teal-dark);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
}

.vs08-card-price { text-align: right; flex-shrink: 0; margin-left: 12px; }
.vs08-price-from { display: block; font-size: 10px; color: var(--gray); text-transform: uppercase; font-family: 'Outfit', sans-serif; }
.vs08-price-amount { display: block; font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--teal-dark); line-height: 1; }
.vs08-price-per { display: block; font-size: 10px; color: var(--gray); font-family: 'Outfit', sans-serif; }

/* ============================================================
   POURQUOI NOUS
============================================================ */
.vs08-why-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.vs08-why-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(89,183,183,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.vs08-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.vs08-why-item {
    padding: 36px 28px;
    border: 1px solid rgba(89,183,183,0.12);
    border-radius: 20px;
    background: rgba(255,255,255,0.02);
    transition: all 0.35s;
}
.vs08-why-item:hover {
    border-color: rgba(89,183,183,0.35);
    background: rgba(89,183,183,0.06);
    transform: translateY(-5px);
}

.vs08-why-icon { font-size: 28px; margin-bottom: 22px; }

.vs08-why-item h3 {
    font-size: 20px;
    color: white;
    margin-bottom: 12px;
}

.vs08-why-item p {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
    font-family: 'Outfit', sans-serif;
}

/* ============================================================
   DESTINATIONS
============================================================ */
.vs08-dest-section { background: var(--cream); }

.vs08-dest-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.vs08-dest-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 2/3;
    cursor: pointer;
    transition: transform 0.35s;
}
.vs08-dest-card:hover { transform: scale(1.03); }

.vs08-dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.vs08-dest-card:hover img { transform: scale(1.1); }

.vs08-dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,36,36,0.92) 0%, transparent 55%);
}

.vs08-dest-info {
    position: absolute;
    bottom: 20px; left: 18px; right: 18px;
    color: white;
}

.vs08-dest-country {
    font-size: 10px;
    color: var(--teal-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.vs08-dest-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 2px;
}

.vs08-dest-count {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    font-family: 'Outfit', sans-serif;
}

/* ============================================================
   TÉMOIGNAGES
============================================================ */
.vs08-testi-section { background: var(--teal-ultra); }

.vs08-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.vs08-testi-card {
    background: white;
    border-radius: 22px;
    padding: 36px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.vs08-testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(89,183,183,0.15);
}

.vs08-stars {
    position: absolute;
    top: 34px; right: 34px;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
}

.vs08-quote {
    font-size: 52px;
    color: rgba(89,183,183,0.4);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 14px;
}

.vs08-testi-card p {
    font-size: 15px;
    color: var(--dark-mid);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 26px;
    font-family: 'Outfit', sans-serif;
}

.vs08-testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vs08-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
    font-family: 'Outfit', sans-serif;
}

.vs08-author-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--dark);
    font-family: 'Outfit', sans-serif;
    margin: 0;
    font-style: normal;
}

.vs08-author-trip {
    font-size: 12px;
    color: var(--teal);
    margin: 2px 0 0;
    font-family: 'Outfit', sans-serif;
    font-style: normal;
}

/* ============================================================
   CTA SECTION
============================================================ */
.vs08-cta-section {
    padding: 0 80px 100px;
    background: var(--cream);
}

.vs08-cta-inner {
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(15,36,36,0.97) 0%, rgba(26,58,58,0.92) 60%, rgba(89,183,183,0.25) 100%),
        url('https://images.unsplash.com/photo-1587174486073-ae5e5cff23aa?w=1400&q=80') center/cover;
    padding: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.vs08-cta-content h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 14px;
    line-height: 1.2;
}

.vs08-cta-content p {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    max-width: 420px;
    line-height: 1.65;
    font-family: 'Outfit', sans-serif;
}

.vs08-cta-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;
}

/* ============================================================
   FOOTER
============================================================ */
.vs08-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.5);
    padding: 80px 0 40px;
}

.vs08-footer-inner { max-width: 1400px; margin: 0 auto; padding: 0 80px; }

.vs08-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.vs08-footer-brand .vs08-logo-text { color: white; }
.vs08-footer-brand .custom-logo { height: 54px; filter: brightness(0) invert(1); opacity: 0.8; }

.vs08-footer-brand p {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255,255,255,0.38);
    max-width: 280px;
    margin-top: 18px;
    font-family: 'Outfit', sans-serif;
}

.vs08-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

.vs08-footer-contact a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    transition: color 0.2s;
}
.vs08-footer-contact a:hover { color: var(--teal-light); }

.vs08-footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.vs08-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.vs08-footer-col a {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    transition: color 0.2s;
}
.vs08-footer-col a:hover { color: var(--teal-light); }

.vs08-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-family: 'Outfit', sans-serif;
}

.vs08-footer-bottom p { color: rgba(255,255,255,0.35); }
.vs08-footer-bottom em { color: rgba(255,255,255,0.5); font-style: italic; }

.vs08-socials { display: flex; gap: 10px; }

.vs08-socials a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    transition: all 0.25s;
}
.vs08-socials a:hover {
    border-color: var(--teal);
    color: var(--teal-light);
    background: rgba(89,183,183,0.1);
}

/* ============================================================
   RESPONSIVE MOBILE
============================================================ */
@media (max-width: 1024px) {
    .vs08-container { padding: 0 40px; }
    .vs08-nav { padding: 16px 40px; }
    .vs08-header.scrolled .vs08-nav { padding: 10px 40px; }
    .vs08-hero-content { padding: 140px 40px 80px; }
    .vs08-search-section { padding: 0 40px; }
    .vs08-why-grid { grid-template-columns: repeat(2, 1fr); }
    .vs08-dest-grid { grid-template-columns: repeat(3, 1fr); }
    .vs08-cta-section { padding: 0 40px 80px; }
    .vs08-footer-inner { padding: 0 40px; }
    .vs08-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .vs08-hero-stats { right: 40px; bottom: 40px; gap: 28px; }
}

/* ============================================================
   ANIMATIONS SCROLL
============================================================ */
.vs08-animate {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.vs08-animate.vs08-visible {
    opacity: 1;
    transform: translateY(0);
}
.vs08-card:nth-child(2) { transition-delay: 0.1s; }
.vs08-card:nth-child(3) { transition-delay: 0.2s; }
.vs08-why-item:nth-child(2) { transition-delay: 0.1s; }
.vs08-why-item:nth-child(3) { transition-delay: 0.2s; }
.vs08-why-item:nth-child(4) { transition-delay: 0.3s; }
.vs08-dest-card:nth-child(2) { transition-delay: 0.08s; }
.vs08-dest-card:nth-child(3) { transition-delay: 0.16s; }
.vs08-dest-card:nth-child(4) { transition-delay: 0.24s; }
.vs08-dest-card:nth-child(5) { transition-delay: 0.32s; }
.vs08-testi-card:nth-child(2) { transition-delay: 0.12s; }
.vs08-testi-card:nth-child(3) { transition-delay: 0.24s; }

@media (max-width: 768px) {
    .vs08-nav { padding: 14px 24px; }
    .vs08-nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--dark); flex-direction: column; justify-content: center; align-items: center; z-index: 999; }
    .vs08-nav-links.open { display: flex; }
    .vs08-nav-toggle { display: flex; z-index: 1001; }
    .vs08-menu { flex-direction: column; gap: 24px; text-align: center; }
    .vs08-menu li a { font-size: 20px; }
    .vs08-hero-content { padding: 120px 24px 80px; max-width: 100%; }
    .vs08-hero-stats { display: none; }
    .vs08-search-section { margin-top: 0; padding: 20px 24px; }
    .vs08-search-card { flex-direction: column; gap: 16px; }
    .vs08-search-field { padding: 0; border-right: none; border-bottom: 1px solid var(--gray-light); padding-bottom: 16px; }
    .vs08-btn-search { margin-left: 0; width: 100%; }
    .vs08-container { padding: 0 24px; }
    .vs08-section { padding: 60px 0; }
    .vs08-section-header { flex-direction: column; gap: 16px; align-items: flex-start; }
    .vs08-cards-grid { grid-template-columns: 1fr; }
    .vs08-card-featured { flex-direction: column; grid-column: span 1; }
    .vs08-card-featured .vs08-card-img-wrap { width: 100%; }
    .vs08-card-featured .vs08-card-img-wrap img { min-height: 240px; }
    .vs08-why-grid { grid-template-columns: 1fr; }
    .vs08-dest-grid { grid-template-columns: repeat(2, 1fr); }
    .vs08-testi-grid { grid-template-columns: 1fr; }
    .vs08-cta-inner { flex-direction: column; padding: 40px; }
    .vs08-cta-section { padding: 0 24px 60px; }
    .vs08-footer-inner { padding: 0 24px; }
    .vs08-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .vs08-footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ============================================================
   PAGE HERO (pages internes)
============================================================ */
.vs08-page-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.vs08-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,36,36,0.9) 0%, rgba(15,36,36,0.5) 100%);
}
.vs08-page-hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 80px 80px;
    max-width: 700px;
}
.vs08-page-hero-content h1 {
    font-size: clamp(36px, 5vw, 62px);
    color: white;
    margin-bottom: 16px;
}
.vs08-page-hero-content h1 em { color: var(--teal-light); }
.vs08-page-hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 36px;
}
.vs08-page-hero-stats div { text-align: left; }
.vs08-page-hero-stats span {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--teal-light);
}
.vs08-page-hero-stats small {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
}

/* ============================================================
   FILTRES
============================================================ */
.vs08-filters-section {
    background: white;
    padding: 28px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.07);
    position: sticky;
    top: 0;
    z-index: 100;
}
.vs08-filters-bar {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}
.vs08-filter-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 140px;
}
.vs08-filter-group label {
    font-size: 10px;
    font-weight: 700;
    color: var(--teal-dark);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
}
.vs08-filter-group select {
    border: none;
    border-bottom: 2px solid var(--gray-light);
    padding: 8px 0;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    background: transparent;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    transition: border-color 0.2s;
}
.vs08-filter-group select:focus { border-bottom-color: var(--teal); }
.vs08-filter-reset {
    background: none;
    border: 1.5px solid var(--gray-light);
    color: var(--gray);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.vs08-filter-reset:hover { border-color: var(--teal); color: var(--teal); }

/* ============================================================
   PAGE GOLF — LAYOUT
============================================================ */
.vs08-golf-section { background: var(--cream); }
.vs08-golf-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}
.vs08-golf-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* CARTE SÉJOUR */
.vs08-golf-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.35s, box-shadow 0.35s;
    cursor: pointer;
}
.vs08-golf-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.14);
}
.vs08-golf-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.vs08-golf-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.vs08-golf-card:hover .vs08-golf-card-img img { transform: scale(1.07); }
.vs08-golf-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,36,36,0.4) 0%, transparent 50%);
}
.vs08-golf-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.vs08-golf-card-top h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin: 6px 0 8px;
    line-height: 1.3;
}
.vs08-golf-card-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    font-family: 'Outfit', sans-serif;
}
.vs08-golf-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.vs08-golf-card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.vs08-niveau {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
}
.vs08-niveau-debutant     { background: #e8f8f0; color: #2d8a5a; }
.vs08-niveau-intermediaire{ background: #edf8f8; color: var(--teal-dark); }
.vs08-niveau-confirme     { background: #fff3e8; color: #b85c1a; }

.vs08-golf-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--gray-light);
}
.vs08-btn-card {
    display: inline-block;
    color: var(--teal-dark);
    font-weight: 700;
    font-size: 13px;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s;
    white-space: nowrap;
}
.vs08-btn-card:hover { color: var(--teal); letter-spacing: 0.3px; }

/* NO RESULTS */
.vs08-no-results {
    grid-column: span 2;
    padding: 80px 40px;
    text-align: center;
}
.vs08-no-results-inner span { font-size: 48px; display: block; margin-bottom: 20px; }
.vs08-no-results-inner h3 { font-size: 24px; margin-bottom: 12px; }
.vs08-no-results-inner p { color: var(--gray); font-family: 'Outfit', sans-serif; margin-bottom: 24px; }
.vs08-no-results-inner a { color: var(--teal); }

/* ============================================================
   SIDEBAR
============================================================ */
.vs08-golf-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 90px;
}
.vs08-sidebar-card {
    background: white;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.vs08-sidebar-devis {
    background: var(--dark);
    color: white;
    text-align: center;
}
.vs08-sidebar-icon { font-size: 36px; margin-bottom: 14px; }
.vs08-sidebar-devis h3 { color: white; font-size: 20px; margin-bottom: 10px; }
.vs08-sidebar-devis p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.65; font-family: 'Outfit', sans-serif; }

.vs08-sidebar-tel h4,
.vs08-sidebar-inclus h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--teal);
    margin-bottom: 14px;
    font-family: 'Outfit', sans-serif;
}
.vs08-sidebar-tel-num {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}
.vs08-sidebar-hours {
    font-size: 12px;
    color: var(--gray);
    font-family: 'Outfit', sans-serif;
}
.vs08-sidebar-inclus ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vs08-sidebar-inclus li {
    font-size: 14px;
    color: var(--dark);
    font-family: 'Outfit', sans-serif;
    padding-left: 4px;
}

@media (max-width: 1024px) {
    .vs08-golf-layout { grid-template-columns: 1fr; }
    .vs08-golf-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
    .vs08-sidebar-card { flex: 1; min-width: 220px; }
}
@media (max-width: 768px) {
    .vs08-golf-grid { grid-template-columns: 1fr; }
    .vs08-page-hero-content { padding: 120px 24px 60px; }
    .vs08-filters-bar { gap: 16px; }
}
