/* Tour Landing Hero */
.landing-hero {
    background: url('/assets/images/landing-bg.png') center center no-repeat;
    background-size: cover;
    padding: 120px 0 180px;
    min-height: 440px;
    display: flex;
    align-items: center;
}

.landing-hero .hero-content {
    text-align: center;
    margin-bottom: 32px;
}

.landing-hero .hero-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.landing-hero .hero-content .hero-desc {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.5;
    max-width: 611px;
    margin: 0 auto;
    opacity: 0.9;
}

.landing-hero .search-form-wrapper {
    background: var(--white);
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 30px 74px 0 rgba(67, 12, 12, 0.14);
    max-width: 950px;
    margin: 0 auto;
}

/* Tour Categories */
.tour-categories {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}

.tour-categories .container {
    background: var(--white);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.tour-categories .category-list {
    display: flex;
    gap: 30px;
}

.tour-categories .category-item a {
    border-radius: 12px;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-decoration: none;
    transition: transform 0.3s;
}

.tour-categories .category-item a:hover {
    transform: translateY(-5px);
}

.tour-categories .category-item .image {
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.tour-categories .category-item .image img {
    border-radius: 12px 12px 0 0;
    transition: transform 0.4s;
    width: 100%;
}

.tour-categories .category-item a:hover .image img {
    transform: scale(1.1);
}

.tour-categories .category-item .text {
    font-size: 14px;
    font-weight: 700;
    padding: 10px 0 13px 0;
    text-align: center;
}

/* Category Colors */
.tour-categories .category-item.primary a {
    background: var(--primary-light);
}

.tour-categories .category-item.primary .text {
    color: var(--primary);
}

.tour-categories .category-item.secondary a {
    background: var(--accent-purple-border);
}

.tour-categories .category-item.secondary .text {
    color: var(--accent-purple);
}

.tour-categories .category-item.tertiary a {
    background: var(--teal-light);
}

.tour-categories .category-item.tertiary .text {
    color: var(--teal);
}

.tour-categories .category-item.orange a {
    background: var(--warning-bg);
}

.tour-categories .category-item.orange .text {
    color: var(--warning);
}

/* Popular Tours Section */
.popular-tours {
    padding: 60px 0 80px;
}

.popular-tours .section-heading {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    gap: 5px;
}

.popular-tours .section-heading h2 {
    color: var(--secondary);
    font-weight: 400;
    font-size: 32px;
    margin: 0;
}

.popular-tours .section-heading p {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 12px;
    margin: 0;
}

/* Tour Grid */
.popular-tours .tour-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.popular-tours .tour-card {
    display: block;
    position: relative;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
}

.popular-tours .tour-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 16, 84, 0.5);
    border-radius: 8px;
    transition: background 0.3s;
}

.popular-tours .tour-card:hover::after {
    background: rgba(42, 16, 84, 0.3);
}

.popular-tours .tour-card .tour-image {
    width: 100%;
    height: 317px;
    position: relative;
}

.popular-tours .tour-card .tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.popular-tours .tour-card .tour-info {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 16px;
    z-index: 1;
}

.popular-tours .tour-card .tour-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 8px 0;
    text-align: center;
}

.popular-tours .tour-card .tour-info .price {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), inset 0px 4px 4px rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    padding: 10px 14px;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    width: fit-content;
    gap: 4px;
    margin: 0 auto;
}

.popular-tours .tour-card .tour-info .price small {
    font-size: 12px;
    font-weight: 400;
}

/* Mobile Responsive */
@media screen and (max-width: 991px) {
    .landing-hero {
        padding: 80px 0 120px;
        min-height: auto;
    }

    .landing-hero .hero-content h1 {
        font-size: 24px;
    }

    .landing-hero .hero-content .hero-desc {
        font-size: 12px;
        max-width: 100%;
        padding: 0 20px;
    }

    .tour-categories {
        margin-top: -60px;
    }

    .tour-categories .container {
        padding: 20px;
        border-radius: 16px;
    }

    .tour-categories .category-list {
        gap: 12px;
        flex-wrap: wrap;
    }

    .tour-categories .category-item {
        width: calc(50% - 6px);
    }

    .tour-categories .category-item .text {
        font-size: 12px;
        white-space: nowrap;
    }

    .popular-tours .tour-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .popular-tours .section-heading h2 {
        font-size: 24px;
    }

    .popular-tours .tour-card .tour-image {
        height: 200px;
    }

    .popular-tours .tour-card .tour-info h3 {
        font-size: 16px;
    }

    .popular-tours .tour-card .tour-info .price {
        font-size: 12px;
        padding: 6px 10px;
    }

    .popular-tours .tour-card .tour-info .price small {
        font-size: 10px;
    }
}

@media screen and (max-width: 575px) {
    .popular-tours .tour-grid {
        grid-template-columns: 1fr;
    }

    .popular-tours .tour-card .tour-image {
        height: 220px;
    }
}
