/* ----------------------------------------------------------------
	Canvas: Travel Homepage - Complete Blast
	Built on Canvas 7 Travel Theme Patterns
-----------------------------------------------------------------*/

/* Canvas 7 Slider Overlay for Travel Search */
#travel-slider-overlay {
    position: relative;
    z-index: 3;
}

/* Portfolio Package Names - Override any uppercase transforms */
.portfolio-desc h3,
.portfolio .portfolio-desc h3,
.portfolio-item .portfolio-desc h3 {
    text-transform: none !important;
}

/* Hero Section Enhancement */
.hero-custom {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&h=900&fit=crop') center/cover !important;
    min-height: 100vh !important;
    position: relative !important;
    overflow: hidden !important;
}

.hero-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(var(--cnvs-themecolor-rgb), 0.7) 0%, 
        rgba(0,0,0,0.4) 50%, 
        rgba(52, 152, 219, 0.6) 100%);
    animation: hero-gradient-shift 8s ease-in-out infinite;
}

@keyframes hero-gradient-shift {
    0%, 100% { 
        background: linear-gradient(45deg, 
            rgba(var(--cnvs-themecolor-rgb), 0.7) 0%, 
            rgba(0,0,0,0.4) 50%, 
            rgba(52, 152, 219, 0.6) 100%);
    }
    50% { 
        background: linear-gradient(45deg, 
            rgba(52, 152, 219, 0.6) 0%, 
            rgba(0,0,0,0.4) 50%, 
            rgba(var(--cnvs-themecolor-rgb), 0.7) 100%);
    }
}

.hero-custom .display-1 {
    font-family: var(--cnvs-primary-font) !important;
    font-weight: 800 !important;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5) !important;
    background: linear-gradient(45deg, #fff, #f0f0f0, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-shimmer 3s ease-in-out infinite;
}

@keyframes text-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-custom .lead {
    font-size: 1.4rem !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7) !important;
    font-family: var(--cnvs-body-font) !important;
    animation: fade-in-up 1s ease-out 0.5s both;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Clean Search Box */
.search-overlay,
.travel-organiser-tabs {
    position: relative !important;
    z-index: 100 !important;
}


