/* ===================================================================
   ESSENTES PILATES — Main Stylesheet
   Palette : marron → caramel → orange
   =================================================================== */

/* ---------- Google Fonts (loaded in HTML) ---------- */

:root {
    /* Browns */
    --brown-900: #2C1810;
    --brown-800: #3E2723;
    --brown-700: #4E342E;
    --brown-600: #5D4037;
    --brown-500: #6D4C41;
    --brown-400: #795548;
    --brown-300: #8D6E63;
    --brown-200: #A1887F;
    --brown-100: #BCAAA4;
    --brown-50:  #EFEBE9;

    /* Warm accents */
    --caramel:       #C68B59;
    --amber:         #D4915E;
    --orange:        #E8985A;
    --orange-light:  #F0A868;
    --orange-bright: #F4A443;

    /* Neutrals */
    --cream:      #FFF8F0;
    --cream-dark: #F5E6D3;
    --white:      #FFFFFF;

    /* Text */
    --text:       #2C1810;
    --text-med:   #5D4037;
    --text-light: #8D6E63;

    /* Gradients */
    --grad-hero:   linear-gradient(135deg, #2C1810 0%, #4E342E 30%, #795548 55%, #C68B59 80%, #E8985A 100%);
    --grad-warm:   linear-gradient(135deg, #C68B59, #E8985A);
    --grad-button: linear-gradient(135deg, #C68B59, #E8985A);
    --grad-text:   linear-gradient(135deg, #C68B59, #E8985A);

    /* Shadows */
    --shadow-sm: 0 2px 8px  rgba(44,24,16,.06);
    --shadow-md: 0 4px 16px rgba(44,24,16,.10);
    --shadow-lg: 0 8px 32px rgba(44,24,16,.12);
    --shadow-xl: 0 16px 48px rgba(44,24,16,.16);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    /* Fonts */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', system-ui, sans-serif;

    /* Transitions */
    --ease: cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ---------- Container ---------- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ---------- Section base ---------- */
.section {
    padding: 100px 0;
}
.section-alt {
    background: var(--white);
}
.section-cream {
    background: var(--cream);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: .6rem;
    color: var(--brown-800);
}
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Gradient divider */
.section-divider {
    width: 80px;
    height: 4px;
    background: var(--grad-warm);
    border-radius: 2px;
    margin: 0 auto 2rem;
}

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================================================
   NAVIGATION
   =================================================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.navbar.scrolled {
    background: rgba(44,24,16,.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(44,24,16,.2);
    padding: .7rem 0;
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}
.nav-logo-img {
    height: 44px;
    width: auto;
    border-radius: 4px;
    transition: opacity .3s;
}
.nav-logo-img:hover { opacity: .85; }
.nav-logo span {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    color: rgba(255,255,255,.85);
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .5px;
    transition: color .3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--grad-warm);
    border-radius: 1px;
    transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--orange-light); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    padding: .6rem 1.4rem;
    background: var(--grad-button);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: transform .3s, box-shadow .3s;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,139,89,.4);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.nav-hamburger span {
    display: block;
    width: 26px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(44,24,16,.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}
.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--grad-hero);
    background-size: 200% 200%;
    animation: heroGradient 12s ease infinite;
    overflow: hidden;
}
@keyframes heroGradient {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Decorative circles */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: .07;
    pointer-events: none;
}
.hero::before {
    width: 600px; height: 600px;
    background: var(--orange);
    top: -150px; right: -100px;
}
.hero::after {
    width: 400px; height: 400px;
    background: var(--caramel);
    bottom: -100px; left: -80px;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}
.hero-badge {
    display: inline-block;
    padding: .45rem 1.4rem;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-xl);
    color: var(--orange-light);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(6px);
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}
.hero-title em {
    font-style: italic;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,.75);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.8;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================================================
   HERO + BOOKING (split layout)
   =================================================================== */
.hero.hero-booking {
    min-height: 100vh;
    padding: calc(80px + 2rem) 0 3rem;
    text-align: left;
    align-items: flex-start;
}
.hero-booking-container {
    position: relative;
    z-index: 1;
    width: 92%;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
    align-items: center;
}
.hero-intro {
    color: var(--white);
    padding: 1rem 0;
}
.hero-booking .hero-title {
    font-size: 3.6rem;
    line-height: 1.05;
    margin-bottom: 1.2rem;
}
.hero-booking .hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 1.8rem;
    max-width: 520px;
}
.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}
.hero-highlights li {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: rgba(255,255,255,.85);
    font-size: .95rem;
    font-weight: 400;
}
.hero-highlights li i {
    color: var(--orange-light);
    font-size: 1rem;
    width: 22px;
    text-align: center;
}
.hero-booking .hero-buttons {
    justify-content: flex-start;
}

