/* ===== Booking Page Styles ===== */
/* Giống style với các trang khác */

/* Fix horizontal scroll gap on mobile */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}


/* Main Section */
.booking-section {
    padding: 80px 5vw 120px;
    background: #1a0d2e;
    position: relative;
    min-height: 100vh;
}

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

/* Section Header - giống các trang khác */
.booking-header {
    text-align: center;
    margin-bottom: 80px;
}

.booking-header .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.booking-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 0 0 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    line-height: 1.4;
    padding: 0.2em 0;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.booking-subtitle {
    font-size: 1.2rem;
    color: var(--muted);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Main Row - Contact Methods (left) + QR Code (right) */
.booking-main-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 80px;
}

/* QR Section */
.qr-section {
    display: flex;
    justify-content: center;
}

.qr-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-card:hover {
    box-shadow: 0 0 40px rgba(122, 80, 154, 0.4);
    border-color: rgba(199, 90, 246, 0.5);
    filter: brightness(1.1);
}

.qr-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(199, 90, 246, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.qr-image-wrapper {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 24px;
    display: inline-block;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.qr-image {
    width: 240px;
    height: 240px;
    object-fit: contain;
    border-radius: 8px;
}

.qr-info {
    position: relative;
    z-index: 1;
}

.qr-info h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.qr-info p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Contact Methods */
.contact-methods {
    margin-bottom: 0;
}

.contact-methods h3 {
    color: #ffffff;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    text-align: left;
    margin-bottom: 24px;
    font-weight: 600;
}

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

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 0 40px rgba(122, 80, 154, 0.4);
    border-color: rgba(199, 90, 246, 0.5);
    filter: brightness(1.1);
}

.contact-card.highlight {
    background: linear-gradient(135deg, rgba(122, 80, 154, 0.2), rgba(199, 90, 246, 0.1));
    border-color: rgba(199, 90, 246, 0.3);
}

.contact-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    color: var(--primary);
}

.contact-icon.zalo {
    background: linear-gradient(135deg, #0068ff, #00a8ff);
    color: #fff;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
}

/* Locations Info */
.locations-info {
    margin-bottom: 40px;
}

.locations-info h3 {
    color: #ffffff;
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}

.location-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.location-mini-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
}

.location-mini-card:hover {
    box-shadow: 0 0 40px rgba(122, 80, 154, 0.4);
    border-color: rgba(199, 90, 246, 0.5);
    filter: brightness(1.1);
}

.location-badge {
    display: inline-block;
    background: var(--gradient);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.location-mini-card h4 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.location-mini-card p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.location-hours {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 500;
}

.location-hours svg {
    opacity: 0.8;
}

.location-badge.opening-soon {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931a 100%);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(247, 147, 26, 0.4);
    }
    50% {
        box-shadow: 0 0 20px 5px rgba(247, 147, 26, 0.3);
    }
}

/* Booking Policy Section */
.booking-policy-section {
    margin-bottom: 80px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.booking-policy-section h3 {
    color: #ffffff;
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    margin-bottom: 12px;
    font-weight: 600;
}

.policy-intro {
    text-align: center;
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.policy-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 20px;
}

.policy-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(199, 90, 246, 0.1);
    color: #c75af6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-content {
    flex: 1;
}

.policy-content h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 0;
}

.policy-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-content li {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.policy-content li strong {
    color: #ffffff;
    font-weight: 500;
}

.policy-content li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    line-height: 1.2;
}

/* Responsive */
@media (max-width: 1024px) {
    .booking-main-row {
        gap: 32px;
    }
}

@media (max-width: 825px) {
    .booking-main-row {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .contact-methods {
        order: 2;
    }

    .qr-section {
        order: 1;
    }

    .contact-methods h3 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .booking-section {
        padding: 120px 5vw 80px;
    }

    .booking-header {
        margin-bottom: 60px;
    }

    .booking-policy-section {
        padding: 32px 24px;
        margin-bottom: 60px;
        border-radius: 20px;
    }
    
    .policy-card {
        flex-direction: column;
        gap: 16px;
    }
    
    .policy-icon {
        width: 40px;
        height: 40px;
    }

    .qr-card {
        padding: 32px;
    }

    .qr-image {
        width: 200px;
        height: 200px;
    }

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

    .contact-card {
        flex-direction: row;
        text-align: left;
        padding: 24px;
    }

    .location-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .qr-image {
        width: 180px;
        height: 180px;
    }

    .qr-card {
        padding: 24px;
    }
}