@keyframes search-float-in {
    from {
        opacity: 0;
        transform: translateY(80px) scale(0.8) rotateX(20deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

@keyframes search-aura-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.6;
    }
}

@keyframes search-cosmic-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.search-overlay .card {
    background: #ffffff !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}


@keyframes rainbow-border-dance {
    0%, 100% { 
        background-position: 0% 50%;
        transform: scale(1) rotate(0deg);
    }
    25% { 
        background-position: 100% 0%;
        transform: scale(1.02) rotate(1deg);
    }
    50% { 
        background-position: 100% 100%;
        transform: scale(1) rotate(0deg);
    }
    75% { 
        background-position: 0% 100%;
        transform: scale(1.02) rotate(-1deg);
    }
}

@keyframes rainbow-flow-enhanced {
    0% { background-position: 0% 50%; }
    100% { background-position: 500% 50%; }
}

.search-overlay .card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important;
}

@keyframes search-hover-madness {
    0% { filter: hue-rotate(0deg) brightness(1); }
    25% { filter: hue-rotate(90deg) brightness(1.1); }
    50% { filter: hue-rotate(180deg) brightness(1.2); }
    75% { filter: hue-rotate(270deg) brightness(1.1); }
    100% { filter: hue-rotate(360deg) brightness(1); }
}

.search-overlay .card-body {
    padding: 30px !important;
}

/* Simple Form Labels */
.search-overlay .form-label {
    font-weight: 600 !important;
    color: #495057 !important;
    margin-bottom: 8px !important;
    font-size: 0.9rem !important;
}

/* Simple Form Controls */
.search-overlay .form-control,
.search-overlay .form-select {
    border-radius: 8px !important;
    border: 1px solid #ced4da !important;
    background: #ffffff !important;
    padding: 12px 16px !important;
    font-size: 1rem !important;
    transition: border-color 0.2s ease !important;
}


@keyframes input-rainbow-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.search-overlay .form-control:focus,
.search-overlay .form-select:focus {
    border-color: var(--cnvs-themecolor) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(var(--cnvs-themecolor-rgb), 0.1) !important;
}

@keyframes input-focus-explosion {
    0% { 
        filter: hue-rotate(0deg) brightness(1);
        transform: translateY(0) scale(1) rotateX(0deg);
    }
    50% { 
        filter: hue-rotate(180deg) brightness(1.2);
        transform: translateY(-4px) scale(1.02) rotateX(2deg);
    }
    100% { 
        filter: hue-rotate(360deg) brightness(1);
        transform: translateY(-8px) scale(1.05) rotateX(5deg);
    }
}

.search-overlay .form-control::placeholder {
    color: #6c757d !important;
    font-style: italic !important;
}

/* Simple Input Hover Effects */
.search-overlay .form-control:hover,
.search-overlay .form-select:hover {
    border-color: rgba(var(--cnvs-themecolor-rgb), 0.5) !important;
}

/* TEST - Simple Search Button */
.search-overlay .btn-dark {
    background: red !important;
    border: 10px solid blue !important;
    padding: 12px 30px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: background-color 0.2s ease !important;
    font-size: 1rem !important;
}

@keyframes btn-rainbow-pulse {
    0%, 100% { 
        background-position: 0% 50%;
        transform: scale(1);
    }
    25% { 
        background-position: 100% 0%;
        transform: scale(1.02);
    }
    50% { 
        background-position: 100% 100%;
        transform: scale(1);
    }
    75% { 
        background-position: 0% 100%;
        transform: scale(1.02);
    }
}


@keyframes btn-shine-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


.search-overlay .btn-dark:hover {
    background: #c0392b !important;
}

@keyframes btn-hover-explosion {
    0% { 
        filter: hue-rotate(0deg) brightness(1) saturate(1);
        background-position: 0% 50%;
    }
    25% { 
        filter: hue-rotate(90deg) brightness(1.2) saturate(1.5);
        background-position: 25% 25%;
    }
    50% { 
        filter: hue-rotate(180deg) brightness(1.4) saturate(2);
        background-position: 75% 75%;
    }
    75% { 
        filter: hue-rotate(270deg) brightness(1.2) saturate(1.5);
        background-position: 100% 0%;
    }
    100% { 
        filter: hue-rotate(360deg) brightness(1) saturate(1);
        background-position: 0% 100%;
    }
}

.search-overlay .btn-dark i {
    margin-right: 8px !important;
}


/* Enhanced Background Sections */
.experiences-bg {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1571003123894-1f0594d2b5d9?w=1600&h=600&fit=crop') center/cover !important;
    min-height: 500px !important;
    position: relative !important;
}

.experiences-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(var(--cnvs-themecolor-rgb), 0.3) 0%, 
        rgba(0,0,0,0.5) 50%, 
        rgba(46, 204, 113, 0.4) 100%);
}

.creator-bg {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1600&h=600&fit=crop') center/cover !important;
    min-height: 500px !important;
    position: relative !important;
}

.creator-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(155, 89, 182, 0.4) 0%, 
        rgba(0,0,0,0.5) 50%, 
        rgba(var(--cnvs-themecolor-rgb), 0.3) 100%);
}

/* Premium Card Enhancements */
.premium-card {
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ffa500);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-card:hover::before {
    opacity: 1;
}

.premium-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 40px rgba(var(--cnvs-themecolor-rgb), 0.2) !important;
}

/* Enhanced Category Grid */
.category-grid .feature-box {
    text-align: center !important;
    margin-bottom: 2rem !important;
    transition: all 0.3s ease !important;
}

.category-grid .feature-box:hover {
    transform: translateY(-5px) scale(1.05) !important;
}

.category-grid .feature-box img {
    transition: all 0.3s ease !important;
    border-radius: 15px !important;
}

.category-grid .feature-box:hover img {
    transform: scale(1.1) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-overlay {
        margin-top: -60px !important;
    }
    
    .search-overlay .card-body {
        padding: 30px 20px !important;
    }
    
    .search-overlay .form-control,
    .search-overlay .form-select {
        padding: 15px 20px !important;
        font-size: 1rem !important;
    }
    
    .search-overlay .btn-dark {
        padding: 15px 30px !important;
        font-size: 1.1rem !important;
        min-width: 200px !important;
        width: 100% !important;
    }
    
    .search-overlay .form-label {
        font-size: 0.9rem !important;
    }
    
    .hero-custom .display-1 {
        font-size: 3rem !important;
    }
    
    .hero-custom .lead {
        font-size: 1.2rem !important;
    }
}

/* Clean Travel Organiser Tabs */

