/*
Theme Name: TL Events Theme
Theme URI: https://tlevents.fr/
Description: Custom premium WordPress theme for TL Events Photobooth Mirror Rentals
Version: 2.0.6
Author: Thomas
Author URI: https://tlevents.fr/
Text Domain: tlevents

----------------------------------------------------
TL Events - Premium Landing Page Stylesheet
Color Palette:
- Primary BG: #FAF8F2 (Linen Off-White)
- Primary Text: #121212 (Charcoal)
- Accent/Gold: #E8D5A3 (Champagne Gold)
- Primary Buttons: #111111 (Rich Black)
- Borders: #EDE8DB (Light Sand)
---------------------------------------------------- */

/* Reset & Base Setup */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-color: #FAF8F2;
    --text-color: #121212;
    --text-muted: #555555;
    --accent-color: #E8D5A3;
    --accent-dark: #d4bf8c;
    --btn-color: #111111;
    --border-color: #EDE8DB;
    
    --font-serif: 'Noto Serif Display', Georgia, serif;
    --font-sans: 'Manrope', system-ui, -apple-system, sans-serif;
    
    --container-width: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography & Layout Spacing */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.25;
}

p {
    font-size: 1rem;
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Sections Global Styles */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tagline {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--accent-dark);
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.title-divider {
    width: 60px;
    height: 1px;
    background-color: var(--accent-color);
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--btn-color);
    color: var(--accent-color);
    border-color: var(--btn-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--btn-color);
    border-color: var(--accent-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border-color: var(--text-color);
}

.btn-outline:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 20px 48px;
    font-size: 0.95rem;
}

.btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Header Navigation */
.header-premium {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    display: flex;
    align-items: center;
    background-color: rgba(250, 248, 242, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.header-premium.scrolled {
    height: 70px;
    border-bottom-color: var(--border-color);
}

.header-container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo,
.custom-logo-link {
    display: flex;
    align-items: center;
}

.logo-img-wrapper {
    display: inline-flex;
    align-items: center;
}

.logo-img,
.custom-logo {
    height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.header-premium.scrolled .logo-img,
.header-premium.scrolled .custom-logo {
    height: 48px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-color);
    position: relative;
    padding: 6px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
}

.nav-menu a:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 18px;
    position: relative;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--text-color);
    position: absolute;
    transition: var(--transition-smooth);
}

.burger-menu span:first-child { top: 0; }
.burger-menu span:last-child { bottom: 0; }

/* Only shown inside the mobile/tablet dropdown panel */
.nav-cta-mobile {
    display: none;
}

/* Background stays put while the mobile menu is open */
body.nav-open {
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    padding-top: 180px;
    padding-bottom: 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-tagline {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent-dark);
    margin-bottom: 16px;
}

.hero-title {
    font-size: 3.4rem;
    line-height: 1.15;
    color: var(--text-color);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-reassurances {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.reassurance-item {
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
}

.reassurance-item i {
    color: var(--accent-dark);
    font-size: 0.75rem;
}

.hero-image-wrapper {
    position: relative;
    height: 520px;
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.02);
}

.hero-image-bg {
    width: 100%;
    height: 100%;
    background-image: url('https://tlevents.fr/wp-content/uploads/2026/08/header.png');
    background-size: cover;
    background-position: center;
    filter: saturate(0.85) contrast(1.02);
    transition: transform 8s ease;
}

.hero-image-wrapper:hover .hero-image-bg {
    transform: scale(1.06);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(18, 18, 18, 0.4) 0%, transparent 60%);
}

.hero-image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: rgba(250, 248, 242, 0.95);
    padding: 20px 30px;
    border-left: 3px solid var(--accent-color);
    border-radius: 2px;
    backdrop-filter: blur(5px);
}

.badge-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-color);
}

.badge-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* Pourquoi Section */
.why-section {
    background-color: #fff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-color);
    padding: 45px 30px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(18, 18, 18, 0.02);
}

