/* Modern Updates CSS */

/* =========================================
   1. Premium Booking Section (Second Section)
   ========================================= */
/* Reverted/Cleaned up as per user request to not affect the second section */
/* We keep the class definition just in case, but it won't be used on #services if removed from HTML */
.premium-booking-bg {
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/normal/nepal.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 90px 0;
    position: relative; */
}

/* Ensure the form container is transparent or uses its default style so the green shows */
.premium-booking-bg .plan-section-three {
    /* Removed white background override to let original green show */
    margin-top: 0;
}

/* =========================================
   2. Modern Featured Tours Section
   ========================================= */
.modern-featured-tours {
background-image: linear-gradient(rgb(255 254 254 / 87%), rgba(249, 249, 249, 0.95)), url(../images/hero/hero-bg-two.png);    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
}

/* Tabs Styling */
.tour-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tour-tab-btn {
    background: transparent;
    border: 1px solid #e0e0e0;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: #636e72;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tour-tab-btn:hover {
    border-color: var(--primary-color); /* Orange accent */
    color: var(--primary-color);
}

.tour-tab-btn.active {
    background: var(--primary-color); /* Orange accent */
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px #14897c4f;
}

/* Card Animation for Filtering */
.tour-card-col {
    transition: all 0.4s ease;
}

.tour-card-col.hide {
    display: none;
    opacity: 0;
    transform: scale(0.9);
}

.tour-card-col.show {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Existing Card Styles */
.tour-card-modern {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tour-card-modern .card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.tour-card-modern .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card-modern:hover .card-img img {
    transform: scale(1.1);
}

.tour-card-modern .wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tour-card-modern .wishlist-btn:hover {
    background: #ff4757;
    color: #fff;
}

.tour-card-modern .location-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-card-modern .card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-card-modern .tour-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2d3436;
    line-height: 1.4;
}

.tour-card-modern .tour-desc {
    font-size: 14px;
    color: #636e72;
    margin-bottom: 20px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-card-modern .card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.tour-card-modern .meta {
    font-size: 14px;
    color: #636e72;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-card-modern .view-btn {
    color: var(--primary-color); /* Orange accent */
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.tour-card-modern .view-btn:hover {
    gap: 8px;
    color: #d35400;
}
