 /* Default desktop layout */ba
    .tour-main {
        display: grid;
        grid-template-columns: 70% 30%;
        gap: 30px;
        margin-bottom: 50px;
    }

    .tour-content-left {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    /* Mobile Layout - Highlights above slider */
    @media (max-width: 768px) {
        .tour-main {
            grid-template-columns: 100%;
            grid-template-areas: 
                "highlights"
                "content";
        }

        .tour-highlights {
            grid-area: highlights;
            position: static !important;
            margin-bottom: 20px;
        }

        .tour-content-left {
            grid-area: content;
        }
    }
    
    /* SEO Breadcrumb */
    .seo-breadcrumb {
        background: #f8f9fa;
        padding: 10px 15px;
        border-radius: 5px;
        margin-bottom: 20px;
        font-size: 0.9em;
    }
    
    .seo-breadcrumb a {
        color: #007bff;
        text-decoration: none;
    }
    
    .seo-breadcrumb a:hover {
        text-decoration: underline;
    }
    
    .seo-breadcrumb .active {
        color: #6c757d;
    }
    
    
    /* Animated Gradient Headings inside Tour Tabs */
.tour-details .tab-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;

    background: linear-gradient(
        270deg,
        #667eea,
        #00c6ff,
        #28a745,
        #ff6b6b,
        #667eea
    );
    background-size: 400% 400%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: headingGradient 6s ease infinite;
}

/* Gradient animation */
@keyframes headingGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Small underline accent */
.tour-details .tab-content h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    margin-top: 8px;
    border-radius: 3px;

    background: linear-gradient(
        90deg,
        #667eea,
        #4ecdc4
    );
}

/* Mobile responsive */
@media (max-width: 768px) {
    .tour-details .tab-content h2 {
        font-size: 1.5rem;
    }
}

    
    
    /* Tour Header - SIMPLIFIED */
.tour-detail-header {
        padding: 30px 0;
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    border-bottom: 1px solid #eaeaea;
        position: relative;
    width: 100%;
    /* responsive height */
    min-height: 100vh;
    height: auto;
    background-size: cover;      /* image fit */
    background-position: center; /* center align */
    background-repeat: no-repeat;
    display: flex;
}

.tour-detail-header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #fff;
}

