﻿/* ============================================
   TOUR PACKAGES - PROFESSIONAL STYLING
   ============================================ */

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ============================================
   GLOBAL & TYPOGRAPHY
   ============================================ */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

h2, h4, .page-title {
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   HERO SECTION & BANNER
   ============================================ */
.cover-image {
    position: relative;
    padding: 80px 0;
    background-size: cover !important;
    background-position: center !important;
}

    .cover-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
        z-index: 1;
    }

    .cover-image .container {
        position: relative;
        z-index: 2;
    }

/* ============================================
   FORM SECTION
   ============================================ */
.search-background {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 3rem !important;
}

    .search-background .text-center {
        margin-bottom: 2.5rem;
    }

    .search-background h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 0.5rem;
    }

    .search-background h4 {
        font-size: 1.25rem;
        font-weight: 500;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .search-background p {
        font-size: 1rem;
        color: #555;
    }

    /* ============================================
   FORM INPUTS - MODERN DESIGN
   ============================================ */
    .search-background .form-control,
    .search-background select {
        height: 55px;
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        padding: 0 20px;
        font-size: 15px;
        font-weight: 400;
        color: #333;
        background: #fff;
        transition: all 0.3s ease;
    }

        .search-background .form-control:focus,
        .search-background select:focus {
            border-color: #3498db;
            box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
            outline: none;
        }

        .search-background .form-control::placeholder {
            color: #999;
            font-weight: 400;
        }

    .search-background input[type="date"] {
        cursor: pointer;
    }

    .search-background select {
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 20px center;
        padding-right: 45px;
    }

/* Validation Messages */
.text-danger {
    display: block;
    font-size: 13px;
    margin-top: 5px;
    font-weight: 500;
}

/* ============================================
   SUBMIT BUTTON - MODERN DESIGN
   ============================================ */
.search-background .btn-secondary {
    height: 55px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

    .search-background .btn-secondary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(52, 152, 219, 0.4);
        background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    }

    .search-background .btn-secondary:active {
        transform: translateY(0);
    }

/* ============================================
   BREADCRUMB
   ============================================ */
.bg-white.border-bottom {
    padding: 1rem 0;
    background: #f8f9fa !important;
    border-bottom: 1px solid #e0e0e0 !important;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .breadcrumb-item a:hover {
        color: #2980b9;
    }

.page-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

/* ============================================
   DESTINATION FILTER MENU
   ============================================ */
.destination-filter-wrapper {
    margin-bottom: 3rem;
}

.destination-filter-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

    .destination-filter-menu li {
        margin: 0;
    }

    .destination-filter-menu a {
        display: inline-block;
        padding: 12px 30px;
        background: #fff;
        color: #333;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 15px;
        border: 2px solid #e0e0e0;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

        .destination-filter-menu a:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-color: #3498db;
            color: #3498db;
        }

        .destination-filter-menu a.active {
            background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
            color: #fff;
            border-color: #3498db;
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
        }

/* ============================================
   DURATION FILTER MENU (CATEGORY TITLES)
   ============================================ */
.items-blog-tab-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

    .items-blog-tab-menu li {
        margin: 0;
    }

.duration-link {
    display: inline-block;
    padding: 10px 24px;
    background: #f8f9fa;
    color: #555;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

    .duration-link:hover {
        background: #e9ecef;
        color: #333;
        border-color: #dee2e6;
    }

    .duration-link.active {
        background: #2ecc71;
        color: #fff;
        border-color: #2ecc71;
        box-shadow: 0 3px 12px rgba(46, 204, 113, 0.3);
    }

/* ============================================
   PACKAGE CARDS - PROFESSIONAL DESIGN
   ============================================ */
.package-card {
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

    .package-card .card {
        border: none;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
       
    }

        .package-card .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
        }

/* Package Image */
.item-card9-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.item-card9-imgs {
    height: 100%;
    width: 100%;
}

/* Center the button container */
.search-background .form .col-xl-4.col-lg-4.col-md-4.mb-0 {
    margin: 0 auto;
    float: none;
}

.search-background .btn-secondary {
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
}

    .search-background .btn-secondary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
        transition: left 0.5s ease;
    }

    .search-background .btn-secondary:hover::before {
        left: 100%;
    }

    .search-background .btn-secondary:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
        background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    }

    .search-background .btn-secondary:active {
        transform: translateY(-1px) scale(1);
        box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    }


    .item-card9-imgs img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.package-card .card:hover .item-card9-imgs img {
    transform: scale(1.08);
}

/* Package Badge/Tag */
.item-cardreview-absolute {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
    color: #fff;
    padding: 12px 20px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Package Content */
.package-card .card-body {
    padding: 2rem 1.5rem 2.5rem 1.5rem;
}

.package-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #5e2bd6;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

    .package-card h4:hover {
        color: #3498db;
    }

.package-card p {
    color: #e91e63;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* Package Footer - HIDDEN */
.package-card .card-body.d-flex {
    display: none !important;
}

.package-card .text-secondary {
    display: none !important;
}

.package-card .badge-warning {
    display: none !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
    .search-background {
        padding: 2rem !important;
    }

        .search-background h2 {
            font-size: 2rem;
        }

    .destination-filter-menu,
    .items-blog-tab-menu {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .cover-image {
        padding: 60px 0;
    }

    .search-background {
        padding: 1.5rem !important;
        border-radius: 15px;
    }

        .search-background h2 {
            font-size: 1.75rem;
        }

        .search-background h4 {
            font-size: 1.1rem;
        }

        .search-background .form-control,
        .search-background select {
            height: 50px;
            font-size: 14px;
        }

        .search-background .btn-secondary {
            height: 50px;
            font-size: 15px;
        }

    .destination-filter-menu a {
        padding: 10px 20px;
        font-size: 14px;
    }

    .duration-link {
        padding: 8px 18px;
        font-size: 13px;
    }

    .item-card9-img {
        height: 220px;
    }
}

@media (max-width: 575px) {
    .destination-filter-menu,
    .items-blog-tab-menu {
        gap: 10px;
    }

        .destination-filter-menu a {
            padding: 8px 16px;
            font-size: 13px;
        }

    .duration-link {
        padding: 7px 15px;
        font-size: 12px;
    }
}

/* ============================================
   ADDITIONAL ENHANCEMENTS
   ============================================ */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: #3498db;
    color: #fff;
}

/* Focus Visible for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 3px solid #3498db;
    outline-offset: 2px;
}

/* Loading Animation for Cards (Optional) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-card {
    animation: fadeInUp 0.6s ease-out;
}

    /* Stagger Animation for Cards */
    .package-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .package-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .package-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .package-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .package-card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .package-card:nth-child(6) {
        animation-delay: 0.6s;
    }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gradient {
    background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-lg-custom {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}


.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .hover-lift:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }
