/* Booking Pages - Additional Styles */

/* ===== PAGE HERO ===== */
.page-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-white) 100%);
    border-bottom: 1px solid var(--border);
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
    text-align: center;
}

.page-hero p {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.0625rem;
    font-weight: 300;
}

/* ===== BOOKING WIDGET ===== */
.booking-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.booking-widget {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 3rem;
    min-height: 600px;
}

#tpwl-search,
#tpwl-tickets {
    min-height: 400px;
}

/* ===== POPULAR ROUTES ===== */
.popular-routes {
    padding: 4rem 0;
    background: var(--bg-cream);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.route-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 2rem;
    transition: var(--transition);
}

.route-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.route-cities {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.route-from,
.route-to {
    font-weight: 600;
    font-size: 1.125rem;
}

.route-cities svg {
    color: var(--text-light);
}

.route-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.route-price {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.0625rem;
}

.route-duration {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* ===== TRUST SECTION ===== */
.trust-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.trust-feature {
    text-align: center;
}

.trust-feature svg {
    margin: 0 auto 1.5rem;
}

.trust-feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.trust-feature p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

/* ===== COMING SOON ===== */
.coming-soon {
    padding: 6rem 0;
    text-align: center;
}

.coming-soon-content {
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.coming-soon p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.coming-soon-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ===== DESTINATIONS PAGE ===== */
.destinations-header {
    padding: 6rem 0 3rem;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-white) 100%);
}

.destinations-header h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0.75rem;
}

.destinations-header p {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.0625rem;
}

.destinations-list {
    padding: 4rem 0;
}

.destination-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.destination-full:nth-child(even) {
    direction: rtl;
}

.destination-full:nth-child(even) > * {
    direction: ltr;
}

.destination-full-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.destination-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-full-content h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.destination-full-content .destination-meta {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.destination-full-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.destination-full-content .destination-price-large {
    display: block;
    color: var(--accent);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* ===== RESPONSIVE - BOOKING PAGES ===== */
@media (max-width: 968px) {
    .booking-widget {
        padding: 2rem;
    }

    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .destination-full {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .destination-full:nth-child(even) {
        direction: ltr;
    }
}

@media (max-width: 640px) {
    .page-hero h1 {
        font-size: 2rem;
    }

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

    .coming-soon h1 {
        font-size: 2rem;
    }

    .coming-soon-actions {
        flex-direction: column;
    }

    .destination-full-content h2 {
        font-size: 1.75rem;
    }
}
