/* ===========================================
   Indian Forest Ardèche - Charte graphique
   Couleurs :
   - Vert forêt : #1a4d2e
   - Vert clair : #2d6a4f
   - Orange/doré : #e8a838
   - Orange foncé : #d4880f
   - Beige/crème : #faf6f0
   =========================================== */

:root {
    --forest-green: #1a4d2e;
    --forest-green-light: #2d6a4f;
    --forest-green-dark: #143d24;
    --golden-orange: #e8a838;
    --golden-orange-dark: #d4880f;
    --cream: #faf6f0;
    --cream-dark: #f0ebe3;
    --text-dark: #1a2e1a;
    --text-light: #ffffff;
}

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

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* ===========================================
   Animations au scroll
   =========================================== */

/* État initial - éléments cachés */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-fade-in {
    transform: translateY(0);
}

.animate-on-scroll.animate-slide-left {
    transform: translateX(-40px);
}

.animate-on-scroll.animate-slide-right {
    transform: translateX(40px);
}

.animate-on-scroll.animate-scale {
    transform: scale(0.9);
}

/* État visible - après apparition */
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Délais pour les éléments en grille */
.feature-card.animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.feature-card.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.feature-card.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.feature-card.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

.schedule-card.animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.schedule-card.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.schedule-card.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }

/* Désactiver les animations pour les utilisateurs qui préfèrent moins de mouvement */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, system-ui, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background:
        radial-gradient(circle at top left, rgba(26, 77, 46, 0.08), transparent 55%),
        radial-gradient(circle at bottom right, rgba(232, 168, 56, 0.06), transparent 55%),
        var(--cream);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
}

.site-header {
    backdrop-filter: blur(18px);
    background: #515d42;
    border: 1px solid rgba(255,255,255,0.1);
    position: sticky;
    top: 12px;
    z-index: 1000;
    border-radius: 999px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 28px;
    box-shadow: 0 14px 32px rgba(81, 93, 66, 0.35);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.site-header .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 16px;
}

.site-header .logo-img {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.nav a {
    text-decoration: none;
}

.nav-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nav-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.nav-pill:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-1px);
}

.nav-pill-active {
    background: var(--golden-orange);
    color: var(--forest-green-dark);
    border-color: var(--golden-orange);
    font-weight: 600;
}

.site-main {
    padding: 48px 0 64px;
    flex: 1 0 auto;
}

.site-main h1 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: var(--forest-green);
}

.site-main h2 {
    color: var(--forest-green);
    font-weight: 700;
}

.site-main p, .site-main li {
    font-size: 1rem;
    line-height: 1.7;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 40px;
    align-items: center;
    padding: 40px 0 24px;
}

.hero-text p:first-of-type {
    font-size: 1.05rem;
}

.hero-media img {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    border-radius: 18px;
    box-shadow: 0 18px 60px rgba(15, 23, 42, 0.18);
    display: block;
}

.site-main ul {
    margin-left: 20px;
    margin-top: 8px;
}

.feature-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.feature-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px 22px;
    box-shadow: 0 14px 40px rgba(26, 77, 46, 0.08);
    border: 1px solid rgba(26, 77, 46, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(26, 77, 46, 0.12);
}

.feature-card h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--forest-green);
}

.feature-card p {
    font-size: 0.96rem;
    color: #4b5563;
}

.info-strip {
    margin-top: 40px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.1), rgba(232, 168, 56, 0.1));
    padding: 12px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    align-items: center;
    border: 1px solid rgba(26, 77, 46, 0.15);
}

.info-item {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.85rem;
}

.info-label {
    font-weight: 600;
    color: var(--forest-green);
}

.info-value {
    color: #111827;
}

.section-with-media {
    margin-top: 80px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 40px;
    align-items: center;
}

.section-media img {
    width: 100%;
    max-width: 480px;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
    display: block;
}

/* Images responsive */
img {
    max-width: 100%;
    height: auto;
}

.site-footer {
    border-top: 1px solid rgba(26, 77, 46, 0.1);
    padding: 20px 0 24px;
    font-size: 0.85rem;
    color: var(--forest-green-light);
    background: var(--cream-dark);
    flex-shrink: 0;
}

.site-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.footer-main-line {
    width: 100%;
    text-align: center;
}

.arkendia-credit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
    font-size: 0.85rem;
}

.arkendia-credit img {
    height: 14px;
    width: auto;
    display: block;
}

/* ===========================================
   Compteurs animés (stats)
   =========================================== */

/* Stats counters avec cercles animés */
.stats-circles {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 24px 0 8px;
    flex-wrap: wrap;
}

.circle-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.circle-svg {
    width: 140px;
    height: 140px;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: #e0e0e0;
    stroke-width: 8;
}

.circle-progress {
    fill: none;
    stroke: var(--golden-orange);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 2s ease-out;
}

.circle-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--forest-green);
    line-height: 1;
}

.circle-stat .stat-unit {
    font-size: 0.75rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-top: 2px;
}

.circle-stat .stat-label {
    margin-top: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--forest-green);
}

@media (max-width: 600px) {
    .stats-circles {
        gap: 24px;
    }
    
    .circle-svg {
        width: 120px;
        height: 120px;
    }
    
    .circle-stat .stat-number {
        font-size: 1.6rem;
    }
}

/* ===========================================
   Page Parcours - Style visuel complet
   =========================================== */

.courses-hero {
    text-align: center;
    padding: 48px 24px 32px;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-light) 100%);
    color: white;
    border-radius: 24px;
    margin: 20px 0 0 0;
}

