/* ============================================
   BOOKING PAGE STYLES
   ============================================ */

/* Booking Section */
.booking-section {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg,
            var(--color-bg-dark) 0%,
            #0a0f1a 50%,
            var(--color-bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Left Side: Info */
.booking-info {
    position: sticky;
    top: 120px;
}

.info-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.05));
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(251, 191, 36, 0.4);
    }
}

.booking-info h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
}

.info-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.info-benefit {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.benefit-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-text-primary);
}

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

.info-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-accent-gold);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Right Side: Form */
.booking-form-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.booking-form h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-primary);
}

.form-subtitle {
    color: var(--color-text-muted);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-text-primary);
    font-size: 0.95rem;
}

.label-required {
    color: var(--color-accent-gold);
    margin-left: 4px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-text-primary);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-blue);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Radio Groups */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.radio-option:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(4px);
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.radio-custom {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.radio-option input[type="radio"]:checked~.radio-custom {
    border-color: var(--color-accent-blue);
    background: var(--color-accent-blue);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.radio-option input[type="radio"]:checked~.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.radio-option input[type="radio"]:checked~.radio-label .radio-title {
    color: var(--color-accent-blue);
}

.radio-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.radio-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text-primary);
    transition: color 0.3s ease;
}

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

/* Conditional Fields */
.conditional-field {
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--color-accent-blue), #2563eb);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    margin-top: 32px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-icon {
    transform: translateX(4px);
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.success-message h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.success-message p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.btn-back {
    display: inline-block;
    padding: 14px 32px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--color-accent-blue);
    border-radius: var(--radius-md);
    color: var(--color-accent-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: var(--color-accent-blue);
    color: white;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 15, 26, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--color-accent-blue);
    transform: translateX(-4px);
}

/* Footer */
.footer-simple {
    background: rgba(10, 15, 26, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px 0;
    text-align: center;
}

/* Simple Price Bar */
.info-price-bar {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(251, 191, 36, 0.05));
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    margin-top: 16px;
    text-align: center;
}

.info-price-bar p {
    color: var(--color-text-primary);
    font-size: 0.9rem;
    margin: 0;
}

.gold-text {
    color: var(--color-accent-gold);
    font-weight: 700;
}

.footer-simple p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-simple a {
    color: var(--color-accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive */
@media (max-width: 968px) {
    .booking-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-info {
        position: static;
    }

    .booking-info h1 {
        font-size: 2.5rem;
    }

    .info-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .booking-form-container {
        padding: 32px 24px;
    }
}

@media (max-width: 640px) {
    .booking-section {
        padding: 80px 0 40px;
    }

    /* Much smaller, compact header text */
    .booking-info h1 {
        font-size: 1.3rem !important;
        margin-bottom: 8px;
    }

    .info-subtitle {
        font-size: 0.8rem !important;
        margin-bottom: 16px;
        line-height: 1.4;
    }

    .info-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
        margin-bottom: 12px;
    }

    /* Compact info benefits */
    .info-benefits {
        gap: 10px;
        margin-bottom: 16px;
    }

    .info-benefit {
        gap: 8px;
    }

    .benefit-icon {
        font-size: 1rem;
        width: 32px;
        height: 32px;
    }

    .benefit-text h3 {
        font-size: 0.75rem;
        margin-bottom: 2px;
    }

    .benefit-text p {
        font-size: 0.65rem;
        line-height: 1.3;
    }

    /* HIDE stats box, replace with simple price bar */
    .info-stats {
        display: none !important;
    }

    /* Form container compact */
    .booking-form-container {
        padding: 16px 12px;
    }

    .booking-form h2 {
        font-size: 1.1rem !important;
    }

    .form-subtitle {
        font-size: 0.75rem !important;
        margin-bottom: 16px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .radio-option {
        padding: 10px;
    }

    .radio-title {
        font-size: 0.85rem;
    }

    .radio-desc {
        font-size: 0.7rem;
    }

    .btn-submit {
        padding: 12px 20px;
        font-size: 0.9rem;
        margin-top: 16px;
    }

    .form-footer {
        font-size: 0.7rem;
        margin-top: 12px;
    }

    .field-hint {
        font-size: 0.7rem;
    }
}