.feature-icon-wrapper {
    font-size: 1.8rem;
    color: var(--accent-dark);
    margin-bottom: 24px;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.feature-desc {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Comment ça fonctionne */
.steps-section {
    background-color: var(--bg-color);
}

.steps-container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    width: 80%;
    height: 1px;
    background-color: var(--border-color);
    z-index: 1;
}

.step-item {
    position: relative;
    z-index: 2;
    background-color: var(--bg-color);
    padding: 0 20px;
}

.step-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--border-color);
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.step-item:hover .step-number {
    color: var(--accent-color);
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.step-desc {
    font-size: 0.95rem;
}

/* Galerie */
.gallery-section {
    background-color: #fff;
    border-top: 1px solid var(--border-color);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0 20px;
    margin-bottom: 40px;
}

.filter-btn {
    background: none;
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
}

/* Infinite auto-scrolling carousel */
.gallery-carousel {
    position: relative;
    width: 100%;
}

.gallery-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* Slides melt into the background at both ends instead of being hard-cut */
    -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.gallery-viewport::-webkit-scrollbar {
    display: none;
}

.gallery-viewport.is-grabbing {
    cursor: grabbing;
}

.gallery-track {
    display: flex;
    gap: 20px;
    width: max-content;
    /* Vertical breathing room so the hover lift and its shadow aren't clipped */
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    flex: 0 0 340px;
    height: 420px;
    border-radius: 4px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
    user-select: none;
    -webkit-user-drag: none;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: #fff;
    color: var(--text-color);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.gallery-nav:hover {
    background-color: var(--text-color);
    color: #fff;
    border-color: var(--text-color);
}

.gallery-nav-prev {
    left: 2%;
}

.gallery-nav-next {
    right: 2%;
}

.gallery-hint {
    text-align: center;
    margin-top: 25px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.gallery-hint i {
    color: var(--accent-dark);
    margin-right: 6px;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18,18,18, 0.4);
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.gallery-tag {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: #fff;
}

.gallery-hover i {
    align-self: flex-end;
    background-color: var(--accent-color);
    color: var(--text-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover .gallery-hover {
    opacity: 1;
    transform: translateY(0);
}

/* Pricing cards */
.pricing-section {
    background-color: var(--bg-color);
}

.pricing-cards {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.price-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: var(--transition-smooth);
}

.price-card.popular {
    border-color: var(--accent-color);
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(18, 18, 18, 0.03);
}

/* 4-pack pricing grid (Essentiel / Confort / Premium Mariage / Entreprise) */
.pricing-cards-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pricing-cards-4 .price-card {
    padding: 36px 24px;
}

.pricing-cards-4 .card-title {
    font-size: 1.3rem;
}

.pricing-cards-4 .price {
    font-size: 2.1rem;
}

.pricing-cards-4 .card-body li {
    font-size: 0.85rem;
}

@media (max-width: 1280px) {
    .pricing-cards-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-cards-4 .price-card.popular {
        transform: scale(1);
    }
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--btn-color);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 6px 12px;
    border-radius: 20px;
}

.card-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
    margin-bottom: 35px;
}

.card-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.price {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.price-subtitle {
    font-size: 0.85rem;
}

.card-body {
    margin-bottom: 40px;
    flex-grow: 1;
}

.card-body ul {
    list-style: none;
}

.card-body li {
    font-size: 0.95rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.card-body li i {
    color: var(--accent-dark);
    font-size: 0.85rem;
    width: 16px;
}

/* Booking Section */
.booking-section {
    background-color: #fff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.booking-wrapper {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}

/* Stepper progress */
.booking-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    text-align: center;
}

.node-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.node-label {
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 8px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.step-line {
    height: 1px;
    background-color: var(--border-color);
    flex-grow: 1;
    max-width: 80px;
}

.step-node.active .node-num, .step-node.completed .node-num {
    border-color: var(--accent-dark);
    background-color: var(--accent-color);
    color: var(--text-color);
}

.step-node.active .node-label, .step-node.completed .node-label {
    color: var(--text-color);
    font-weight: 600;
}

/* Booking Card & Steps */
.booking-card {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 50px;
    min-height: 480px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.01);
}

.booking-step-content {
    display: none;
    animation: fadeInStep 0.4s ease forwards;
}

.booking-step-content.active {
    display: block;
}

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

.step-content-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.step-content-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-content-subtitle i {
    color: var(--accent-dark);
}

/* Calendar Layout style */
.calendar-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-bottom: 40px;
}

.calendar-widget {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 24px;
}

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

.cal-nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-color);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.cal-nav-btn:hover {
    background-color: var(--bg-color);
}

.cal-month-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 10px;
}

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

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.cal-day:hover:not(.disabled) {
    background-color: var(--border-color);
}

.cal-day.disabled {
    color: #ccc;
    cursor: not-allowed;
    text-decoration: line-through;
    opacity: 0.5;
}

.cal-day.selected {
    background-color: var(--accent-color);
    color: var(--text-color);
    border-color: var(--accent-color);
    font-weight: 600;
}

.calendar-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-type-quickpick {
    margin-bottom: 24px;
}

.event-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.event-type-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 10px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-color);
    transition: var(--transition-smooth);
}

