/* ============================================
   Ace Flight Center - Book A Flight Page Styles
   ============================================ */

.booking-section {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.booking-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
}

.booking-form-title {
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-navy);
    margin-bottom: var(--space-sm);
}

.booking-form-subtitle {
    font-size: var(--text-sm);
    color: var(--color-gray);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.booking-sidebar {
    position: sticky;
    top: 120px;
}

.booking-info-card {
    background: var(--color-navy);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    color: var(--color-white);
    margin-bottom: var(--space-xl);
}

.booking-info-card h3 {
    color: var(--color-white);
    font-size: var(--text-xl);
    margin-bottom: var(--space-lg);
}

.booking-info-list {
    list-style: none;
}

.booking-info-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.8);
}

.booking-info-list li:last-child {
    border-bottom: none;
}

.booking-info-list li svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    fill: var(--color-red);
    margin-top: 2px;
}

.booking-pricing {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-card);
}

.booking-pricing h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-lg);
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-light-gray);
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-label {
    font-size: var(--text-sm);
    color: var(--color-dark-gray);
}

.pricing-value {
    font-size: var(--text-base);
    font-weight: var(--font-weight-bold);
    color: var(--color-navy);
}

.booking-note {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: rgba(218, 0, 19, 0.05);
    border-left: 3px solid var(--color-red);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: var(--text-xs);
    color: var(--color-gray);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .booking-section { grid-template-columns: 1fr; }
    .booking-sidebar { position: static; }
}