/* Booking card on the right */
.hero-booking-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(0,0,0,.28), 0 6px 18px rgba(0,0,0,.12);
    padding: 2.2rem 2.2rem 2rem;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--cream-dark) transparent;
}
.hero-booking-card::-webkit-scrollbar { width: 6px; }
.hero-booking-card::-webkit-scrollbar-thumb {
    background: var(--cream-dark);
    border-radius: 3px;
}
.booking-card-header {
    text-align: center;
    margin-bottom: 1.4rem;
}
.booking-card-header h2 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: var(--brown-800);
    margin-bottom: .4rem;
    font-weight: 700;
}
.booking-card-header .section-divider {
    margin: 0 auto 1rem;
    width: 60px;
    height: 3px;
}
.booking-welcome {
    color: var(--text-light);
    font-size: .92rem;
    margin: 0;
}
.booking-welcome a { color: var(--caramel); text-decoration: underline; font-weight: 500; }

/* Reset the booking-wrapper inside the card (no more nested card) */
.hero-booking-card .booking-wrapper {
    background: transparent;
    box-shadow: none;
    padding: 0;
    max-width: none;
    margin: 0;
}

/* Compact mode selector inside the card */
.hero-booking-card .booking-mode-selector {
    margin-bottom: 1.4rem;
}
.hero-booking-card .booking-mode-options {
    gap: .8rem;
}
.hero-booking-card .booking-mode-btn {
    padding: 1rem .8rem;
    box-shadow: var(--shadow-sm);
}
.hero-booking-card .booking-mode-btn i {
    font-size: 1.4rem;
    margin-bottom: .35rem;
}
.hero-booking-card .booking-mode-btn h3 {
    font-size: 1rem;
    margin-bottom: .15rem;
}
.hero-booking-card .booking-mode-btn p {
    font-size: .78rem;
}
.booking-login-line {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-light);
    font-size: .9rem;
}
.booking-login-line a {
    color: var(--caramel);
    text-decoration: underline;
    font-weight: 500;
}

/* Inputs sit tighter inside the card */
.hero-booking-card .form-group { margin-bottom: 1rem; }
.hero-booking-card .form-group input,
.hero-booking-card .form-group select,
.hero-booking-card .form-group textarea {
    padding: .7rem .9rem;
    background: var(--cream);
}
.hero-booking-card .form-group label .optional {
    color: var(--text-light);
    font-weight: 400;
    font-size: .8rem;
}
.checkbox-line {
    display: flex !important;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
    font-size: .88rem;
    color: var(--text-med);
    font-weight: 400 !important;
}
.checkbox-line input { width: auto !important; }
.btn.btn-block {
    width: 100%;
    justify-content: center;
}
.back-link {
    text-align: center;
    margin-top: .9rem;
}
.back-link a {
    color: var(--caramel);
    font-size: .9rem;
    font-weight: 500;
}
.hint {
    color: var(--text-light);
    font-size: .9rem;
    margin: 0;
}

/* Subtle outline button on hero (alternative to primary) */
.btn-ghost {
    background: transparent;
    color: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.18);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.35);
    color: var(--white);
}