/* Simple Canvas 7 Nav Tabs */
.canvas-tabs {
    background: #ffffff !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 10px 10px 0 0 !important;
    padding: 15px 15px 0 15px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.canvas-tabs .nav-link {
    border-radius: 8px !important;
    padding: 12px 20px !important;
    margin: 0 5px !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
    border: 1px solid transparent !important;
}

.canvas-tabs .nav-link:hover {
    border-color: var(--cnvs-themecolor) !important;
    color: var(--cnvs-themecolor) !important;
}

.canvas-tabs .nav-link.active {
    background: var(--cnvs-themecolor) !important;
    color: white !important;
    border-color: var(--cnvs-themecolor) !important;
}

/* Simple Tab Content */
.tab-content {
    background: #ffffff !important;
    border: 1px solid #dee2e6 !important;
    border-top: none !important;
    border-radius: 0 0 10px 10px !important;
    padding: 30px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

/* Simple Form Controls in Tabs */
.tab-content .form-control,
.tab-content .form-select {
    border-radius: 8px !important;
    border: 1px solid #ced4da !important;
    padding: 12px 16px !important;
    font-size: 1rem !important;
    transition: border-color 0.2s ease !important;
}

.tab-content .form-control:focus,
.tab-content .form-select:focus {
    border-color: var(--cnvs-themecolor) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(var(--cnvs-themecolor-rgb), 0.1) !important;
}

.tab-content .form-control:hover,
.tab-content .form-select:hover {
    border-color: rgba(var(--cnvs-themecolor-rgb), 0.5) !important;
}

/* Simple Canvas 7 Button */
.tab-content .button-3d {
    background: var(--cnvs-themecolor) !important;
    border: none !important;
    padding: 12px 30px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: background-color 0.2s ease !important;
    color: white !important;
}

.tab-content .button-3d:hover {
    background: #c0392b !important;
}

/* SPECTACULAR FEATURES SECTION */
.features-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    padding: 60px 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(var(--cnvs-themecolor-rgb), 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
    animation: features-bg-shift 8s ease-in-out infinite;
}

@keyframes features-bg-shift {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.feature-item {
    text-align: center !important;
    padding: 40px 20px !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7)) !important;
    border-radius: 25px !important;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.08),
        0 0 20px rgba(var(--cnvs-themecolor-rgb), 0.1) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative !important;
    overflow: hidden !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    backdrop-filter: blur(10px) !important;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cnvs-themecolor), #f39c12, #3498db, #9b59b6);
    background-size: 300% 100%;
    animation: rainbow-flow-enhanced 3s linear infinite;
}

.feature-item:hover {
    transform: translateY(-15px) scale(1.05) !important;
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.15),
        0 0 40px rgba(var(--cnvs-themecolor-rgb), 0.2) !important;
    animation: feature-hover-glow 0.5s ease-out;
}

@keyframes feature-hover-glow {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.1) hue-rotate(10deg); }
    100% { filter: brightness(1); }
}