.tour-location {
    font-size: 1.1rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tour-location i {
    color: #007bff;
}

    
    
    
    /* SEO Highlight Box */
    .seo-highlight-box {
        background: #fff3cd;
        padding: 15px;
        border-left: 4px solid #ffc107;
        margin: 15px 0;
        border-radius: 0 5px 5px 0;
        font-size: 0.95em;
    }
    
    /* SIMILAR TOURS SECTION - INDEX.PHP STYLE */
    .tours-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }
    
    .tour-card {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        animation: cardAppear 0.8s ease-out forwards;
        opacity: 0;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        transform: translateY(30px);
        height: 100%;
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }
    
    .tour-card:nth-child(1) { animation-delay: 0.1s; }
    .tour-card:nth-child(2) { animation-delay: 0.2s; }
    .tour-card:nth-child(3) { animation-delay: 0.3s; }
    
    @keyframes cardAppear {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .tour-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(
            circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 107, 107, 0.1) 0%,
            rgba(78, 205, 196, 0.05) 30%,
            transparent 70%
        );
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
        pointer-events: none;
    }
    
    .tour-card:hover::before {
        opacity: 1;
    }
    
    .tour-card::after {
        content: '';
        position: absolute;
        inset: -2px;
        background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #667eea);
        opacity: 0;
        transition: opacity 0.5s ease;
        z-index: -1;
        border-radius: 22px;
        filter: blur(10px);
    }
    
    .tour-card:hover::after {
        opacity: 0.4;
    }
    
    .tour-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
                    0 0 0 1px rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.08);
    }
    
    /* Enhanced Tour Title on Image - ALWAYS VISIBLE */
    .tour-title-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px 25px;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
        z-index: 3;
        transform: translateY(0);
        transition: all 0.3s ease;
    }
    
    .tour-card:hover .tour-title-overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.3) 100%);
        padding: 25px 30px;
    }
    
    .tour-title-overlay h3 {
        color: white;
        font-size: 1.2rem;
        font-weight: 700;
        margin: 0;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .tour-card:hover .tour-title-overlay h3 {
        font-size: 1.3rem;
        transform: translateY(-3px);
    }
    
    .tour-image-slider {
        position: relative;
        height: 220px;
        overflow: hidden;
        border-radius: 20px 20px 0 0;
    }
    
    .tour-image-slider img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 0.8s ease-in-out, transform 0.8s ease;
        transform: scale(1.1);
    }
    
    .tour-image-slider img.active {
        opacity: 1;
        transform: scale(1);
    }
    
    .tour-image-nav {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        z-index: 4;
    }
    
    .tour-image-nav-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .tour-image-nav-dot.active {
        background: white;
        transform: scale(1.3);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    
    .tour-image-nav-dot:hover {
        background: white;
        transform: scale(1.2);
    }
    
    /* Enhanced Tour Badges */
    .tour-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        z-index: 3;
        animation: badgeFloat 2s ease-in-out infinite alternate;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        text-transform: uppercase;
    }
    
    .tour-badge.popular {
        background: linear-gradient(45deg, #FF6B6B, #FF8E53);
        color: white;
    }
    
    .tour-badge.featured {
        background: linear-gradient(45deg, #4ECDC4, #44A08D);
        color: white;
    }
    
    .tour-badge.trending {
        background: linear-gradient(45deg, #667eea, #764ba2);
        color: white;
    }
    
    @keyframes badgeFloat {
        from {
            transform: translateY(0) rotate(0deg);
        }
        to {
            transform: translateY(-5px) rotate(2deg);
        }
    }
    
    .tour-info {
        padding: 5px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 2;
    }
    
    /* Hide title from tour-info as it's now on image */
    .tour-info h3 {
        display: none;
    }
    
    .tour-info .location {
        color: #212529;
        font-size: 0.9rem;
        margin-top: 5px;
        margin-bottom: 5px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .tour-info .location i {
        color: #4ECDC4;
    }
    
    .tour-meta {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 10px;
        color: #212529;
        font-size: 0.9rem;
    }
    
    .tour-meta span {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .tour-meta i {
        color: #667eea;
    }
    
    .meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2px;
    border-radius: var(--border-radius);
}

.meta-item i {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 2px;
}
    
    
    
    
    
    
    
    
    
    /* IMPROVED Price Display with Better Alignment */
    .price-container {
        margin-top: 2px;
        padding-top: 2px;
        border-top: 1px solid rgba(255,255,255,0.12);
        font-family: 'Inter', sans-serif;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    /* TOP ROW */
    .price-top-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* From */
    .price-from {
        font-size: 1.4rem;
        font-weight: 500;
        color: #777;
    }

    /* Discount badge */
    .discount-percent {
        font-size: 0.6rem;
        font-weight: 700;
        color: #fff;
        background: linear-gradient(45deg, #FF6B6B, #FF8E53);
        padding: 4px 12px;
        border-radius: 14px;
        white-space: nowrap;
        animation: discountPulse 2s infinite;
    }

    /* BOTTOM ROW */
    .price-bottom-row {
        display: flex;
        align-items: baseline;
        gap: 10px;
        flex-wrap: wrap;
    }

    /* Final price */
    .price-final {
        font-size: 1.2rem;
        font-weight: 800;
        color: #000;
    }

    /* Original price */
    .price-original {
        font-size: 0.6rem;
        color: #999;
        text-decoration: line-through;
        font-weight: 600;
    }

    /* Animation */
    @keyframes discountPulse {
        0%,100% { transform: scale(1); }
        50% { transform: scale(1.06); }
    }
    
   
    
/* Call Button – Gradient Animated */
.btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: 100%;
    margin-top: 10px;
    padding: 13px;

    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;

    border-radius: 10px;
    border: none;

    background: linear-gradient(
        270deg,
        #0a66c2,
        #00c6ff,
        #28a745,
        #ff6b6b,
        #0a66c2
    );
    background-size: 500% 500%;

    animation: callGradient 6s ease infinite;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Icon */
.btn-call i {
    font-size: 16px;
    color: #ffffff;
}

/* Hover effect */
.btn-call:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* Gradient animation */
@keyframes callGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Mobile fine tuning */
@media (max-width: 768px) {
    .btn-call {
        font-size: 14px;
        padding: 12px;
    }
}






/* Trust Badges Wrapper */
.trust-badges {
    margin-top: 110px;     /* Call button ke niche gap */
    padding-top: 30px;

    border-top: 1px solid #eee;

    display: block;
    width: 100%;
}

/* Title */
.trust-title {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 15px;
    font-weight: 600;
    color: #222;

    margin-bottom: 10px;
}

.trust-title i {
    color: #28a745;
    font-size: 16px;
}

/* List */
.trust-list {
    list-style: none;
    padding: 0;
    margin: 0;

    display: flex;
    flex-direction: column;
    gap: 6px;
}

.trust-list li {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Tick icon using CSS */
.trust-list li::before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
}

/* Mobile */
@media (max-width: 768px) {
    .trust-badges {
        margin-top: 110px;
    }

    .trust-title {
        font-size: 14px;
    }

    .trust-list li {
        font-size: 13px;
    }
}

    
    
    
    
    
    
    
    /* Holiday Type Tag */
    .holiday-type-tag {
        position: absolute;
        top: 15px;
        left: 15px;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 5px 15px;
        border-radius: 15px;
        font-size: 0.8rem;
        color: white;
        z-index: 3;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .tour-card:hover .holiday-type-tag {
        background: rgba(0, 0, 0, 0.8);
        transform: translateY(-2px);
    }
    
    /* Section Title */
    .section-title {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 30px;
        text-align: center;
        color: #2c3e50;
        position: relative;
    }
    
    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #FF6B6B, #4ECDC4);
        border-radius: 2px;
    }
    
    /* Gallery Styles */
    .gallery-slideshow {
        position: relative;
        height: 500px;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    
    .gallery-slideshow img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 0.8s ease;
    }
    
    .gallery-slideshow img.active {
        opacity: 1;
    }
    
    /* Responsive Styles */
    @media (max-width: 768px) {
        .tours-grid {
            grid-template-columns: 1fr;
        }
        
        .tour-card:hover {
            transform: translateY(-10px) scale(1.01);
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .gallery-slideshow {
            height: 300px;
        }
    }
    
    @media (max-width: 576px) {
        .tour-title-overlay {
            padding: 15px 20px;
        }
        
        .tour-title-overlay h3 {
            font-size: 1rem;
        }
    }