.courses-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.courses-intro {
    font-size: 1.2rem;
    opacity: 0.9;
}

.courses-category {
    padding: 32px 24px 48px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Animation des barres de progression au scroll */
.course-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.course-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.course-card:nth-child(1) { transition-delay: 0s; }
.course-card:nth-child(2) { transition-delay: 0.1s; }
.course-card:nth-child(3) { transition-delay: 0.2s; }

.bar-fill {
    width: 0 !important;
    transition: width 1.2s ease-out 0.3s;
}

.course-card.is-visible .bar-fill {
    width: var(--target-width) !important;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 3px solid currentColor;
    margin-bottom: 12px;
}

.category-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
}

.category-header svg {
    flex-shrink: 0;
}

.category-pink { color: #e91e9e; }
.category-green-light { color: #8bc34a; }
.category-green { color: #4caf50; }

.category-description {
    text-align: center;
    font-style: italic;
    color: #666;
    padding: 16px 0 32px;
    border-bottom: 1px solid #eee;
    margin-bottom: 32px;
}

.courses-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.course-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

.course-info-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.course-badge {
    padding: 20px 48px;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    border-radius: 8px;
    text-align: center;
    min-width: 180px;
    margin-bottom: 12px;
}

.badge-pink { background: #e91e9e; }
.badge-green-light { background: #8bc34a; }
.badge-green { background: #4caf50; }
.badge-blue-green { background: linear-gradient(90deg, #4caf50 50%, #03a9f4 50%); }
.badge-blue { background: #03a9f4; }
.badge-red { background: #e53935; }
.badge-gold { background: #f9c12e; }

.course-age {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: center;
}

.color-pink { color: #e91e9e; }
.color-green-light { color: #8bc34a; }
.color-green { color: #4caf50; }
.color-blue { color: #03a9f4; }
.color-red { color: #e53935; }
.color-gold { color: #f9c12e; }

.course-stats {
    width: 100%;
}

.stat-bar {
    margin-bottom: 12px;
}

.stat-bar .stat-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #666;
    letter-spacing: 0.03em;
    margin-bottom: 4px;
}

.bar-container {
    width: 100%;
    height: 16px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 2px 0 0 2px;
    transition: width 1s ease-out;
}

.bar-pink { background: #e91e9e; }
.bar-green-light { background: #8bc34a; }
.bar-green { background: #4caf50; }
.bar-blue { background: #03a9f4; }
.bar-red { background: #e53935; }
.bar-gold { background: #f9c12e; }

.course-info-right h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.course-info-right .course-note {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.course-info-right ul {
    list-style: none;
    padding: 0;
}

.course-info-right li {
    padding: 4px 0;
    font-size: 0.95rem;
    color: #444;
}

.course-info-right li::before {
    content: "– ";
    color: #999;
}

.course-reward {
    margin-top: 16px;
    font-weight: 600;
    color: var(--golden-orange);
    font-size: 1rem;
}

.course-card-highlight {
    background: linear-gradient(135deg, #fffde7 0%, #fff8e1 100%);
    padding: 24px;
    border-radius: 12px;
    border: 2px solid #f9c12e;
}

.courses-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 48px 24px;
    background: var(--cream);
}

@media (max-width: 768px) {
    .courses-hero h1 {
        font-size: 1.8rem;
    }
    
    .courses-intro {
        font-size: 1rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
    }
    
    .category-header h2 {
        font-size: 1.2rem;
    }
    
    .course-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .course-info-left {
        align-items: center;
    }
    
    .course-badge {
        padding: 16px 32px;
        font-size: 1.3rem;
    }
    
    .courses-cta {
        flex-direction: column;
        align-items: center;
    }
}

/* ===========================================
   Boutons CTA - Style Indian Forest
   =========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--golden-orange);
    color: var(--forest-green-dark);
    box-shadow: 0 4px 14px rgba(232, 168, 56, 0.4);
}

.btn-primary:hover {
    background: var(--golden-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 168, 56, 0.5);
}

.btn-secondary {
    background: var(--forest-green);
    color: var(--text-light);
    box-shadow: 0 4px 14px rgba(26, 77, 46, 0.3);
}

.btn-secondary:hover {
    background: var(--forest-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 77, 46, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--forest-green);
    border: 2px solid var(--forest-green);
}

.btn-outline:hover {
    background: var(--forest-green);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Hero amélioré */
.hero-text h1 span {
    color: var(--golden-orange);
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

/* Badges colorés pour les parcours */
.badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 4px 6px 4px 0;
}

.badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
}

.badge-pink { background: #fce7f3; color: #be185d; }
.badge-green { background: #dcfce7; color: #166534; }
.badge-blue { background: #dbeafe; color: #1e40af; }
.badge-red { background: #fee2e2; color: #b91c1c; }
.badge-gold { background: #fef3c7; color: #92400e; }
.badge-black { background: #1f2937; color: #ffffff; }
.badge-new { background: var(--golden-orange); color: var(--forest-green-dark); }

/* Icônes avec couleur thématique */
.icon-forest {
    color: var(--forest-green);
}

.icon-golden {
    color: var(--golden-orange);
}

/* Section mise en avant */
.highlight-box {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-light) 100%);
    color: var(--text-light);
    padding: 32px;
    border-radius: 18px;
    margin: 40px 0;
}

.highlight-box h2,
.highlight-box h3 {
    color: var(--text-light);
}

.highlight-box .accent {
    color: var(--golden-orange);
}

/* Liens stylisés */
a {
    color: var(--forest-green);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--golden-orange-dark);
}

/* Liste avec puces personnalisées */
.site-main ul li::marker {
    color: var(--golden-orange);
}

/* ===========================================
   Tableau de tarifs
   =========================================== */

.pricing-intro {
    margin-bottom: 32px;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.pricing-table-container {
    overflow-x: auto;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(26, 77, 46, 0.08);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
}

.pricing-table thead {
    background: var(--forest-green);
    color: var(--text-light);
}

.pricing-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.pricing-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(26, 77, 46, 0.08);
    font-size: 0.95rem;
}

/* Tableau centré */
.pricing-table-centered th,
.pricing-table-centered td {
    text-align: center;
}

.pricing-table-centered th:first-child,
.pricing-table-centered td:first-child {
    text-align: left;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr:hover {
    background: rgba(26, 77, 46, 0.03);
}

.pricing-table tbody tr:nth-child(even) {
    background: rgba(250, 246, 240, 0.5);
}

.pricing-table tbody tr:nth-child(even):hover {
    background: rgba(26, 77, 46, 0.05);
}

.pricing-note {
    font-size: 0.95rem;
    color: var(--forest-green);
}

/* ===========================================
   Alerte Pas de CB
   =========================================== */

.no-cb-alert {
    margin-top: 40px;
    padding: 24px 32px;
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border: 3px solid #dc2626;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.no-cb-icon {
    width: 70px;
    height: 70px;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.no-cb-content {
    flex: 1;
    min-width: 200px;
}

.no-cb-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #dc2626;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.no-cb-text {
    font-size: 1rem;
    color: #7f1d1d;
}

/* ===========================================
   Drapeaux langues
   =========================================== */

.languages-flags {
    display: flex;
    gap: 24px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.flag-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(26, 77, 46, 0.05);
    border-radius: 12px;
}

.flag-emoji {
    font-size: 2rem;
    line-height: 1;
}

@media (max-width: 600px) {
    .no-cb-alert {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .no-cb-title {
        font-size: 1.2rem;
    }
    
    .languages-flags {
        flex-direction: column;
        gap: 12px;
    }
    
    .flag-item {
        justify-content: center;
    }
}

/* ===========================================
   Horaires
   =========================================== */

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.schedule-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 14px 40px rgba(26, 77, 46, 0.08);
    border-left: 4px solid var(--golden-orange);
}

.schedule-card h3 {
    color: var(--forest-green);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.schedule-card p {
    margin: 8px 0;
    color: var(--text-dark);
}

/* ===========================================
   Icônes dans les cartes
   =========================================== */

.card-icon {
    margin-bottom: 16px;
}

.card-icon-large {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.feature-card-icon {
    text-align: center;
    padding-top: 32px;
}

.feature-card-icon h2 {
    margin-top: 8px;
}

/* ===========================================
   Grille des distances
   =========================================== */

.distance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}

.distance-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.distance-item svg {
    flex-shrink: 0;
}

/* ===========================================
   Carte Google Maps
   =========================================== */

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(26, 77, 46, 0.12);
}

.map-wrapper iframe {
    display: block;
}

/* ===========================================
   Grille de contact
   =========================================== */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 24px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(26, 77, 46, 0.08);
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(26, 77, 46, 0.12);
}

.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(26, 77, 46, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--forest-green-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-top: 4px;
}

/* ===========================================
   Section réseaux sociaux
   =========================================== */

.social-section {
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.05), rgba(232, 168, 56, 0.05));
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid rgba(26, 77, 46, 0.08);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(26, 77, 46, 0.08);
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 2px solid transparent;
}

.social-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(26, 77, 46, 0.15);
}

.social-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.social-card:hover .social-icon {
    transform: scale(1.1);
}

.social-instagram .social-icon {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-facebook .social-icon {
    background: #1877f2;
    color: white;
}

.social-google .social-icon {
    background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
    color: white;
}

.social-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--forest-green);
}

.social-handle {
    font-size: 0.9rem;
    color: var(--forest-green-light);
    margin-top: 4px;
}

.social-instagram:hover {
    border-color: #e6683c;
}

.social-facebook:hover {
    border-color: #1877f2;
}

.social-google:hover {
    border-color: #4285f4;
}

@media (max-width: 600px) {
    .distance-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .social-section {
        padding: 28px 20px;
        border-radius: 18px;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .map-links {
        flex-direction: column;
    }
    
    .map-links .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .pricing-table th,
    .pricing-table td {
        padding: 12px 14px;
        font-size: 0.85rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-cta .btn {
        text-align: center;
    }
}

/* ===========================================
   RESPONSIVE - Mobile First Enhancements
   =========================================== */

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 10px;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 100;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-light);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.25s ease,
                width 0.25s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* ===========================================
   NOUVEAU DESIGN LOISIR - Hero Full
   =========================================== */

.hero-full {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/assets/images/accrobranche.png') center/cover no-repeat;
    overflow: hidden;
    margin: 20px 0 0 0;
    padding: 80px 24px 80px;
    border-radius: 24px;
}

.hero-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 40px 50px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--forest-green);
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: none;
}

.hero-title .highlight-text {
    color: var(--golden-orange);
    display: inline-block;
    position: relative;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 32px;
    font-weight: 500;
    text-shadow: none;
}

.hero-full .hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================================
   STATS BAR - Compteurs horizontaux
   =========================================== */

.stats-bar {
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin: 24px 0 0;
    border-radius: 24px;
    position: relative;
    z-index: 10;
}

.stats-bar-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 20px;
    border-right: 1px solid #eee;
}

.stat-box:last-child {
    border-right: none;
}

.stat-icon {
    color: var(--golden-orange);
    margin-bottom: 12px;
}

/* Widget Météo */
.weather-widget {
    background: linear-gradient(135deg, #e8f4fd 0%, #d4edfc 100%);
    border-radius: 12px;
    margin: 8px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.weather-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 120, 200, 0.15);
}

.weather-widget .stat-text {
    color: #0077b6;
    font-weight: 600;
}

/* Widget météo amélioré */
.weather-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
}

.weather-widget .weather-icon {
    font-size: 2.2rem;
    animation: weatherBounce 2s ease-in-out infinite;
}

.weather-temp-container {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.weather-widget .weather-temp {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0077b6;
    line-height: 1;
    transition: all 0.5s ease;
}

.weather-widget .weather-unit {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0077b6;
}

.weather-desc {
    font-size: 0.75rem;
    color: #0077b6;
    opacity: 0.8;
    margin-top: 2px;
}

.weather-loaded {
    animation: weatherAppear 0.5s ease-out;
}

@keyframes weatherBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes weatherAppear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Météo prévisions sur page réservation */
.weather-forecast {
    background: linear-gradient(135deg, #e8f4fd 0%, #d4edfc 100%);
    padding: 12px 16px;
    border-radius: 10px;
    margin-top: 8px;
    align-items: center;
    gap: 10px;
}

.weather-forecast .forecast-icon {
    font-size: 1.5rem;
}

.weather-forecast .forecast-info {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0077b6;
}

.weather-forecast .forecast-desc {
    font-weight: 500;
    opacity: 0.8;
}

.forecast-appear {
    animation: forecastSlide 0.4s ease-out;
}

@keyframes forecastSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-box .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--forest-green);
    line-height: 1;
}

.stat-box .stat-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    margin-top: 4px;
}

/* ===========================================
   FUN INTRO - Accroche ludique
   =========================================== */

.fun-intro {
    padding: 60px 24px;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--forest-green);
    margin-bottom: 16px;
}

.section-title .emoji-icon {
    font-size: 1.5rem;
}

.intro-text {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

/* ===========================================
   PARCOURS CARDS - Cartes colorées
   =========================================== */

.parcours-preview {
    padding: 60px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(26,77,46,0.03) 100%);
}

.parcours-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.parcours-card {
    background: white;
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.parcours-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.parcours-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.parcours-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.parcours-card p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 12px;
}

.card-age {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

/* Couleurs des cards */
.card-pink::before { background: #e91e9e; }
.card-pink .card-age { background: #e91e9e; }

.card-green::before { background: #8bc34a; }
.card-green .card-age { background: #8bc34a; }

.card-blue::before { background: #03a9f4; }
.card-blue .card-age { background: #03a9f4; }

.card-red::before { background: #e53935; }
.card-red .card-age { background: #e53935; }

.card-gold::before { background: linear-gradient(135deg, #f9c12e 0%, #e8a838 100%); }
.card-gold .card-age { background: linear-gradient(135deg, #f9c12e 0%, #e8a838 100%); }

.cta-center {
    text-align: center;
}

/* ===========================================
   TYROLIENNE SECTION - Mise en avant
   =========================================== */

.tyrolienne-section {
    padding: 80px 24px;
    background: var(--forest-green);
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    margin: 0;
}

.tyrolienne-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255,255,255,0.03);
    transform: rotate(15deg);
}

.tyrolienne-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge-new {
    display: inline-block;
    background: var(--golden-orange);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.tyrolienne-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tyrolienne-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.tyrolienne-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.tyro-stat {
    text-align: center;
}

.tyro-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--golden-orange);
    line-height: 1;
    animation: countUp 1s ease-out;
}

@keyframes countUp {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

.tyro-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 4px;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tyrolienne-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tyrolienne-visual img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0,0,0,0.5);
}

/* ===========================================
   MEDIA SECTION (Video)
   =========================================== */

.media-section {
    padding: 60px 0;
    background: var(--cream);
}

.media-video-single {
    max-width: 500px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.media-video-single video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

/* ===========================================
   EXPLOR GAME GALLERY
   =========================================== */

.explor-gallery {
    padding: 48px 24px;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    aspect-ratio: 3/4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 500px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .explor-gallery {
        padding: 32px 20px;
    }
}

/* Responsive media section */
@media (max-width: 900px) {
    .media-section {
        margin-top: 40px;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .media-video {
        border-radius: 24px 24px 0 0;
    }
    
    .media-item {
        padding: 40px 24px;
    }
    
    .media-photo {
        min-height: 400px;
    }
    
    .media-wrapper {
        max-width: 240px;
    }
}

/* ===========================================
   BONUS ACTIVITIES
   =========================================== */

.bonus-activities {
    padding: 80px 24px;
    background: white;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.bonus-card {
    background: var(--cream);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.bonus-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 12px;
}

.bonus-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.bonus-price {
    display: inline-block;
    background: var(--golden-orange);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
}

/* ===========================================
   QUICK INFO - Infos pratiques rapides
   =========================================== */

.quick-info {
    padding: 60px 24px;
    background: linear-gradient(180deg, white 0%, var(--cream) 100%);
}

.info-card-main {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    text-align: center;
}

.info-card-main h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--forest-green);
    margin-bottom: 32px;
}

.info-details {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

.info-item svg {
    color: var(--golden-orange);
    flex-shrink: 0;
    margin-top: 4px;
}

.info-item strong {
    color: var(--forest-green);
}

.text-muted {
    color: #888;
    font-size: 0.9rem;
}

.distance-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.distance-badge {
    background: var(--cream);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--forest-green);
}

/* ===========================================
   CTA FINAL
   =========================================== */

.cta-final {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--golden-orange) 0%, #d4880f 100%);
    text-align: center;
    border-radius: 24px;
    margin: 0;
}

.cta-final h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.cta-final p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===========================================
   BOUTONS SUPPLÉMENTAIRES
   =========================================== */

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-xl {
    padding: 20px 48px;
    font-size: 1.15rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--forest-green);
}

.btn-bounce {
    animation: bounce-gentle 2s infinite;
}

@keyframes bounce-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Tablet - max 900px */
@media (max-width: 900px) {
    .container {
        padding: 0 24px;
    }
    
    .site-header {
        border-radius: 24px;
        padding: 0 20px;
        top: 8px;
        margin: 0 12px;
        max-width: calc(100% - 24px);
    }
    
    .header-inner {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px 16px;
        padding: 12px 0;
    }
    
    .site-header .logo {
        margin-right: 0;
        width: 100%;
        justify-content: center;
    }
    
    .site-header .logo-img {
        height: 40px;
        max-width: 130px;
    }
    
    .nav-pills {
        justify-content: center;
        gap: 8px;
    }
    
    .nav-pill {
        padding: 6px 14px;
        font-size: 0.8rem;
    }

    .site-main {
        padding: 32px 0 48px;
    }
    
    .site-main h1 {
        font-size: 2rem;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
        padding: 24px 0;
    }

    .hero-text {
        max-width: 100%;
        margin: 0 auto 20px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-media img {
        max-width: 100%;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .info-strip {
        border-radius: 18px;
        padding: 16px 20px;
        justify-content: center;
    }

    .section-with-media {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
        margin-top: 48px;
    }
    
    .section-media img {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .highlight-box {
        padding: 24px 20px;
        border-radius: 16px;
        margin: 32px 0;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Nouveau design loisir - Tablet */
    .hero-full {
        min-height: 60vh;
        padding: 60px 20px 50px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-bar {
        margin: -20px 16px 0;
    }
    
    .stats-bar-inner {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stat-box {
        padding: 24px 16px;
    }
    
    .stat-box:nth-child(3) {
        border-right: none;
    }
    
    .stat-box:nth-child(4),
    .stat-box:nth-child(5) {
        border-top: 1px solid #eee;
    }
    
    .weather-widget {
        grid-column: span 1;
    }
    
    .parcours-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tyrolienne-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tyrolienne-visual {
        order: -1;
    }
    
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile - max 600px */
@media (max-width: 600px) {
    .container {
        padding: 0 24px;
    }
    
    .site-header {
        border-radius: 18px;
        padding: 0 20px;
        top: 8px;
        margin: 0 20px;
        max-width: calc(100% - 32px);
    }
    
    .header-inner {
        padding: 12px 0;
        gap: 10px;
        flex-wrap: wrap;
        position: relative;
    }
    
    .site-header .logo {
        margin-right: auto;
        width: auto;
        justify-content: flex-start;
    }
    
    .site-header .logo-img {
        height: 36px;
        max-width: 120px;
    }
    
    /* Afficher le bouton hamburger */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Menu mobile - animation slide down */
    .nav-pills {
        position: absolute;
        top: 100%;
        left: -20px;
        right: -20px;
        background: #515d42;
        flex-direction: column;
        padding: 0 20px;
        border-radius: 0 0 18px 18px;
        gap: 0;
        box-shadow: 0 14px 32px rgba(81, 93, 66, 0.35);
        margin-top: 12px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        display: flex;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.3s ease,
                    padding 0.3s ease;
    }
    
    .nav-pills.nav-open {
        max-height: 500px;
        opacity: 1;
        padding: 16px 20px;
        gap: 8px;
    }
    
    .nav-pill {
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-pills.nav-open .nav-pill {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-pills.nav-open .nav-pill:nth-child(1) { transition-delay: 0.05s; }
    .nav-pills.nav-open .nav-pill:nth-child(2) { transition-delay: 0.1s; }
    .nav-pills.nav-open .nav-pill:nth-child(3) { transition-delay: 0.15s; }
    .nav-pills.nav-open .nav-pill:nth-child(4) { transition-delay: 0.2s; }
    .nav-pills.nav-open .nav-pill:nth-child(5) { transition-delay: 0.25s; }
    .nav-pills.nav-open .nav-pill:nth-child(6) { transition-delay: 0.3s; }
    
    .nav-pill {
        padding: 14px 16px;
        font-size: 0.95rem;
        text-align: center;
        width: 100%;
        border-radius: 12px;
    }
    
    .site-main {
        padding: 32px 0 48px;
    }
    
    .site-main h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .site-main h2 {
        font-size: 1.2rem;
    }
    
    .site-main p, .site-main li {
        font-size: 0.95rem;
    }
    
    /* Nouveau design loisir - Mobile 600px */
    .hero-full {
        min-height: 55vh;
        padding: 50px 20px 40px;
        margin: -32px -24px 0;
    }
    
    .hero-content {
        padding: 32px 24px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .hero-full .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-full .hero-cta .btn {
        width: 100%;
    }
    
    .stats-bar {
        margin: -20px 16px 0;
        border-radius: 16px;
    }
    
    .stats-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-box {
        padding: 20px 12px;
    }
    
    .stat-box:nth-child(2),
    .stat-box:nth-child(4) {
        border-right: none;
    }
    
    .stat-box:nth-child(3),
    .stat-box:nth-child(4),
    .stat-box:nth-child(5) {
        border-top: 1px solid #eee;
    }
    
    .weather-widget {
        grid-column: span 2;
        margin: 8px;
    }
    
    .stat-box .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-box .stat-text {
        font-size: 0.8rem;
    }
    
    .weather-widget .weather-temp {
        font-size: 2rem;
    }
    
    .fun-intro {
        padding: 40px 16px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .parcours-preview {
        padding: 40px 16px;
    }
    
    .parcours-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .parcours-card {
        padding: 24px 16px;
    }
    
    .card-icon {
        font-size: 2.2rem;
    }
    
    .parcours-card h3 {
        font-size: 0.9rem;
    }
    
    .parcours-card p {
        font-size: 0.8rem;
    }
    
    .card-age {
        padding: 5px 12px;
        font-size: 0.7rem;
    }
    
    .tyrolienne-section {
        padding: 50px 20px;
    }
    
    .tyrolienne-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tyrolienne-visual {
        order: -1;
    }
    
    .tyrolienne-text h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .tyrolienne-desc {
        font-size: 1rem;
        text-align: center;
    }
    
    .badge-new {
        display: block;
        text-align: center;
    }
    
    .tyrolienne-stats {
        justify-content: center;
    }
    
    .tyro-number {
        font-size: 2.8rem;
    }
    
    .bonus-activities {
        padding: 50px 20px;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bonus-card {
        padding: 32px 24px;
    }
    
    .quick-info {
        padding: 40px 20px;
    }
    
    .info-card-main {
        padding: 32px 20px;
    }
    
    .info-card-main h2 {
        font-size: 1.4rem;
    }
    
    .info-details {
        flex-direction: column;
        gap: 20px;
    }
    
    .info-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    
    .distance-badges {
        gap: 8px;
    }
    
    .distance-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .cta-final {
        padding: 50px 20px;
    }
    
    .cta-final h2 {
        font-size: 1.8rem;
    }
    
    .cta-final p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .btn-xl {
        padding: 16px 32px;
        font-size: 1.05rem;
    }
    
    /* Ancien design - garder la compatibilité */
    .hero {
        padding: 16px 0;
        gap: 24px;
    }
    
    .hero-text p:first-of-type {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .hero-cta .btn {
        text-align: center;
        width: 100%;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .feature-grid {
        margin-top: 32px;
        gap: 16px;
    }
    
    .feature-card {
        padding: 24px 20px;
        border-radius: 16px;
    }
    
    .feature-card h2 {
        font-size: 1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .badge {
        padding: 4px 10px;
        font-size: 0.65rem;
        margin: 3px 4px 3px 0;
    }
    
    .badge-container {
        gap: 6px;
        margin: 10px 0;
    }
    
    .info-strip {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 16px;
        padding: 20px;
        gap: 12px;
    }
    
    .info-item {
        width: 100%;
        font-size: 0.85rem;
    }
    
    .highlight-box {
        padding: 24px 20px;
        border-radius: 16px;
        margin: 24px 0;
    }
    
    .highlight-box h2 {
        font-size: 1.1rem;
    }
    
    .section-with-media {
        margin-top: 40px;
        gap: 24px;
    }
    
    .section-media img {
        border-radius: 14px;
    }
    
    .schedule-card {
        padding: 20px;
        border-radius: 14px;
    }
    
    .schedule-card h3 {
        font-size: 1rem;
    }
    
    /* Pricing table mobile */
    .pricing-table-container {
        border-radius: 14px;
        margin: 0;
        width: 100%;
    }
    
    .pricing-table {
        font-size: 0.8rem;
    }
    
    .pricing-table th {
        padding: 12px 8px;
        font-size: 0.75rem;
    }
    
    .pricing-table td {
        padding: 10px 8px;
        font-size: 0.8rem;
    }
    
    /* Footer mobile */
    .site-footer {
        padding: 16px 0 20px;
    }
    
    .arkendia-credit {
        font-size: 0.8rem;
    }
}

/* Very small screens - max 380px */
@media (max-width: 380px) {
    .container {
        padding: 0 20px;
    }
    
    .site-header {
        margin: 0 16px;
        max-width: calc(100% - 32px);
        padding: 0 16px;
    }
    
    .nav-pills {
        left: -16px;
        right: -16px;
        padding: 0 16px;
    }
    
    .nav-pills.nav-open {
        padding: 14px 16px;
    }
    
    .nav-pill {
        padding: 12px 14px;
        font-size: 0.85rem;
    }
    
    .site-main h1 {
        font-size: 1.4rem;
    }
    
    .btn {
        padding: 12px 18px;
        font-size: 0.85rem;
    }
    
    .feature-card {
        padding: 20px 18px;
    }
    
    .highlight-box {
        padding: 20px 18px;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 10px 8px;
        font-size: 0.75rem;
    }
    
    /* Nouveau design loisir - Très petit mobile */
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .stat-box .stat-number {
        font-size: 2rem;
    }
    
    .parcours-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .parcours-card {
        padding: 20px 14px;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    .parcours-card h3 {
        font-size: 0.85rem;
    }
    
    .tyrolienne-text h2 {
        font-size: 1.8rem;
    }
    
    .tyro-number {
        font-size: 2.5rem;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .info-details {
        flex-direction: column;
        gap: 24px;
    }
    
    .cta-final h2 {
        font-size: 1.8rem;
    }
}

/* Landscape phone adjustments */
@media (max-width: 900px) and (orientation: landscape) {
    .hero {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    
    .hero-cta {
        justify-content: flex-start;
    }
    
    .section-with-media {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
}

/* Print styles */
@media print {
    .site-header,
    .site-footer,
    .btn,
    .hero-cta {
        display: none;
    }
    
    .site-main {
        padding: 0;
    }
    
    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===========================================
   Page de Réservation - Booking
   =========================================== */

/* Hero Booking */
.hero-booking {
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.85), rgba(45, 106, 79, 0.8)), 
                url('/assets/images/hero-accrobranche.jpg') center/cover no-repeat;
    min-height: 40vh;
}

/* Section principale */
.booking-section {
    padding: 60px 20px 80px;
    background: var(--cream);
}

.booking-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* ===========================================
   BOOKING TYPE SELECTOR
   =========================================== */

.booking-type-selector {
    text-align: center;
    padding: 40px 0;
}

.booking-type-selector h2 {
    font-size: 1.5rem;
    color: var(--forest-green);
    margin-bottom: 32px;
}

.booking-type-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.booking-type-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 40px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.booking-type-card:hover {
    border-color: var(--golden-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.booking-type-card .type-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-type-card .type-icon svg {
    stroke: var(--forest-green);
}

.booking-type-card h3 {
    font-size: 1.3rem;
    color: var(--forest-green);
    margin-bottom: 12px;
}

.booking-type-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.group-badge {
    display: inline-block;
    margin-top: 16px;
    padding: 6px 16px;
    background: var(--golden-orange);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
}

.btn-back-type {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--forest-green);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    padding: 12px 0;
    margin-bottom: 24px;
    transition: color 0.2s ease;
}

.btn-back-type:hover {
    color: var(--golden-orange);
}

/* ===========================================
   GROUP BOOKING FORM
   =========================================== */

.group-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.group-form-header h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.5rem;
    color: var(--forest-green);
    margin-bottom: 12px;
}

.group-form-header p {
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

.form-section {
    background: white;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.form-section h3 {
    font-size: 1.1rem;
    color: var(--forest-green);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--cream);
}

.form-hint {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-top: 6px;
}

.group-confirmation {
    text-align: center;
    padding: 60px 20px;
}

@media (max-width: 600px) {
    .booking-type-options {
        grid-template-columns: 1fr;
    }
    
    .booking-type-card {
        padding: 30px 20px;
    }
    
    .form-section {
        padding: 24px 16px;
    }
}

/* Étapes */
.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.booking-steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 24px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cream-dark);
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.step span {
    font-size: 0.85rem;
    color: #999;
    font-weight: 600;
    transition: color 0.3s ease;
}

.step.active .step-number {
    background: var(--golden-orange);
    color: white;
    box-shadow: 0 4px 12px rgba(232, 168, 56, 0.4);
}

.step.active span {
    color: var(--forest-green);
}

.step.completed .step-number {
    background: var(--forest-green);
    color: white;
}

.step.completed span {
    color: var(--forest-green);
}

.step-line {
    width: 60px;
    height: 3px;
    background: var(--cream-dark);
    border-radius: 2px;
}

/* Formulaire */
.booking-form {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.calendar-section h2,
.slot-section h2,
.booking-step-content h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    color: var(--forest-green);
    margin-bottom: 24px;
}

/* Calendrier */
.calendar-widget {
    background: var(--cream);
    border-radius: 16px;
    padding: 20px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.calendar-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--forest-green);
}

.calendar-nav {
    width: 36px;
    height: 36px;
    border: none;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.calendar-nav:hover {
    background: var(--golden-orange);
    color: white;
}

.calendar-nav svg {
    pointer-events: none;
}

.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.calendar-days-header span {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #999;
    padding: 8px 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.calendar-day.empty {
    background: transparent;
}

.calendar-day.past,
.calendar-day.unavailable {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.available {
    background: white;
    color: var(--forest-green);
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.calendar-day.available:hover {
    background: var(--golden-orange);
    color: white;
    transform: scale(1.05);
}

.calendar-day.weekend {
    background: #e8f5e9;
}

.calendar-day.summer {
    background: #fff8e1;
}

.calendar-day.selected {
    background: var(--forest-green) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(26, 77, 46, 0.3);
}

/* Légende calendrier */
.calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--cream-dark);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #666;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 4px;
}

.legend-dot.available {
    background: white;
    border: 2px solid var(--forest-green);
}

.legend-dot.weekend {
    background: #e8f5e9;
}

.legend-dot.unavailable {
    background: #eee;
}

/* Créneaux horaires */
.slot-info-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff8e1;
    padding: 16px 20px;
    border-radius: 12px;
    color: #856404;
    font-size: 0.95rem;
}

.time-slots {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.time-slot input {
    display: none;
}

.slot-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--cream);
    border: 2px solid transparent;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slot-card:hover {
    border-color: var(--golden-orange);
    background: white;
}

.time-slot input:checked + .slot-card {
    border-color: var(--forest-green);
    background: white;
    box-shadow: 0 4px 16px rgba(26, 77, 46, 0.15);
}

.slot-icon {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--golden-orange);
}

.time-slot input:checked + .slot-card .slot-icon {
    background: var(--forest-green);
    color: white;
}

.slot-details {
    flex: 1;
}

.slot-details strong {
    display: block;
    font-size: 1.1rem;
    color: var(--forest-green);
    margin-bottom: 4px;
}

.slot-time {
    font-size: 0.9rem;
    color: #666;
}

.slot-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slot-check svg {
    opacity: 0;
    color: white;
}

.time-slot input:checked + .slot-card .slot-check {
    background: var(--forest-green);
    border-color: var(--forest-green);
}

.time-slot input:checked + .slot-card .slot-check svg {
    opacity: 1;
}

/* Récapitulatif sélection */
.selected-summary {
    margin-top: 24px;
    padding: 20px;
    background: linear-gradient(135deg, var(--forest-green), var(--forest-green-light));
    border-radius: 16px;
    color: white;
}

.selected-summary h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    margin-bottom: 12px;
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

/* Navigation booking */
.booking-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--cream-dark);
}

.booking-nav .btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-nav .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Étape 2 - Participants */
.participants-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.participants-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.participant-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 24px;
}

.participant-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.participant-icon {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.participant-header h3 {
    font-size: 1.1rem;
    color: var(--forest-green);
    margin-bottom: 2px;
}

.participant-age {
    font-size: 0.85rem;
    color: #888;
}

.participant-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.counter-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: white;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-green);
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.counter-btn:hover {
    background: var(--golden-orange);
    color: white;
}

.participant-counter input {
    width: 60px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest-green);
    border: none;
    background: transparent;
    font-family: inherit;
}

.total-participants-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, var(--golden-orange), var(--golden-orange-dark));
    border-radius: 14px;
    color: white;
    font-size: 1.1rem;
}

.total-participants-box strong {
    font-size: 1.5rem;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
    padding: 16px 20px;
    background: #fff8e1;
    border-radius: 12px;
}

.info-box p {
    font-size: 0.9rem;
    color: #856404;
    line-height: 1.5;
}

/* Étape 3 - Formulaire contact */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--forest-green);
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--cream-dark);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--golden-orange);
    box-shadow: 0 0 0 4px rgba(232, 168, 56, 0.15);
}

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

/* Récapitulatif final */
.booking-summary-final {
    margin: 24px 0;
    padding: 24px;
    background: var(--cream);
    border-radius: 16px;
}

.booking-summary-final h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--forest-green);
    margin-bottom: 16px;
}

.final-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.final-summary-item {
    text-align: center;
}

.final-summary-item .label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.final-summary-item .value {
    font-weight: 700;
    color: var(--forest-green);
}

/* Checkbox */
.checkbox-group {
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.checkbox-label input {
    display: none;
}

.checkmark {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid var(--cream-dark);
    border-radius: 6px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: 2px;
}

.checkbox-label input:checked + .checkmark {
    background: var(--forest-green);
    border-color: var(--forest-green);
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 0.85rem;
}

.checkbox-label a {
    color: var(--golden-orange);
    text-decoration: underline;
}

/* Confirmation */
.booking-confirmation {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.confirmation-icon {
    margin-bottom: 24px;
    animation: confirmPop 0.5s ease;
}

@keyframes confirmPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.booking-confirmation h2 {
    font-size: 2rem;
    color: var(--forest-green);
    margin-bottom: 12px;
}

.booking-confirmation > p {
    color: #666;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 32px;
}

.confirmation-details {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 24px 32px;
    background: var(--cream);
    border-radius: 16px;
    margin-bottom: 24px;
}

.detail-item {
    font-size: 0.95rem;
    color: var(--forest-green);
}

.confirmation-contact {
    margin-bottom: 32px;
}

.confirmation-contact p {
    color: #666;
    margin-bottom: 8px;
}

.confirmation-contact a {
    color: var(--golden-orange);
    font-weight: 600;
}

/* Section contact alternative */
.booking-contact-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--forest-green), var(--forest-green-light));
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.contact-content h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.contact-content > p {
    opacity: 0.9;
    margin-bottom: 32px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-option:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--golden-orange);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details {
    text-align: left;
}

.contact-details strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.contact-details span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Group Booking Form */
.group-booking-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(243, 156, 18, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
}

.group-form-header {
    text-align: center;
    margin-bottom: 32px;
}

.group-form-header h3 {
    font-size: 1.6rem;
    color: #F39C12;
    margin-bottom: 8px;
}

.group-form-header p {
    color: rgba(255, 255, 255, 0.7);
}

.form-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.form-grid-4 label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.form-grid-4 input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-grid-4 input:focus {
    outline: none;
    border-color: #F39C12;
    background: rgba(0, 0, 0, 0.4);
}

/* Responsive Booking */
@media (max-width: 900px) {
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .participants-grid,
    .participants-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-steps {
        padding: 16px;
    }
    
    .booking-steps .step {
        padding: 0 12px;
    }
    
    .step-line {
        width: 30px;
    }
    
    .group-booking-form {
        padding: 24px;
    }
}

@media (max-width: 600px) {
    .booking-form {
        padding: 24px 20px;
    }
    
    .booking-steps .step span {
        display: none;
    }
    
    .booking-steps .step {
        padding: 0 8px;
    }
    
    .step-line {
        width: 20px;
    }
    
    .form-grid,
    .form-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .participants-grid,
    .participants-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .final-summary-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .contact-option {
        width: 100%;
        justify-content: flex-start;
    }
    
    .slot-card {
        padding: 16px;
    }
    
    .slot-icon {
        width: 48px;
        height: 48px;
    }
    
    .group-booking-form {
        padding: 20px;
    }
}