/* Responsive : on tablet/mobile, booking card goes ON TOP */
@media (max-width: 960px) {
    .hero.hero-booking {
        padding: calc(80px + 1rem) 0 2rem;
    }
    .hero-booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-intro {
        text-align: center;
        order: 2;
    }
    .hero-booking-card {
        order: 1;
        max-height: none;
        padding: 1.8rem 1.6rem;
    }
    .hero-booking .hero-buttons {
        justify-content: center;
    }
    .hero-highlights {
        align-items: center;
    }
    .hero-highlights li { justify-content: center; }
    .hero-booking .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-booking .hero-title {
        font-size: 2.4rem;
    }
}
@media (max-width: 480px) {
    .hero-booking-card { padding: 1.5rem 1.1rem; }
    .booking-card-header h2 { font-size: 1.4rem; }
    .hero-booking-card .booking-mode-options {
        grid-template-columns: 1fr;
    }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: var(--grad-button);
    color: var(--white);
}
.btn-primary:hover {
    box-shadow: 0 8px 24px rgba(200,139,89,.4);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.35);
}
.btn-outline:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.6);
}

.btn-dark {
    background: var(--grad-button);
    color: var(--white);
}
.btn-dark:hover {
    box-shadow: 0 8px 24px rgba(200,139,89,.35);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.hero-scroll span {
    display: block;
    width: 24px; height: 38px;
    border: 2px solid rgba(255,255,255,.35);
    border-radius: 12px;
    position: relative;
}
.hero-scroll span::after {
    content: '';
    position: absolute;
    width: 4px; height: 8px;
    background: var(--orange-light);
    border-radius: 2px;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 1.6s ease infinite;
}
@keyframes scrollDown {
    0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ===================================================================
   ABOUT / REFORMER
   =================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--grad-hero);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-image-placeholder {
    color: rgba(255,255,255,.6);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
    padding: 2rem;
}
.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,.1);
    pointer-events: none;
}
.about-label {
    font-family: var(--font-heading);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--caramel);
    margin-bottom: .75rem;
}
.about-heading {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--brown-800);
    margin-bottom: 1.2rem;
    line-height: 1.25;
}
.about-text {
    color: var(--text-med);
    margin-bottom: 1.5rem;
    font-size: 1.02rem;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}
.about-feature-icon {
    width: 42px; height: 42px;
    min-width: 42px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.about-feature-text {
    font-size: .9rem;
    font-weight: 500;
    color: var(--brown-600);
}
.about-feature-text small {
    display: block;
    font-weight: 400;
    color: var(--text-light);
    font-size: .82rem;
    margin-top: 2px;
}

/* ===================================================================
   PRICING
   =================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.pricing-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.2rem 1.8rem;
    box-shadow: var(--shadow-md);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    overflow: hidden;
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--grad-warm);
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border: 2px solid var(--caramel);
}
.pricing-card.featured::before {
    height: 6px;
}

.pricing-badge {
    position: absolute;
    top: 16px; right: -28px;
    background: var(--grad-warm);
    color: var(--white);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: .35rem 2.5rem;
    transform: rotate(35deg);
}

.pricing-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--brown-700);
    margin-bottom: .4rem;
}
.pricing-sessions {
    font-size: .85rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}
.pricing-price {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: .25rem;
}
.pricing-price-suffix {
    font-size: .85rem;
    font-weight: 400;
    -webkit-text-fill-color: var(--text-light);
}
.pricing-validity {
    font-size: .85rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}
.pricing-desc {
    font-size: .9rem;
    color: var(--text-med);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* ===================================================================
   BOOKING
   =================================================================== */
.booking-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-weight: 600;
    font-size: .88rem;
    color: var(--brown-600);
    margin-bottom: .5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .8rem 1rem;
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--text);
    background: var(--cream);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color .3s, box-shadow .3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--caramel);
    box-shadow: 0 0 0 3px rgba(198,139,89,.15);
}
.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

/* Time-slot picker */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: .6rem;
}
.time-slot {
    padding: .55rem .5rem;
    text-align: center;
    font-size: .85rem;
    font-weight: 600;
    color: var(--brown-600);
    background: var(--cream);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all .25s var(--ease);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .15rem;
    line-height: 1.2;
}
.time-slot-label {
    display: block;
    font-size: .9rem;
    font-weight: 600;
}
.time-slot-info {
    display: block;
    font-size: .7rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: .2px;
}
.time-slot:hover {
    border-color: var(--caramel);
    background: #FFF3E0;
}
.time-slot.selected {
    background: var(--grad-warm);
    color: var(--white);
    border-color: transparent;
}
.time-slot.selected .time-slot-info {
    color: rgba(255,255,255,.9);
}
.time-slot.low-availability {
    border-color: #F4A443;
    background: #FFF3E0;
}
.time-slot.low-availability .time-slot-info {
    color: #C2410C;
    font-weight: 600;
}
.time-slot.unavailable {
    opacity: .45;
    cursor: not-allowed;
}
.time-slot.unavailable .time-slot-label {
    text-decoration: line-through;
}
.time-slot.unavailable .time-slot-info {
    color: #C62828;
    font-weight: 600;
    text-decoration: none;
}
.time-slot.unavailable:hover {
    border-color: transparent;
    background: var(--cream);
}

