/* wildtours/assets/css/components/booking-hero.css */
.wt-booking-hero {
    position: relative;
    padding: 180px 0 120px;
    background-color: var(--background);
    background-image: radial-gradient(circle at 30% 50%, rgba(233, 99, 38, 0.15) 0%, transparent 60%);
    color: #fff;
    overflow: hidden;
}

.wt-bh-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.wt-bh-left {
    max-width: 600px;
}

.wt-bh-subheading {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.wt-bh-heading {
    font-family: var(--font-family);
    font-size: 64px;
    line-height: 1.1;
    font-weight: 400;
    margin: 0 0 32px;
    color: #ececec;
}

.wt-bh-heading .highlight {
    color: var(--primary);
    font-style: italic;
}

.wt-bh-desc {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.wt-bh-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wt-bh-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.wt-bh-info-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.wt-bh-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--primary);
    font-size: 16px;
}

.wt-bh-info-icon svg {
    width: 100%;
    height: auto;
    fill: var(--primary);
}

.wt-bh-info-text {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

@media (max-width: 991px) {
    .wt-bh-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .wt-bh-heading {
        font-size: 48px;
    }
    
    .wt-booking-hero {
        padding: 140px 0 80px;
    }
}

@media (max-width: 767px) {
    .wt-bh-heading {
        font-size: 40px;
    }
    
    .wt-booking-hero {
        padding: 120px 0 60px;
    }
}
