/* TT 2027 Tours - Phase 1 Landing Page */

/* Hero Section */
.tour-hero {
    position: relative;
    padding: 100px 0 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(18, 20, 22, 0.9) 0%, rgba(18, 20, 22, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: #E02424;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    margin: 0 0 20px;
    color: #FFFFFF;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #E5E7EB;
    margin: 0 0 40px;
    max-width: 600px;
}

/* Metadata Bar */
.metadata-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 24px 32px;
    border-radius: 12px;
    width: fit-content;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.meta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(247, 164, 0, 0.2);
    color: #f7a400;
    border-radius: 50%;
}

.meta-icon svg {
    width: 24px;
    height: 24px;
}

.meta-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9CA3AF;
}

.meta-value {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
    background: #F8F9FA;
}

.booking-grid-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 64px;
    align-items: start;
}

/* Tour Info */
.section-heading {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111111;
    margin: 0 0 20px;
}

.tour-description {
    font-size: 18px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0 0 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #111111;
    color: #f7a400;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: #111111;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-content p {
    font-size: 15px;
    line-height: 1.5;
    color: #6B7280;
    margin: 0;
}

/* Booking Panel */
.booking-card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid #E5E7EB;
    overflow: hidden;
    position: sticky;
    top: 40px;
}

.price-header {
    background: #111111;
    padding: 32px;
    text-align: center;
    color: #FFFFFF;
}

.price {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: #f7a400;
    line-height: 1;
    margin-bottom: 8px;
}

.price-desc {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #9CA3AF;
}

.booking-step {
    padding: 32px;
}

.step-title {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111111;
    margin: 0 0 20px;
}

.date-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.date-btn {
    padding: 14px 12px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    background: #FFFFFF;
    color: #111111;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.date-btn:hover {
    border-color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.date-btn.selected {
    background: #111111;
    border-color: #111111;
    color: #FFFFFF;
    transform: translateY(0);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.booking-action {
    padding: 0 32px 32px;
}

.btn-checkout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    background: #E02424;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-checkout:hover:not(:disabled) {
    background: #B91C1C;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(224, 36, 36, 0.3);
}

.btn-checkout:disabled {
    background: #D1D5DB;
    color: #9CA3AF;
    cursor: not-allowed;
}

.checkout-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-checkout:hover:not(:disabled) .checkout-icon {
    transform: translateX(4px);
}

.secure-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: #6B7280;
    margin: 16px 0 0;
    text-align: center;
}

/* Phase 2 Handoff Banner */
.brochure-handoff {
    padding: 0 0 80px;
    background: #F8F9FA;
}

.brochure-card {
    background: linear-gradient(135deg, #121416 0%, #1F2328 100%);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    color: #FFFFFF;
    border: 1px solid #374151;
    position: relative;
    overflow: hidden;
}

.brochure-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at center, rgba(247, 164, 0, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.brochure-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.brochure-content h2 {
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 16px;
    color: #f7a400;
}

.brochure-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #E5E7EB;
    margin: 0 0 32px;
}

.btn-brochure {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-brochure svg {
    width: 20px;
    height: 20px;
}

.btn-brochure:hover {
    background: #FFFFFF;
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Site Footer Base Adjustments */
.site-footer {
    background: #121416;
    color: #F8F9FA;
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    text-align: center;
}

.footer-logo h2 {
    font-size: 20px;
    font-weight: 800;
    color: #f7a400;
    margin: 0;
}

.footer-info p {
    margin: 4px 0;
    font-size: 14px;
    color: #9CA3AF;
}

.footer-info a {
    color: #F8F9FA;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-info a:hover {
    color: #f7a400;
}

.footer-copyright {
    text-align: center;
    font-size: 13px;
    color: #6B7280;
    border-top: 1px solid #374151;
    padding-top: 24px;
    margin: 0;
}

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

    .booking-card {
        position: static;
    }

    .hero-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .metadata-bar {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        width: 100%;
    }

    .hero-title {
        font-size: 32px;
    }

    .brochure-card {
        padding: 32px 20px;
    }

    .brochure-content h2 {
        font-size: 24px;
    }
}