/* ============================================
   INDEX PAGE ENHANCEMENTS
   Modern, Premium UI Improvements
   ============================================ */

/* ========== TOUR CARDS ENHANCEMENT ========== */
.tour-block {
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: white;
    position: relative;
}

.tour-block:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2) !important;
}

.tour-block .main-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.tour-block .main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-block:hover .main-img img {
    transform: scale(1.15) rotate(2deg);
}

/* Gradient Overlay on Image */
.tour-block .main-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    pointer-events: none;
}

/* Tour Info Styling */
.tour-block .tour-info {
    padding: 1.5rem;
    position: relative;
    background: white;
}

.tour-block .tour-title a {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.tour-block .tour-title a:hover {
    color: #f39c12;
}

.tour-block .tour-title p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

/* Rating Stars */
.tour-block .rating {
    margin-bottom: 1rem;
}

.tour-block .rating .fa-star {
    color: #ffa726;
    font-size: 0.875rem;
}

/* Price Badge */
.tour-block .overlay .info .price {
    background: linear-gradient(135deg, #f39c12 0%, #f12711 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
    display: inline-block;
}

.tour-block .overlay .info .price .arrow {
    background: white;
    color: #f39c12;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.tour-block:hover .overlay .info .price .arrow {
    transform: translateX(5px);
}

/* Featured Badge */
.tour-block .featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

/* ========== SECTION HEADERS ENHANCEMENT ========== */
.section-padding {
    padding: 5rem 0;
}

#tour-offers .section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f39c12 0%, #f12711 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

#tour-offers .section-heading p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* ========== HERO SECTION ENHANCEMENT ========== */
.flexslider-container {
    position: relative;
}

.flexslider .slides li {
    position: relative;
}

.flexslider .slides li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.3), rgba(0, 188, 212, 0.3));
    z-index: 1;
}

.flexslider .meta {
    position: relative;
    z-index: 2;
}

.flexslider .meta h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
}

.flexslider .meta h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ========== SEARCH TABS - REVERTED TO ORIGINAL ========== */
/* No heavy styling - keeping Bootstrap default design */

/* ========== BEST FEATURES ENHANCEMENT ========== */
#best-features {
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 100%);
    position: relative;
    overflow: hidden;
}

#best-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

#best-features .feature-box {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

#best-features .feature-box:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-8px);
}

#best-features .feature-box i {
    font-size: 3rem;
    background: linear-gradient(135deg, #f39c12 0%, #f12711 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

/* ========== FLIGHT CARDS ENHANCEMENT ========== */
.flight-card-landing {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
}

.flight-card-landing:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.3);
}

/* ========== VISA CARDS ENHANCEMENT ========== */
.visa-card-landing {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
}

.visa-card-landing:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(243, 156, 18, 0.3);
}

/* ========== OWL CAROUSEL CUSTOM ARROWS ========== */
.owl-custom-arrow .owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f39c12 0%, #f12711 100%) !important;
    color: white !important;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.owl-custom-arrow .owl-nav button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(26, 115, 232, 0.4);
}

/* ========== TESTIMONIALS ENHANCEMENT ========== */
#testimonials {
    position: relative;
}

#testimonials .testimonial-item {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

#testimonials .testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
    
    .tour-block .main-img {
        height: 220px;
    }
    
    .search-tabs {
        padding: 1.5rem;
        margin-top: -2rem;
    }
    
    .search-tabs .nav-tabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}
