/* RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

/* HERO */
.tour-hero-section {
    position: relative;
}

.tour-hero-section .carousel-item {
    height: 520px;
}

.tour-hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.tour-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    width: 100%;
    text-align: center;
}

.tour-hero-content .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.tour-hero-content .breadcrumb-item a {
    color: #f5c400;
    text-decoration: none;
    font-weight: 600;
}

.tour-hero-content .breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

.tour-hero-content .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

.tour-hero-content h1 {
    font-size: 46px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* TITLE BLOCK */
.tour-title-block {
    text-align: center;
}

.tour-title-gradient {
    background: linear-gradient(90deg, #ff1a5f, #ff8a00);
    padding: 35px 20px;
    color: #fff;
}

.tour-title-gradient h2 {
    font-family: 'Playfair Display', "Times New Roman", serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.tour-title-description {
    padding: 40px 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.tour-title-description p {
    font-size: 16px;
    color: #333;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
}

/* SEARCH */
.tour-search-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0 30px;
}

.tour-search {
    display: flex;
    align-items: center;
    width: 650px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 8px 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.tour-filter {
    padding: 8px 20px;
    background: #fdf5d2;
    border-radius: 40px;
    margin-right: 12px;
    font-weight: 700;
    font-size: 13px;
    color: #1a1a1a;
    cursor: pointer;
    white-space: nowrap;
}

.tour-filter span {
    font-size: 10px;
    margin-left: 5px;
}

#searchInput {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px;
    font-size: 15px;
    background: transparent;
    color: #333;
}

/* CARDS SECTION */
.tour-card-section {
    padding: 40px 30px;
}

.tour-package-card {
    background: #f5c400;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    padding: 12px;
    transition: transform 0.3s ease;
}

.tour-package-card:hover {
    transform: translateY(-5px);
}

.tour-package-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
}

.tour-card-body {
    padding: 15px 10px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5c400;
}

.tour-card-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
    line-height: 1.2;
}

.tour-card-btn {
    background: #fff;
    color: #1a1a1a;
    border: none;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tour-card-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

/* Tablet */
@media (max-width: 992px) {
    .tour-search {
        width: min(420px, 90%);
    }
}

/* Mobile Layout Optimization */
@media (max-width: 768px) {
    .tour-hero-section .carousel-item {
        height: auto !important;
        min-height: 220px;
    }

    .tour-hero-section img {
        height: auto !important;
        min-height: 220px;
        object-fit: initial !important;
    }

    .tour-hero-content h1 {
        font-size: 28px;
    }

    .tour-title-gradient {
        padding: 25px 15px !important;
    }

    .tour-title-gradient h2 {
        font-size: 22px !important;
    }

    .tour-title-description {
        padding: 25px 15px !important;
    }

    .tour-title-description p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .tour-search-wrapper {
        margin: 20px 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .tour-search {
        width: 92% !important;
        border-radius: 30px;
    }

    .tour-card-section {
        padding: 30px 10px;
    }

    .tour-package-card {
        border-radius: 16px;
        margin: 0 5px 25px 5px !important;
        padding: 10px;
    }

    .tour-package-card img {
        height: 240px;
        border-radius: 10px;
    }

    .tour-card-title {
        font-size: 14px;
    }

    .tour-card-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
}