.event-type-btn i {
    font-size: 1.1rem;
    color: var(--accent-dark);
    transition: var(--transition-smooth);
}

.event-type-btn:hover {
    border-color: var(--accent-color);
}

.event-type-btn.active {
    background-color: var(--text-color);
    border-color: var(--text-color);
    color: #fff;
}

.event-type-btn.active i {
    color: var(--accent-color);
}

.event-type-hint {
    margin-top: 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.event-type-hint i {
    color: var(--accent-dark);
    margin-right: 4px;
}

.event-type-hint .fa-circle-check {
    color: #2b7a4b;
}

.input-label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-select, .form-input {
    width: 100%;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-color);
    outline: none;
    transition: var(--transition-smooth);
}

.form-select:focus, .form-input:focus {
    border-color: var(--accent-color);
}

.selected-date-preview {
    background-color: #fff;
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 4px;
    font-size: 0.9rem;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-muted);
    border-left: 3px solid var(--accent-color);
}

.step-actions {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    margin-top: 20px;
}

/* Step 2 Formules Selection */
.formules-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 35px;
}

.formule-select-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 20px;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}

.formule-select-card:hover {
    border-color: var(--accent-color);
}

.formule-select-card.active {
    border-color: var(--accent-color);
    background-color: rgba(232, 213, 163, 0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.01);
}

.f-select-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.f-name {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.1rem;
}

.f-price {
    font-weight: 700;
    color: var(--accent-dark);
}

.f-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.f-popular-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--text-color);
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
}

.sub-section-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.options-select-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.entreprise-options-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-top: 5px;
    padding-top: 15px;
    border-top: 1px dashed var(--border-color);
}

.option-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.option-checkbox-wrapper:hover {
    border-color: var(--accent-color);
}

.option-checkbox-wrapper input {
    display: none;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    display: inline-block;
    flex-shrink: 0;
    position: relative;
    margin-top: 2px;
    background-color: #fff;
    transition: var(--transition-smooth);
}