.feature-icon {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 25px auto !important;
    background: linear-gradient(135deg, var(--cnvs-themecolor), #c0392b) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 2.2rem !important;
    color: white !important;
    box-shadow: 
        0 10px 25px rgba(var(--cnvs-themecolor-rgb), 0.3),
        0 0 20px rgba(var(--cnvs-themecolor-rgb), 0.2) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative !important;
    overflow: hidden !important;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: icon-shine-rotate 3s linear infinite;
}

@keyframes icon-shine-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.feature-item:hover .feature-icon {
    transform: scale(1.2) rotateY(15deg) !important;
    box-shadow: 
        0 15px 35px rgba(var(--cnvs-themecolor-rgb), 0.4),
        0 0 30px rgba(var(--cnvs-themecolor-rgb), 0.3) !important;
}

.feature-icon.flights {
    background: linear-gradient(135deg, #3498db, #2980b9) !important;
}

.feature-icon.hotels {
    background: linear-gradient(135deg, #e67e22, #d35400) !important;
}

.feature-icon.packages {
    background: linear-gradient(135deg, #9b59b6, #8e44ad) !important;
}

.feature-icon.support {
    background: linear-gradient(135deg, #27ae60, #229954) !important;
}

.feature-title {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    color: #2c3e50 !important;
    margin-bottom: 10px !important;
    font-family: var(--cnvs-primary-font) !important;
    background: linear-gradient(45deg, #2c3e50, var(--cnvs-themecolor));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-subtitle {
    font-size: 1rem !important;
    color: var(--cnvs-themecolor) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 15px !important;
    font-family: var(--cnvs-primary-font) !important;
}

.feature-description {
    font-size: 0.95rem !important;
    color: #6c757d !important;
    line-height: 1.6 !important;
    font-family: var(--cnvs-body-font) !important;
}

/* SPECTACULAR TOUR CAROUSEL - ULTRA ENHANCEMENT */
.tour-carousel-container {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0 !important;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(var(--cnvs-themecolor-rgb), 0.1);
}


@keyframes tour-carousel-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes tour-ambient-pulse {
    0% { opacity: 0.8; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.tour-carousel-wrapper {
    position: relative !important;
    padding: 0 60px !important;
}

.tour-carousel {
    gap: 30px !important;
    transition: transform 0.3s ease !important;
    padding: 20px 0 !important;
}

.tour-item {
    width: 350px !important;
    min-width: 350px !important;
}

.tour-card {
    background: #ffffff !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    border: 1px solid #e9ecef !important;
}


@keyframes tour-card-rainbow-dance {
    0%, 100% { 
        background-position: 0% 50%;
        transform: scale(1) rotate(0deg);
    }
    25% { 
        background-position: 100% 0%;
        transform: scale(1.01) rotate(0.5deg);
    }
    50% { 
        background-position: 100% 100%;
        transform: scale(1) rotate(0deg);
    }
    75% { 
        background-position: 0% 100%;
        transform: scale(1.01) rotate(-0.5deg);
    }
}

.tour-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
    transform: none !important;
    animation: none !important;
}

/* FORCE DISABLE ALL ANIMATIONS ON TOUR CARDS */
.tour-card,
.tour-card *,
.tour-card:hover,
.tour-card:hover * {
    animation: none !important;
    transition: box-shadow 0.2s ease !important;
}

.tour-card img,
.tour-card:hover img {
    transform: none !important;
    animation: none !important;
    transition: none !important;
}

/* Override Canvas 7 image scale effects */
.tour-card.imagescale,
.tour-card.imagescalein,
.tour-card .imagescale,
.tour-card .imagescalein,
.tour-image-container.imagescale,
.tour-image-container.imagescalein {
    --cnvs-img-scale-ratio: 1 !important;
    --cnvs-img-scale-default: 1 !important;
}

.tour-card.imagescale:hover,
.tour-card.imagescalein:hover,
.tour-card .imagescale:hover,
.tour-card .imagescalein:hover,
.tour-image-container.imagescale:hover,
.tour-image-container.imagescalein:hover {
    --cnvs-img-scale-ratio: 1 !important;
    --cnvs-img-scale-default: 1 !important;
}

/* Force disable any portfolio reveal effects */
.tour-card .portfolio-item:hover .portfolio-image img,
.tour-card .portfolio-item:hover .bg-overlay {
    transform: none !important;
}

/* Allow carousel movement */
#tourCarousel {
    transition: transform 0.3s ease !important;
}

/* DISABLE PSEUDO-ELEMENTS BUT KEEP BOOTSTRAP ICONS */
.tour-carousel-container *::before,
.tour-carousel-container *::after {
    display: none !important;
    content: none !important;
    animation: none !important;
    transform: none !important;
    transition: none !important;
}

.tour-carousel-container *:hover::before,
.tour-carousel-container *:hover::after {
    display: none !important;
    content: none !important;
    animation: none !important;
    transform: none !important;
    transition: none !important;
}

/* Simple carousel navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--cnvs-themecolor);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    transform: translateY(-50%) scale(1.1);
    background: #c0392b;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* Show navigation icons properly */
.carousel-nav i {
    display: inline-block !important;
    font-size: 1.1rem !important;
    color: white !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Allow only carousel movement and box-shadow */
.tour-carousel {
    transition: transform 0.3s ease !important;
}

/* FORCE CAROUSEL TO BE MOVABLE */
#tourCarousel {
    transform: translateX(0) !important;
    transition: transform 0.3s ease !important;
    will-change: transform !important;
}

/* OVERRIDE ANY BLOCKING RULES */
.tour-carousel-wrapper #tourCarousel {
    transform: translateX(0) !important;
    transition: transform 0.3s ease !important;
}

.tour-carousel-container #tourCarousel {
    transform: translateX(0) !important;
    transition: transform 0.3s ease !important;
}

.tour-card:hover {
    transition: box-shadow 0.2s ease !important;
}

/* ENSURE NAVIGATION ARROWS ARE VISIBLE */
.carousel-nav i {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 1.1rem !important;
    color: white !important;
}

@keyframes tour-card-hover-madness {
    0% { 
        filter: brightness(1) hue-rotate(0deg) saturate(1);
        transform: translateY(-20px) scale(1.05) rotateX(8deg);
    }
    25% { 
        filter: brightness(1.15) hue-rotate(15deg) saturate(1.3);
        transform: translateY(-22px) scale(1.06) rotateX(10deg) rotateY(2deg);
    }
    50% { 
        filter: brightness(1.25) hue-rotate(30deg) saturate(1.5);
        transform: translateY(-25px) scale(1.07) rotateX(12deg) rotateY(0deg);
    }
    75% { 
        filter: brightness(1.15) hue-rotate(15deg) saturate(1.3);
        transform: translateY(-22px) scale(1.06) rotateX(10deg) rotateY(-2deg);
    }
    100% { 
        filter: brightness(1) hue-rotate(0deg) saturate(1);
        transform: translateY(-20px) scale(1.05) rotateX(8deg);
    }
}

.tour-image-container {
    position: relative !important;
    height: 200px !important;
    overflow: hidden !important;
}

.tour-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: none !important;
    transform: none !important;
}

.tour-card:hover .tour-image {
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

.tour-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.4)) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    padding: 15px !important;
}

.tour-price {
    background: var(--cnvs-themecolor) !important;
    color: white !important;
    padding: 8px 15px !important;
    border-radius: 20px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    box-shadow: 0 4px 15px rgba(var(--cnvs-themecolor-rgb), 0.4) !important;
}

.tour-price::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: price-shine-rotate 3s linear infinite;
    opacity: 0.7;
}

