/* ========================================
   RESERVATION PAGE - MUSI'QUIZ STYLE
   ======================================== */

.reservation-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reservation-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 127, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 150, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.reservation-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.res-logo {
    height: 60px;
    margin-bottom: 20px;
}

.reservation-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.res-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
}

/* RESERVATION SECTION */
.reservation-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ÉTAPES */
.booking-steps {
    text-align: center;
    margin-bottom: 60px;
}

.steps-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* INTRO TEXT */
.booking-intro {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.booking-intro h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.booking-intro p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.booking-intro a {
    color: #ff00ff;
    text-decoration: none;
    font-weight: 600;
}

.booking-intro a:hover {
    text-decoration: underline;
}

/* MODULE 4ESCAPE */
.booking-module {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.forescape-catalog {
    margin-bottom: 30px;
}

.forescape-cart {
    margin-top: 30px;
}

/* TARIFS */
.pricing-section {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    margin-bottom: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.pricing-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #1a1a2e;
    text-align: center;
}

.pricing-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 40px;
    font-style: italic;
}

.pricing-table {
    max-width: 600px;
    margin: 0 auto 40px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-label {
    color: #333;
    font-weight: 500;
}

.pricing-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff00ff;
}

.pricing-note {
    background: #f0f0f0;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.pricing-note h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.pricing-note p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* TEAM BUILDING PROMO */
.team-building-promo {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.team-building-promo h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.team-building-promo p {
    margin: 0;
    opacity: 0.95;
}

/* CONTACT CTA */
.contact-cta {
    background: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1a1a2e;
}

.contact-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: white;
    border: 2px solid #ff00ff;
    border-radius: 8px;
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-btn:hover {
    background: #ff00ff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 255, 0.3);
}

.contact-btn .icon {
    font-size: 1.3rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .reservation-hero h1 {
        font-size: 2rem;
    }

    .booking-intro,
    .booking-module,
    .pricing-section {
        padding: 25px;
    }

    .pricing-section h2 {
        font-size: 1.5rem;
    }

    .contact-links {
        flex-direction: column;
    }

    .contact-btn {
        justify-content: center;
    }
}