.option-checkbox-wrapper input:checked + .custom-checkbox {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.option-checkbox-wrapper input:checked + .custom-checkbox::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.65rem;
    color: var(--text-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.option-details {
    display: flex;
    flex-direction: column;
}

.opt-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.opt-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.option-checkbox-wrapper[hidden] {
    display: none;
}

.opt-included-badge {
    display: none;
    flex-shrink: 0;
    align-self: center;
    margin-left: auto;
    background-color: rgba(43, 122, 75, 0.1);
    color: #2b7a4b;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.option-checkbox-wrapper.option-included {
    background-color: rgba(43, 122, 75, 0.04);
    border-color: rgba(43, 122, 75, 0.3);
    cursor: default;
}

.option-checkbox-wrapper.option-included .custom-checkbox {
    background-color: rgba(43, 122, 75, 0.5);
    border-color: rgba(43, 122, 75, 0.5);
}

.option-checkbox-wrapper.option-included .opt-included-badge {
    display: inline-block;
}

.devis-note {
    display: none;
    align-items: center;
    gap: 10px;
    background-color: var(--bg-color);
    border: 1px dashed var(--accent-color);
    border-radius: 4px;
    padding: 16px 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.devis-note i {
    color: var(--accent-dark);
}

.field-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Entreprise-only fields (Step 3) — nombre de jours / durée */
.entreprise-fields-wrapper {
    background-color: var(--bg-color);
    border: 1px dashed var(--accent-color);
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}

.entreprise-fields-wrapper .form-row {
    margin-bottom: 0;
}

.entreprise-fields-intro {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.entreprise-fields-intro i {
    color: var(--accent-dark);
}

/* Step 3 Form elements */
.booking-form-element {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

/* Step 4: Summary Layout */
.summary-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    margin-bottom: 40px;
}

.summary-details-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.summary-row.header-row {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.summary-desc-small {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.summary-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 20px 0;
}

.summary-row.total-row {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0;
}

.payment-method-box {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 30px;
}

.payment-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.quote-explanation {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.quote-steps-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    list-style: none;
}

.quote-steps-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.quote-steps-list li i {
    color: var(--accent-dark);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.payment-security-note {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Step 5: Confirmation Layout */
.confirmation-success-wrapper {
    text-align: center;
    padding: 20px 0;
}

.success-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(232, 213, 163, 0.2);
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px auto;
}

.confirmation-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.confirmation-text {
    max-width: 500px;
    margin: 0 auto 30px auto;
}

.confirmation-details-box {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    max-width: 500px;
    margin: 0 auto 35px auto;
    padding: 24px;
    text-align: left;
}

.confirm-detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.confirm-detail-row:last-child {
    margin-bottom: 0;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
}

.status-badge {
    color: #2b7a4b;
    font-size: 0.85rem;
}

.confirmation-next-steps {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.confirmation-action {
    margin-top: 20px;
}

/* Zones Section */
.zones-section {
    background-color: #fff;
    border-top: 1px solid var(--border-color);
}

.zones-container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.zones-map-box {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Interactive Leaflet.js delivery zone map */
.delivery-leaflet-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 4px;
    z-index: 1;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
    font-family: var(--font-sans);
    border-radius: 4px;
}

/* The theme's global "img { max-width: 100%; height: auto; }" reset (style.css
   line ~75) distorts/hides Leaflet's tile & marker images. Leaflet sets tile
   size via inline styles, but max-width still clips them — this is the
   standard fix for that WordPress/Leaflet conflict. */
.leaflet-container img {
    max-width: none !important;
    height: auto;
}

/* Zone tariff legend next to the map */
.zones-legend {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.zone-legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.zone-legend-item > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    font-size: 0.85rem;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 8px;
}

.zone-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.zone-legend-1 .zone-dot { background-color: #2b7a4b; }
.zone-legend-2 .zone-dot { background-color: #d4bf8c; }
.zone-legend-3 .zone-dot { background-color: #b5533f; }

.zone-legend-price {
    font-weight: 700;
    color: var(--text-color);
}

.city-tag-z1 { border-left: 3px solid #2b7a4b; }
.city-tag-z2 { border-left: 3px solid #d4bf8c; }
.city-tag-z3 { border-left: 3px solid #b5533f; }

.zones-subtitle {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.zones-desc {
    font-size: 1rem;
    margin-bottom: 30px;
}

.city-tag {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 500;
}

.alert-info-box {
    background-color: var(--bg-color);
    border-left: 3px solid var(--accent-color);
    padding: 20px;
    border-radius: 0 4px 4px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.alert-info-box i {
    color: var(--accent-dark);
    margin-right: 8px;
}

/* FAQ accordion style */
.faq-section {
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
}

.faq-accordion-container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 30px;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-color);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.faq-question i {
    font-size: 0.8rem;
    transition: var(--transition-smooth);
    color: var(--accent-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px; /* arbitrary height to slide down */
    padding-bottom: 24px;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

/* Final CTA Section */
.final-cta-section {
    padding: 160px 0;
    background-image: url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.75);
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 20px;
}

.final-cta-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.final-cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

/* Footer style */
.footer-premium {
    background-color: #111;
    color: #fff;
    padding: 80px 0 30px 0;
    border-top: 1px solid #222;
}

.footer-grid {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto 50px auto;
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo .logo-img,
.footer-logo .custom-logo {
    height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.footer-about {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
    border-color: var(--accent-color);
}

.footer-title {
    font-size: 1rem;
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--accent-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col li i {
    color: var(--accent-color);
    width: 14px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    border-top: 1px solid #222;
    padding-top: 30px;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   LANDING PAGES (mariage, baptême, anniversaire, entreprise)
   ========================================================================== */

.landing-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    background-color: var(--text-color);
}

/* Remplacez ces images par vos propres visuels (médiathèque WordPress) */
.landing-hero-mariage {
    background-image: url('https://tlevents.fr/wp-content/uploads/2026/08/mariage-ext.png');
}

.landing-hero-bapteme {
    background-image: url('https://tlevents.fr/wp-content/uploads/2026/08/bapteme-scaled.png');
}

.landing-hero-anniversaire {
    background-image: url('https://tlevents.fr/wp-content/uploads/2026/08/anniversaire.png');
}

.landing-hero-entreprise {
    background-image: url('https://tlevents.fr/wp-content/uploads/2026/08/soiree-entreprise.png');
}

.landing-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(18, 18, 18, 0.88) 0%, rgba(18, 18, 18, 0.72) 45%, rgba(18, 18, 18, 0.35) 100%);
}

.landing-hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    max-width: 820px;
    color: #fff;
}

.landing-hero-content .hero-title,
.landing-hero-content .hero-subtitle {
    color: #fff;
}

.landing-hero-content .hero-subtitle {
    opacity: 0.9;
}

.landing-hero-content .reassurance-item {
    color: #fff;
}

.landing-hero-content .hero-reassurances {
    border-top-color: rgba(255, 255, 255, 0.25);
}

.landing-hero-content .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.landing-hero-content .btn-outline:hover {
    background-color: #fff;
    color: var(--text-color);
}

/* Barre de réassurance */
.trust-bar-section {
    padding: 0;
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
}

.trust-bar {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 30px 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-item i {
    color: var(--accent-dark);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    font-size: 0.9rem;
}

.trust-item span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Options complémentaires */
.options-title {
    text-align: center;
    font-size: 1.5rem;
    margin: 70px auto 30px;
}

.options-grid {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.option-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 26px 24px;
    transition: var(--transition-smooth);
}

.option-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
}

.option-card i {
    color: var(--accent-dark);
    font-size: 1.3rem;
    margin-bottom: 14px;
    display: block;
}

.option-card strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.option-price {
    display: inline-block;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 12px;
}

.option-card p {
    font-size: 0.8rem;
    line-height: 1.6;
}

.zone-reminder {
    width: 90%;
    max-width: var(--container-width);
    margin: 45px auto 0;
}

.zone-reminder a {
    color: var(--accent-dark);
    text-decoration: underline;
    white-space: nowrap;
}

/* Cas d'usage (page entreprise) */
.usecases-section {
    background-color: #fff;
    border-top: 1px solid var(--border-color);
}

.usecases-grid {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.usecase-card {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent-color);
    border-radius: 0 4px 4px 0;
    padding: 32px;
}

.usecase-card i {
    color: var(--accent-dark);
    font-size: 1.4rem;
    margin-bottom: 14px;
    display: block;
}

.usecase-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.usecase-card p {
    font-size: 0.9rem;
}

/* Témoignages */
.testimonials-section {
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
}

.testimonials-grid {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.testimonial-stars {
    color: var(--accent-dark);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--text-color);
    line-height: 1.7;
    flex-grow: 1;
}

.testimonial-author {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Duo de cartes tarifaires (au lieu de 3 ou 4) : 2 colonnes centrées */
.pricing-cards-duo {
    grid-template-columns: repeat(2, 1fr);
    max-width: 860px;
}

/* CTA collant mobile */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 18px;
    background-color: rgba(250, 248, 242, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.08);
}

.sticky-cta-text strong {
    display: block;
    font-size: 0.85rem;
    line-height: 1.3;
}

.sticky-cta-text span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.sticky-cta .btn {
    flex-shrink: 0;
}

/* ==========================================================================
   PAGE DE REMERCIEMENT (destination de conversion Google Ads)
   ========================================================================== */

.thankyou-section {
    background-color: #fff;
    padding-top: 180px;
    min-height: 80vh;
}

.thankyou-container {
    width: 90%;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.thankyou-container .success-icon-circle {
    margin: 0 auto 30px;
}

.thankyou-title {
    font-size: 2.4rem;
    margin: 14px 0 24px;
}

.thankyou-lead {
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.thankyou-recap {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 26px 30px;
    margin-bottom: 50px;
    text-align: left;
}

.thankyou-recap-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.thankyou-recap-row:last-of-type {
    border-bottom: none;
}

.thankyou-recap-note {
    font-size: 0.75rem;
    margin-top: 12px;
}

.thankyou-subtitle {
    font-size: 1.6rem;
    margin-bottom: 30px;
}

.thankyou-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    text-align: left;
    margin-bottom: 40px;
}

.thankyou-step {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 26px 24px;
}

.thankyou-step .step-number {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.thankyou-step h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.thankyou-step p {
    font-size: 0.82rem;
    line-height: 1.6;
}

.thankyou-alert {
    text-align: left;
    margin-bottom: 40px;
}

.thankyou-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

/* Responsive queries */
@media (max-width: 1024px) {
    section {
        padding: 80px 0;
    }

    /* ---- Header : le menu passe en panneau déroulant dès la tablette ---- */
    .header-premium {
        height: 72px;
    }

    .header-premium.scrolled {
        height: 64px;
    }

    .logo-img,
    .custom-logo {
        height: 52px;
    }

    .header-premium.scrolled .logo-img,
    .header-premium.scrolled .custom-logo {
        height: 44px;
    }

    .burger-menu {
        display: block;
    }

    /* The desktop CTA is replaced by the one inside the panel */
    .header-cta {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 5% 28px;
        background-color: rgba(250, 248, 242, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
        /* Hidden without display:none so the open/close can animate */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    }

    .header-premium.scrolled .nav-menu {
        top: 64px;
        max-height: calc(100vh - 64px);
    }

    .nav-menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu a {
        padding: 16px 4px;
        font-size: 0.85rem;
        border-bottom: 1px solid var(--border-color);
    }

    /* The sliding underline makes no sense in a stacked panel */
    .nav-menu a::after {
        display: none;
    }

    .nav-menu .nav-cta-mobile {
        display: inline-flex;
        margin-top: 22px;
        padding: 14px 20px;
        border-bottom: none;
        /* Beats ".nav-menu a { color }", which would otherwise print the label
           in near-black on the black button */
        color: var(--accent-color);
    }

    /* Burger turns into a cross once open */
    .burger-menu.active span:first-child {
        top: 8px;
        transform: rotate(45deg);
    }

    .burger-menu.active span:last-child {
        bottom: 9px;
        transform: rotate(-45deg);
    }

    .hero-section {
        padding-top: 130px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-reassurances {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .steps-container::before {
        display: none;
    }
    
    .step-item {
        padding-left: 40px;
        border-left: 2px solid var(--border-color);
    }
    
    .step-number {
        font-size: 3rem;
        margin-bottom: 10px;
    }
    
    .gallery-item {
        flex-basis: 300px;
        height: 380px;
    }

    /* ---- Landing pages ---- */
    .landing-hero {
        min-height: auto;
        padding: 130px 0 70px;
        text-align: center;
    }

    .landing-hero-overlay {
        background: linear-gradient(180deg, rgba(18, 18, 18, 0.85) 0%, rgba(18, 18, 18, 0.7) 100%);
    }

    .landing-hero-content .hero-ctas,
    .landing-hero-content .hero-reassurances {
        justify-content: center;
    }

    .trust-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .usecases-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .price-card.popular {
        transform: scale(1);
    }
    
    .zones-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Header behaviour (burger + dropdown panel) is handled from 1024px */
    .hero-title {
        font-size: 2.4rem;
    }

    /* Boutons du hero empilés : côte à côte, les libellés se cassent sur 4 lignes */
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    /* Le CTA collant n'apparaît que sur mobile, où il porte la conversion */
    .sticky-cta {
        display: flex;
    }

    /* Laisse la place au CTA collant en bas de page */
    .footer-premium {
        padding-bottom: 90px;
    }

    .trust-bar {
        grid-template-columns: 1fr;
    }

    .thankyou-section {
        padding-top: 120px;
    }

    .thankyou-title {
        font-size: 1.9rem;
    }

    .thankyou-steps {
        grid-template-columns: 1fr;
    }

    .options-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .options-title {
        font-size: 1.3rem;
        margin-top: 50px;
    }
    
    .gallery-item {
        flex-basis: 78vw;
        height: 320px;
    }

    /* Touch swipe replaces the arrows on small screens */
    .gallery-nav {
        display: none;
    }

    .booking-card {
        padding: 30px 20px;
    }
    
    .calendar-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .formules-select-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .summary-layout {
        grid-template-columns: 1fr;
    }
    
    .booking-stepper {
        margin-bottom: 30px;
    }
    
    .step-line {
        display: none;
    }
    
    .node-label {
        display: none;
    }
    
    .step-node {
        flex: initial;
    }
    
    .final-cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    /* ---- Header : encore plus compact sur petit mobile ---- */
    .header-premium {
        height: 64px;
    }

    .header-premium.scrolled {
        height: 58px;
    }

    .logo-img,
    .custom-logo {
        height: 44px;
    }

    .header-premium.scrolled .logo-img,
    .header-premium.scrolled .custom-logo {
        height: 38px;
    }

    .nav-menu {
        top: 64px;
        max-height: calc(100vh - 64px);
    }

    .header-premium.scrolled .nav-menu {
        top: 58px;
        max-height: calc(100vh - 58px);
    }

    .hero-section {
        padding-top: 110px;
    }

    .landing-hero {
        padding-top: 110px;
    }

    .landing-hero .hero-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        flex-basis: 84vw;
        height: 280px;
    }

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 0.75rem;
    }
}