.tour-card:hover .tour-price {
    transform: none !important;
}

@keyframes price-spectacular-pulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        filter: brightness(1) hue-rotate(0deg);
    }
    25% { 
        transform: scale(1.03) rotate(1deg);
        filter: brightness(1.1) hue-rotate(5deg);
    }
    50% { 
        transform: scale(1.05) rotate(0deg);
        filter: brightness(1.2) hue-rotate(10deg);
    }
    75% { 
        transform: scale(1.03) rotate(-1deg);
        filter: brightness(1.1) hue-rotate(5deg);
    }
}

@keyframes price-shine-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.tour-rating {
    background: rgba(255,255,255,0.9) !important;
    backdrop-filter: blur(10px) !important;
    color: #2c3e50 !important;
    padding: 8px 12px !important;
    border-radius: 15px !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
}

.tour-rating i {
    color: #f39c12 !important;
    font-size: 1rem !important;
}

.tour-content {
    padding: 30px !important;
    position: relative !important;
}

.tour-location {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: var(--cnvs-themecolor) !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    font-family: var(--cnvs-primary-font) !important;
}

.tour-location i {
    font-size: 1.1rem !important;
}

.tour-title {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #2c3e50 !important;
    margin-bottom: 12px !important;
    font-family: var(--cnvs-primary-font) !important;
    line-height: 1.3 !important;
}

.tour-description {
    color: #6c757d !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin-bottom: 15px !important;
    font-family: var(--cnvs-body-font) !important;
}

.tour-duration {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #495057 !important;
    font-weight: 500 !important;
    font-family: var(--cnvs-body-font) !important;
}

.tour-duration i {
    color: var(--cnvs-themecolor) !important;
}

/* SPECTACULAR CAROUSEL NAVIGATION */
.carousel-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 45px !important;
    height: 45px !important;
    background: var(--cnvs-themecolor) !important;
    border: none !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 1.1rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(var(--cnvs-themecolor-rgb), 0.3) !important;
    z-index: 10 !important;
}

.carousel-nav:hover {
    transform: translateY(-50%) !important;
    box-shadow: 0 6px 20px rgba(var(--cnvs-themecolor-rgb), 0.4) !important;
    background: #c0392b !important;
}

.carousel-prev {
    left: 0 !important;
}

.carousel-next {
    right: 0 !important;
}

/* Enhanced Counter Section */
.counter .display-4 {
    font-family: var(--cnvs-primary-font) !important;
    font-weight: 900 !important;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}