/* ===== BOOKING SECTION ===== */
.section-wrap:has(.booking) {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
}

.booking {
    max-width: 1400px;
    margin: 80px auto;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.15));
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 20px;
}

.booking-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
}

.booking-content {
    max-width: 600px;
}

.booking-content .eyebrow {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: #a78bfa;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.booking-content h2 {
    font-family: 'Audiowide', sans-serif;
    font-size: clamp(32px, 6vw, 48px);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.booking-content h2 em {
    color: #ec4899;
    font-style: italic;
}

.booking-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
}

.booking-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-booking {
    background: linear-gradient(135deg, #8B5CF6, #ec4899);
    color: #ffffff;
    border: none;
    padding: 14px 35px;
    border-radius: 25px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

.btn-booking:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

.btn-booking:active {
    transform: translateY(-1px);
}

.phone-link {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    color: #a78bfa;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.phone-link:hover {
    color: #ec4899;
    transform: scale(1.1);
}

.phone-icon {
    font-size: 1.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .booking {
        padding: 40px 20px;
        margin: 60px auto;
    }

    .booking-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .btn-booking {
        width: 100%;
        justify-content: center;
    }

    .booking-content h2 {
        font-size: 28px;
    }
}