/* Success / Error messages */
.form-message {
    padding: 1rem 1.4rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: .9rem;
    font-weight: 500;
    display: none;
}
.form-message.success {
    display: block;
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #C8E6C9;
}
.form-message.error {
    display: block;
    background: #FBE9E7;
    color: #C62828;
    border: 1px solid #FFCCBC;
}

/* ===================================================================
   INFOS (horaires, localisation)
   =================================================================== */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}
.info-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
/* Effet spécial pour les cartes cliquables */
a.info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
a.info-card:hover .info-icon {
    transform: scale(1.1);
}
.info-icon {
    width: 60px; height: 60px;
    margin: 0 auto 1.2rem;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform .3s var(--ease);
}
.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--brown-700);
    margin-bottom: .6rem;
}
.info-card p {
    font-size: .92rem;
    color: var(--text-med);
    line-height: 1.7;
}

/* Map */
.map-wrapper {
    margin-top: 3rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 350px;
    border: none;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
    background: var(--brown-900);
    color: rgba(255,255,255,.65);
    padding: 3rem 0 1.5rem;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
}
.footer-logo-img {
    height: 40px;
    width: auto;
    border-radius: 4px;
}
.footer-logo span {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer p {
    font-size: .85rem;
}

/* ===================================================================
   LOADER / SPINNER
   =================================================================== */
.spinner {
    display: inline-block;
    width: 20px; height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin .6s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===================================================================
   BACK TO TOP
   =================================================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem; right: 2rem;
    width: 46px; height: 46px;
    background: var(--grad-button);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s, transform .3s;
    box-shadow: 0 4px 16px rgba(200,139,89,.35);
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    transform: translateY(-3px);
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .info-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section       { padding: 60px 0; }
    .hero-title    { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 2rem; }

    /* Mobile nav */
    .nav-hamburger { display: flex; }
    .nav-links {
        position: fixed;
        top: 0; right: 0;
        width: 280px; height: 100vh;
        flex-direction: column;
        background: var(--brown-900);
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transform: translateX(100%);
        transition: transform .35s var(--ease);
        z-index: 1000;
    }
    .nav-links.open {
        transform: translateX(0);
    }
    .nav-overlay { display: block; }

    .nav-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .form-row           { grid-template-columns: 1fr; }
    .info-grid           { grid-template-columns: 1fr; }
    .about-features      { grid-template-columns: 1fr; }
    .pricing-grid        { grid-template-columns: 1fr; }
    .booking-wrapper     { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
    .hero-title    { font-size: 2.2rem; }
    .pricing-price { font-size: 2rem; }
}

/* ===================================================================
   BOOKING MODE SELECTOR
   =================================================================== */
.booking-mode-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.booking-mode-btn {
    background: var(--white);
    border: 3px solid transparent;
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all .3s var(--ease);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.booking-mode-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--caramel);
}

.booking-mode-btn.active {
    border-color: var(--caramel);
    background: linear-gradient(135deg, #FFF8F0 0%, #FFF3E0 100%);
    box-shadow: var(--shadow-lg);
}

.booking-mode-btn i {
    color: var(--caramel);
}

.booking-mode-btn h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--brown-700);
    margin-bottom: .4rem;
}

.booking-mode-btn p {
    font-size: .88rem;
    color: var(--text-light);
    margin: 0;
}

.booking-form-content {
    display: none;
}

.booking-form-content.active {
    display: block;
}

@media (max-width: 640px) {
    .booking-mode-options {
        grid-template-columns: 1fr;
    }
}
