.footer-top-content .ft-item {
    flex: 1 1 280px;
}
.divider {
    height: 65px;
}
.thumb img-1{
    position: absolute;
    top:120px;
}

.featured-destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    width: 100%;
    height: 300px;
    background: #fff;
    transition:
            box-shadow 0.4s ease,
            transform 0.4s ease;
}

.featured-destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

/* Why Choose Custom Styling */
.why-choose-list {
    margin-top: 20px;
}

.why-choose-item {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 18px 20px;
    transition: all 0.3s ease;
    border: 1px solid #e4e4e4;
}

.why-choose-item:hover {
    background: #ffffff;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.why-choose-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.why-choose-icon {
    background: #eaf7ef;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-choose-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.why-choose-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-left: 48px; /* aligns text neatly under title */
}
.featured-destination-card::after{
    display: none;
}
.featured-destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* Image stays normal, no zoom */
.featured-destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: none; /* remove zoom effect */
}

/* Overlay hidden by default */
.featured-destination-card .overlay-content {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-destination-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    transform: translateY(-6px);
}

/* Overlay text */
.overlay-content p {
    color: #d1fae5;
    margin-bottom: 4px;
}

.overlay-content h4 {
    color: #fff;
    margin: 0;
}
.featured-destination {
    background: #2b2f33;
}

/* Card */
.featured-destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    width:400px;
    height:300px;
    border: 1px solid #eee;
}

/* Image */
.featured-destination-card img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Dark overlay */
.featured-destination-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Overlay text */
/* Overlay content default position (bottom-left) */
.overlay-content {
    position: absolute;
    inset: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    color: #fff;
    opacity: 0;
    transform: translate(0, 0);
    transition: all 0.5s ease;
    z-index: 2;
}

/* Show overlay */
.featured-destination-card:hover .overlay-content {
    opacity: 1;
    justify-content: flex-start;
    align-items: flex-end;
}

/* Slight slide animation */
.featured-destination-card:hover .overlay-content h4,
.featured-destination-card:hover .overlay-content p {
    transform: translateY(0);
}

/* Optional spacing alignment */
.overlay-content p {
    margin-bottom: 4px;
    font-size: 14px;
    text-transform: uppercase;
}

.overlay-content h4 {
    margin: 0;
    font-size: 22px;
}


/* Hover Effects */
.featured-destination-card:hover::after {
    opacity: 1;
}

.featured-destination-card:hover .overlay-content {
    opacity: 1;
}

.featured-destination-card:hover img {
    transform: scale(1.05);
}
.featured-destination-card::after,
.featured-destination-card .overlay-content{
    display:none;
}

.tour-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/bg/adventure-bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    padding: 4rem 2rem;
    margin-bottom: 2.5rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tour-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.tour-tag {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--dark);
    padding: 0.3rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.tour-title {
    font-size: 3.2rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tour-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.tour-hero {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    position: relative;
    width: 65%;
}

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

.tour-hero:hover img {
    transform: scale(1.03);
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.overview-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    border-left: 5px solid var(--primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.price-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-top: 5px solid var(--primary);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.price-item:last-child {
    border-bottom: none;
}

.price-amount {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.3rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.location-card {
    background: white;
    border-radius: 10px;
    padding: 1.2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: var(--primary-light);
}

.location-icon {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.accordion-button {
    font-weight: 600;
    background-color: rgba(42, 110, 63, 0.05);
    border: none;
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(42, 110, 63, 0.1);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(42, 110, 63, 0.2);
}

.accordion-item {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.itinerary-day {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px dashed #dee2e6;
}

.itinerary-day:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.day-number {
    background-color: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1.2rem;
    flex-shrink: 0;
}

.hotel-badge {
    background-color: rgba(42, 110, 63, 0.1);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 0.5rem;
}

.service-included, .service-excluded {
    padding: 0.5rem 0;
}

.service-included i {
    color: var(--primary);
    margin-right: 0.7rem;
}

.service-excluded i {
    color: var(--gray);
    margin-right: 0.7rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    border-radius: 15px;
    padding: 3rem;
    color: white;
    text-align: center;
    margin-top: 4rem;
}

.btn-book {
    background-color: var(--secondary);
    color: var(--dark);
    padding: 0.9rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-book:hover {
    background-color: #e0a325;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.note-box {
    background-color: rgba(248, 183, 57, 0.1);
    border-left: 4px solid var(--secondary);
    padding: 1.2rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .tour-title {
        font-size: 2.5rem;
    }

    .tour-hero img {
        height: 300px;
    }

    .locations-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .cta-section {
        padding: 2rem 1.5rem;
    }
}
.price-card .location-card {
    padding: 0.8rem;
}

.price-card .location-icon {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}


    .services-section {
        background-color: #f8f9fa;
    }
    .service-card {
        background: #ffffff;
        border-radius: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: none;
        text-align: center;
    }
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    .icon-wrapper {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 80px;
        height: 80px;
        background-color: #e9f2ff;
        color: #E28A5B;
        border-radius: 50%;
        margin: 0 auto 1rem;
    }
    .service-card h5 {
        color: #212529;
        margin-bottom: 0.75rem;
    }
    .service-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    /* Responsive adjustments */
    @media (max-width: 576px) {
        .service-card {
            padding: 1.5rem !important;
        }
        .icon-wrapper {
            width: 70px;
            height: 70px;
        }
        .icon-wrapper i {
            font-size: 2rem;
        }
    }

/* ==========================================================================
   GoRoute PREMIUM BRANDING OVERRIDES
   ========================================================================== */
:root {
  --goroute-accent: #805238;     /* Rich Terracotta Brown (Dominant Logo Color) */
  --goroute-primary: #A78B71;    /* Luxury Warm Sandstone (Secondary Logo Color) */
  --goroute-dark: #2C1E14;       /* Deep Mountain Espresso Background */
  --goroute-secondary: #BDAC9C;  /* Warm Champagne Accent */
  --goroute-success: #805238;    /* Corporate Identity Match */
}

/* Accent Color Replacements (Orange overrides) */
.text-success,
.sub-title.text-success,
.ff-montez.text-success,
.navbar-nav li a:hover,
.navbar-nav li.active a,
.navbar-nav li.touria-dd:hover > a {
    color: var(--goroute-accent) !important;
}

/* Badge & Success Button Colors */
.badge.bg-success,
.btn-success,
.btn-success:hover,
.btn-success:focus,
.btn-success:active {
    background-color: var(--goroute-accent) !important;
    border-color: var(--goroute-accent) !important;
    color: #ffffff !important;
}

/* Primary Button overrides */
.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--goroute-primary) !important;
    border-color: var(--goroute-primary) !important;
}

/* Floating Elements & Widgets */
.floating-whatsapp {
    background-color: #25D366 !important;
}

.scroll-top {
    background-color: var(--goroute-accent) !important;
}

/* Service Cards Overrides */
.icon-wrapper {
    background-color: rgba(255, 91, 59, 0.1) !important;
    color: var(--goroute-accent) !important;
}

/* Hero Content overrides */
.hero-content h3 {
    color: var(--goroute-accent) !important;
}

.hero-content p {
    opacity: 0.9;
}

/* Destination overlay tag */
.overlay-content p {
    color: var(--goroute-accent) !important;
}

/* Countdowns & Borders */
#countdownClock span.text-success {
    color: var(--goroute-accent) !important;
}

/* Custom visual polish */
.service-card {
    border-top: 4px solid transparent;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    border-top-color: var(--goroute-accent);
    transform: translateY(-8px);
}

.featured-destination-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-destination-card:hover {
    border-bottom: 4px solid var(--goroute-accent);
}

/* ==========================================================================
   GoRoute SUBPAGE CUSTOM COMPONENT STYLING
   ========================================================================== */

/* Section spacing & generic grids */
.section-padding {
    padding: 80px 0;
}

/* Buttons visual polish */
.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    border: none;
    text-decoration: none;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #805238, #A78B71);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(128, 82, 56, 0.2);
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #A78B71, #805238);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(128, 82, 56, 0.35);
    color: #ffffff !important;
}

/* Filter Sidebar styling */
.filter-sidebar {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 24px;
    border: 1px solid #f1f5f9;
}

.filter-sidebar h4 {
    color: var(--goroute-dark);
    font-weight: 700;
}

/* Form inputs & checkboxes overrides */
.form-check-input:checked {
    background-color: var(--goroute-accent);
    border-color: var(--goroute-accent);
}

/* Package tour card grids */
.package-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.09);
    border-bottom: 4px solid var(--goroute-accent);
}

.package-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.package-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.package-card:hover .package-img-wrap img {
    transform: scale(1.06);
}

.package-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #FF5B3B, #FF7F50);
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(255, 91, 59, 0.25);
}

.package-content {
    padding: 24px;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 12px;
}

.package-meta i {
    color: var(--goroute-accent);
    margin-right: 4px;
}

.package-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.package-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.package-title a:hover {
    color: var(--goroute-accent);
}

.package-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
    margin-top: 16px;
}

.price-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--goroute-accent);
}

.price-amount span {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 400;
}

/* Page Header banners */
.page-header {
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    padding: 100px 0;
    margin-bottom: 0;
}

/* Detailed Package page items */
.overview-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 32px;
    border-left: 5px solid var(--goroute-accent);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.price-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-top: 5px solid var(--goroute-accent);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
}

.price-item:last-child {
    border-bottom: none;
}

/* Day itinerary items */
.accordion-button {
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    color: var(--goroute-dark) !important;
    background-color: #f8fafc !important;
    padding: 18px 24px !important;
    border: none !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: var(--goroute-accent) !important;
    background-color: rgba(255, 91, 59, 0.05) !important;
}

.accordion-item {
    border: 1px solid #f1f5f9 !important;
    border-radius: 12px !important;
    margin-bottom: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02) !important;
}

.day-number {
    background-color: var(--goroute-accent);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 12px;
}

/* List group items overrides */
.list-group-item {
    background: transparent !important;
    border: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    font-size: 0.95rem;
}

.list-group-item i.text-accent,
.list-group-item i.text-success {
    color: var(--goroute-accent) !important;
}

/* Blog layouts */
.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 30px;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.blog-img-wrap {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.05);
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 12px;
}

.blog-meta span {
    margin-right: 16px;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-title a {
    color: var(--goroute-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--goroute-accent);
}

/* ==========================================================================
   Destination Grid Component
   ========================================================================== */
.destination-card {
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tilt-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px 24px;
    background: linear-gradient(to top, rgba(22, 25, 32, 0.95) 0%, rgba(22, 25, 32, 0.4) 60%, transparent 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.4s ease;
}

.destination-card .overlay h3 {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.destination-card .overlay p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.destination-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.destination-card .overlay a {
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.destination-card .overlay a:hover {
    transform: translateX(4px);
}

/* ==========================================================================
   Premium Brand Logo Interactive Styling
   ========================================================================== */
.navbar-brand img, .footer-logo img {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.06));
    max-height: 50px;
}

.navbar-brand:hover img, .footer-logo:hover img {
    transform: scale(1.05) translateY(-2px);
    filter: drop-shadow(0 8px 20px rgba(128, 82, 56, 0.2)) brightness(1.03);
}

/* ==========================================================================
   Premium Cookie Consent Banner Styling
   ========================================================================== */
.cookiealert {
    position: fixed !important;
    bottom: -180px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 10000 !important;
    background: rgba(44, 30, 20, 0.95) !important; /* Deep Mountain Espresso */
    backdrop-filter: blur(12px) !important;
    border: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 0 !important;
    padding: 20px 0 !important;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    transform: none !important;
}

.cookiealert.show {
    bottom: 0 !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.cookiealert .cookie-text {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookiealert .acceptcookies {
    background: linear-gradient(135deg, #805238, #A78B71);
    color: #ffffff !important;
    border: none;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookiealert .acceptcookies:hover {
    background: linear-gradient(135deg, #A78B71, #805238);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(128, 82, 56, 0.35);
}

/* ==========================================================================
   Premium Featured Destination Hover Physics
   ========================================================================== */
.featured-destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

.featured-destination-card:hover .dest-card-img {
    transform: scale(1.1);
}

.featured-destination-card .btn-outline-light:hover {
    background-color: #ffffff !important;
    color: var(--goroute-accent) !important;
    border-color: #ffffff !important;
    transform: translateX(4px);
}

/* ==========================================================================
   Modern 3D Floating Pill Navbar Physics & Aesthetics
   ========================================================================== */
.header-area {
    background-color: transparent !important;
    position: fixed;
    top: 15px; /* Margin from top */
    left: 50%;
    transform: translateX(-50%);
    width: 95%; /* Responsive floating width */
    max-width: 1400px;
    z-index: 1050;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 50px; /* Circular edges */
}

.header-area .navbar {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0.8rem 2rem;
    border-radius: 50px;
}

/* 3D Glassmorphism Sticky State */
.header-area.sticky, .header-area.sticky-on {
    top: 10px;
    width: 90%;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* Multi-layered 3D Box Shadows */
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 20px 40px rgba(128, 82, 56, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -2px 5px rgba(0, 0, 0, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

.header-area.sticky .navbar {
    padding: 0.5rem 2rem;
}

/* Navigation Links Upgrades */
.header-area .navbar-nav li > a {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.header-area.sticky .navbar-nav li > a, .header-area.sticky-on .navbar-nav li > a {
    color: #161920 !important;
}

/* Navbar Hover States */
.header-area .navbar-nav li > a:hover,
.header-area .navbar-nav li > a.active {
    color: var(--goroute-accent) !important;
    background: rgba(255, 255, 255, 0.1);
}

.header-area.sticky .navbar-nav li > a:hover,
.header-area.sticky .navbar-nav li > a.active,
.header-area.sticky-on .navbar-nav li > a:hover {
    background: rgba(128, 82, 56, 0.08) !important;
    color: var(--goroute-accent) !important;
}

/* Dropdown Menu Upgrades */
.header-area .touria-dd-menu {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    border-radius: 12px !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    padding: 1rem 0 !important;
    transform: translateY(10px) !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.header-area .touria-dd:hover .touria-dd-menu {
    transform: translateY(0) !important;
    opacity: 1;
    visibility: visible;
}

.header-area .touria-dd-menu li > a {
    color: #161920 !important;
    padding: 0.6rem 1.5rem !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.header-area .touria-dd-menu li > a:hover {
    background-color: rgba(128, 82, 56, 0.08) !important;
    color: var(--goroute-accent) !important;
    transform: translateX(5px);
}

/* Navbar Toggler Button Modernization */
.header-area .navbar-toggler {
    border: none !important;
    color: #ffffff;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
}

.header-area.sticky .navbar-toggler, .header-area.sticky-on .navbar-toggler {
    color: #161920;
    background: rgba(0,0,0,0.05);
}

/* ==========================================================================
   GoRoute DISTINCT PREMIUM HOMEPAGE THEME OVERHAUL
   ========================================================================== */

/* Luxurious background replacements for homepage sections */
.section-padding.bg-light, .services-section, .about-us-area {
    background: radial-gradient(circle at 10% 20%, rgba(254, 253, 252, 1) 0%, rgba(246, 241, 237, 1) 100%) !important;
}

/* Premium micro-shadows & glass elements on all key cards */
.service-card, .package-card, .featured-destination-card, .single-testimonial-slide {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    box-shadow: 
        0 10px 30px rgba(44, 30, 20, 0.03),
        0 1px 3px rgba(44, 30, 20, 0.02) !important;
    border-radius: 20px !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Stunning card glow & elevated hover transitions */
.service-card:hover, .package-card:hover, .featured-destination-card:hover {
    background: #ffffff !important;
    transform: translateY(-8px) scale(1.01) !important;
    border-bottom: 4px solid var(--goroute-accent) !important;
    box-shadow: 
        0 20px 40px rgba(128, 82, 56, 0.08),
        0 5px 15px rgba(128, 82, 56, 0.03) !important;
}

/* Elegant custom gradient for homepage CTA / Connect section */
.connect-banner, .cta-wrapper {
    background: linear-gradient(135deg, var(--goroute-dark) 0%, #442d1f 50%, var(--goroute-accent) 100%) !important;
    border-radius: 24px !important;
    box-shadow: 
        0 20px 50px rgba(44, 30, 20, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    position: relative;
    overflow: hidden;
}

.connect-banner::after, .cta-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* CTA Buttons with vibrant premium gradient highlights */
.btn-primary-custom, .acceptcookies {
    background: linear-gradient(135deg, var(--goroute-accent), #a3755b) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(128, 82, 56, 0.25) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-primary-custom:hover, .acceptcookies:hover {
    background: linear-gradient(135deg, #a3755b, var(--goroute-accent)) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(128, 82, 56, 0.45) !important;
}

/* Luxury visual titles polish */
.section-heading h2 {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    color: var(--goroute-dark) !important;
    letter-spacing: -0.5px;
}

.section-heading .sub-title {
    font-family: 'Montez', cursive !important;
    font-size: 2.4rem !important;
    color: var(--goroute-accent) !important;
    margin-bottom: 8px;
    text-transform: none !important;
    letter-spacing: 0.5px;
}

/* Glowing outline buttons */
.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease !important;
}

.btn-outline-light:hover {
    background: #ffffff !important;
    color: var(--goroute-dark) !important;
    border-color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   3D PERSPECTIVE HOVER AND GLOW SYSTEMS (ANTIGRAVITY STYLING)
   ========================================================================== */

/* General 3D lift container */
.hover-3d, 
.destination-card, 
.package-card, 
.hotel-card, 
.fleet-card, 
.service-card, 
.tour-card, 
.stat-card,
.core-card {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transform-style: preserve-3d !important;
    perspective: 1000px !important;
}

/* Interactive scale-up with soft 3D rotation angle */
.hover-3d:hover, 
.destination-card:hover, 
.package-card:hover, 
.hotel-card:hover, 
.fleet-card:hover, 
.service-card:hover, 
.tour-card:hover,
.stat-card:hover,
.core-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 25px 50px rgba(44, 30, 20, 0.15) !important;
    border-color: rgba(128, 82, 56, 0.25) !important;
}

/* Image depth pop */
.hover-3d img,
.destination-card img,
.package-card img,
.hotel-card img,
.fleet-card img,
.service-card img,
.tour-card img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transform: translateZ(0px);
}

.hover-3d:hover img,
.destination-card:hover img,
.package-card:hover img,
.hotel-card:hover img,
.fleet-card:hover img,
.service-card:hover img,
.tour-card:hover img {
    transform: scale(1.06) translateZ(30px) !important;
}

/* Glowing reflection overlay */
.hover-3d::after,
.destination-card::after,
.package-card::after,
.hotel-card::after,
.fleet-card::after,
.service-card::after,
.tour-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%, rgba(0, 0, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 5;
    border-radius: inherit;
}

.hover-3d:hover::after,
.destination-card:hover::after,
.package-card:hover::after,
.hotel-card:hover::after,
.fleet-card:hover::after,
.service-card:hover::after,
.tour-card:hover::after {
    opacity: 1;
}

/* Smooth 3D floating animation */
@keyframes float3d {
    0% {
        transform: translateY(0px) rotate3d(0, 1, 0, 0deg);
    }
    50% {
        transform: translateY(-10px) rotate3d(1, 1, 0, 2deg);
    }
    100% {
        transform: translateY(0px) rotate3d(0, 1, 0, 0deg);
    }
}

.float-3d-anim {
    animation: float3d 6s ease-in-out infinite;
}

/* Ken Burns 3D Zoom Effect for Hero Carousel Slides */
@keyframes kenburns3d {
    0% {
        transform: scale(1.02) translate(0, 0);
        filter: brightness(0.9);
    }
    50% {
        transform: scale(1.08) translate(-1%, -0.5%);
        filter: brightness(1.05);
    }
    100% {
        transform: scale(1.02) translate(0, 0);
        filter: brightness(0.9);
    }
}

.background-swiper .swiper-slide {
    animation: kenburns3d 20s ease-in-out infinite !important;
    background-size: cover;
    background-position: center;
}

/* Premium footer bottom links hover accent */
.footer-bottom-links a {
    transition: color 0.3s ease;
}
.footer-bottom-links a:hover {
    color: #3CB371 !important;
}

/* Premium footer responsive illustrations: hide on mobile/tablet to prevent text overlaps */
@media (max-width: 1199px) {
    .footer-wrapper .plane-img,
    .footer-wrapper .tree-img {
        display: none !important;
    }
}

/* Force solid dark background on footer-wrapper to prevent browser stacking context overlay bugs */
.footer-wrapper {
    background-color: #161920 !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Premium Video Promo Modal Styling */
.promo-modal-wrapper {
    position: fixed;
    inset: 0;
    z-index: 10500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-modal-wrapper.show {
    opacity: 1;
    pointer-events: auto;
}

.promo-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 10, 8, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.promo-modal-content {
    position: relative;
    width: 90%;
    max-width: 850px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.promo-modal-wrapper.show .promo-modal-content {
    transform: scale(1) translateY(0);
}

.video-container-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.video-container-wrapper video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    display: block;
    object-fit: contain;
}

.close-promo-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.close-promo-btn:hover {
    background: #3CB371;
    border-color: #3CB371;
    transform: rotate(90deg) scale(1.1);
}

/* Make it extremely responsive on small mobile screens */
@media (max-width: 576px) {
    .promo-modal-content {
        border-radius: 16px;
        width: 95%;
    }
    .close-promo-btn {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* Elegant Navbar Link Typography Optimization */
.header-area .navbar-nav li>a {
    transform: scale(1.06) translateZ(30px) !important;
}

/* Glowing reflection overlay */
.hover-3d::after,
.destination-card::after,
.package-card::after,
.hotel-card::after,
.fleet-card::after,
.service-card::after,
.tour-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%, rgba(0, 0, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 5;
    border-radius: inherit;
}

.hover-3d:hover::after,
.destination-card:hover::after,
.package-card:hover::after,
.hotel-card:hover::after,
.fleet-card:hover::after,
.service-card:hover::after,
.tour-card:hover::after {
    opacity: 1;
}

/* Smooth 3D floating animation */
@keyframes float3d {
    0% {
        transform: translateY(0px) rotate3d(0, 1, 0, 0deg);
    }
    50% {
        transform: translateY(-10px) rotate3d(1, 1, 0, 2deg);
    }
    100% {
        transform: translateY(0px) rotate3d(0, 1, 0, 0deg);
    }
}

.float-3d-anim {
    animation: float3d 6s ease-in-out infinite;
}

/* Ken Burns 3D Zoom Effect for Hero Carousel Slides */
@keyframes kenburns3d {
    0% {
        transform: scale(1.02) translate(0, 0);
        filter: brightness(0.9);
    }
    50% {
        transform: scale(1.08) translate(-1%, -0.5%);
        filter: brightness(1.05);
    }
    100% {
        transform: scale(1.02) translate(0, 0);
        filter: brightness(0.9);
    }
}

.background-swiper .slide-bg {
    animation: kenburns3d 20s ease-in-out infinite;
}

/* Premium footer bottom links hover accent */
.footer-bottom-links a {
    transition: color 0.3s ease;
}
.footer-bottom-links a:hover {
    color: #3CB371 !important;
}

/* Premium footer responsive illustrations: hide on mobile/tablet to prevent text overlaps */
@media (max-width: 1199px) {
    .footer-wrapper .plane-img,
    .footer-wrapper .tree-img {
        display: none !important;
    }
}

/* Force solid dark background on footer-wrapper to prevent browser stacking context overlay bugs */
.footer-wrapper {
    background-color: #161920 !important;
    position: relative !important;
    z-index: 10 !important;
}



/* Elegant Navbar Link Typography Optimization */
.header-area .navbar-nav li>a {
    font-size: 0.81rem !important; /* Balanced 13px size instead of 16px */
    letter-spacing: 0.2px;
    font-weight: 600 !important; 
    white-space: nowrap !important; /* ABSOLUTE GUARANTEE: Never wraps into 2 rows */
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@media only screen and (min-width: 1400px) {
    .header-area .navbar-nav li>a {
        font-size: 0.84rem !important; /* 13.5px on large display panels */
    }
}

/* Optimize navlink gap sizes to ensure all text remains gracefully in 1 single row */
@media only screen and (min-width: 1200px) {
    .header-area .navbar-nav {
        gap: 15px !important; /* Compact modern layout gap */
    }
}

@media only screen and (min-width: 1400px) {
    .header-area .navbar-nav {
        gap: 26px !important; /* Elegant spacious gap on high-res monitors */
    }
}

/* Proportional Dropdown Menu Link Optimization */
.header-area .navbar-nav li .touria-dd-menu li>a {
    font-size: 0.82rem !important; /* Clean 13px dropdown font size */
    letter-spacing: 0.2px;
    font-weight: 550 !important;
    padding: 0.45rem 1.1rem !important;
    white-space: nowrap !important;
}







/* ==========================================================================
   4K HD QUALITY HERO AND BANNER COLOR-GRADING SYSTEM
   ========================================================================== */

/* Apply professional color-grading, contrast boosts, and vibrant saturation to all Hero & Header background images */
.page-header, 
.blog-header-banner, 
.detail-hero-banner, 
.tour-header,
.hero-area,
.jarallax {
    background-size: cover !important;
    background-position: center center !important;
    image-rendering: -webkit-optimize-contrast; /* Crisp hardware-accelerated image scaling */
    image-rendering: crisp-edges;
    transition: filter 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Lighter, high-contrast visual blending overlay that lets background elements shine */
.page-header::before,
.blog-header-banner::before,
.detail-hero-banner::before,
.tour-header::before {
    background: linear-gradient(to bottom, rgba(44, 30, 20, 0.3) 0%, rgba(44, 30, 20, 0.6) 100%) !important;
}

/* Color grading to make the blues, greens, and snowy details pop in 4K resolution */
.page-header,
.blog-header-banner,
.detail-hero-banner,
.tour-header {
    filter: brightness(1.08) contrast(1.1) saturate(1.08) !important;
}

/* Text readability protection shadow (crisp white headings stand out perfectly on graded background images) */
.page-header h1, 
.blog-header-banner h1, 
.detail-hero-banner h1, 
.tour-header h1,
.hero-content h1,
.hero-content h2,
.hero-content h3 {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45) !important;
    letter-spacing: 0.5px !important;
}

.page-header p,
.blog-header-banner p,
.detail-hero-banner p,
.tour-header p,
.hero-content p {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
    font-weight: 500 !important;
}


/* ==========================================================================
   HOMEPAGE 3D PERSPECTIVE AND GLASSMORPHISM VISUAL UPGRADES
   ========================================================================== */

/* Premium Frosted Glassmorphism Booking Widget Overlay */
.booking-widget {
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(25px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 25px 65px rgba(44, 30, 20, 0.16) !important;
    border-radius: 28px !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease !important;
}

.booking-widget:hover {
    box-shadow: 0 35px 85px rgba(128, 82, 56, 0.2) !important;
    border-color: rgba(128, 82, 56, 0.28) !important;
}

/* 3D Depth transitions for hero sliders */
.hero-content {
    transition: transform 0.15s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    transform-style: preserve-3d;
}

.hero-content h3 {
    transform: translateZ(40px);
}

.hero-content h2 {
    transform: translateZ(70px);
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.5) !important;
}

.hero-content p {
    transform: translateZ(50px);
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5) !important;
}

.hero-content .d-flex {
    transform: translateZ(60px);
}

/* Pulsing Sonar Ring for Watches / Promo Buttons */
.pulse-sonar-ring {
    position: relative;
}
.pulse-sonar-ring::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid var(--goroute-accent);
    border-radius: 50%;
    opacity: 0;
    animation: sonarPulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
    pointer-events: none;
}

@keyframes sonarPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Premium Card hover glowing border highlight */
.destination-card, .package-card, .hotel-card, .fleet-card, .service-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, border-color 0.5s ease !important;
}

.destination-card::before, .package-card::before, .hotel-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, rgba(128, 82, 56, 0.3) 0%, transparent 60%, rgba(255, 255, 255, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 4;
}

.destination-card:hover::before, .package-card:hover::before, .hotel-card:hover::before {
    opacity: 1;
}

/* ==========================================================================
   INTERACTIVE ASYMMETRIC COLLAGE HOVER DEPTH EFFECTS
   ========================================================================== */
.about-collage-grid .collage-item {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), z-index 0.3s ease !important;
}

.about-collage-grid .collage-item:hover {
    z-index: 15 !important; /* Force hovered item to float in front of all overlapping neighbors */
    transform: scale(1.05) translateZ(40px) !important;
}

.about-collage-grid .collage-item img {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease !important;
}

.about-collage-grid .collage-item:hover img {
    border-color: var(--goroute-accent) !important; /* Glow border in brand color */
    box-shadow: 0 20px 45px rgba(128, 82, 56, 0.22) !important;
}



/* ==========================================================================
   INTERACTIVE HERO SLIDES LOAD TRANSITIONS AND CLICK SECURITY
   ========================================================================== */

/* Click security overrides: elevate background swiper to active clickable level */
.background-swiper {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 2 !important; 
}

/* Ensure swiper slider pointer events permit click interaction inside slides */
.background-swiper .swiper-slide {
    pointer-events: auto !important;
    position: relative;
}

/* Dynamic per-slide text transitions */
.background-swiper .swiper-slide-active .animate-slide-content h2,
.background-swiper .swiper-slide-active .animate-slide-content h3,
.background-swiper .swiper-slide-active .animate-slide-content p,
.background-swiper .swiper-slide-active .animate-slide-content .badge,
.background-swiper .swiper-slide-active .animate-slide-content .d-flex {
    animation-fill-mode: both !important;
}

.background-swiper .swiper-slide-active .animate-slide-content .badge {
    animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.background-swiper .swiper-slide-active .animate-slide-content h3 {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.background-swiper .swiper-slide-active .animate-slide-content h2 {
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
    letter-spacing: 0.5px !important;
}

.background-swiper .swiper-slide-active .animate-slide-content p {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.background-swiper .swiper-slide-active .animate-slide-content .d-flex {
    animation: fadeInUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
}

/* Elegant glowing style for slide badges */
.badge.bg-success {
    background-color: var(--goroute-accent) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(128, 82, 56, 0.25) !important;
}


/* ==========================================================================
   HERO SECTION BACKGROUND IMAGE VISIBILITY FIX
========================================================================== */

/* Hero text content must sit above the slide overlay */
/* Removed clashing hero fixes */

/* 7. Hero text, nav, social icons sit above the overlay */
section.hero-section .hero-content,
section.hero-section .container {
    position: relative !important;
    z-index: 20 !important;
}

section.hero-section .background-slider-nav,
section.hero-section .social-icons,
section.hero-section .cloud-img {
    z-index: 20 !important;
}

/* Modern Widget Animations */
@keyframes gradientPan {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.widget-input-wrapper:hover {
    background-color: rgba(2, 165, 206, 0.05);
}

.widget-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(2, 165, 206, 0.4) !important;
}

.widget-submit-btn:active {
    transform: translateY(1px);
}

/* Nice Select Modern Widget Overrides */
.booking-widget .nice-select {
    background: transparent !important;
    border: none !important;
    padding-left: 0 !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #161920 !important;
    line-height: normal !important;
    height: auto !important;
}
.booking-widget .nice-select::after {
    right: 5px !important;
    border-color: #02A5CE !important;
    width: 8px !important;
    height: 8px !important;
}
.booking-widget .nice-select .list {
    border-radius: 15px !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    background: rgba(255, 255, 255, 0.85) !important;
    width: 100% !important;
    margin-top: 10px !important;
    max-height: 250px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

/* Custom Scrollbar for modern dropdowns */
.booking-widget .nice-select .list::-webkit-scrollbar,
.touria-dd .touria-dd-menu::-webkit-scrollbar {
    width: 6px;
}
.booking-widget .nice-select .list::-webkit-scrollbar-track,
.touria-dd .touria-dd-menu::-webkit-scrollbar-track {
    background: transparent;
}
.booking-widget .nice-select .list::-webkit-scrollbar-thumb,
.touria-dd .touria-dd-menu::-webkit-scrollbar-thumb {
    background-color: rgba(2, 165, 206, 0.4);
    border-radius: 10px;
}
.booking-widget .nice-select .list::-webkit-scrollbar-thumb:hover,
.touria-dd .touria-dd-menu::-webkit-scrollbar-thumb:hover {
    background-color: rgba(2, 165, 206, 0.8);
}
.booking-widget .nice-select .option {
    font-size: 1rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}
.booking-widget .nice-select .option:hover, 
.booking-widget .nice-select .option.focus {
    background-color: rgba(2, 165, 206, 0.1) !important;
    color: #02A5CE !important;
    padding-left: 25px !important;
}

/* Modern Navbar Dropdown */
@media (min-width: 1200px) {
    .touria-dd .touria-dd-menu {
        display: block !important;
        border-radius: 16px !important;
        box-shadow: 0 20px 40px rgba(0,0,0,0.12) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        padding: 10px 0 !important;
        transform: translateY(20px) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        max-height: 350px !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }
    .touria-dd:hover .touria-dd-menu {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .touria-dd-menu li a {
        transition: all 0.3s ease !important;
        padding: 10px 25px !important;
        font-weight: 600 !important;
        position: relative;
        overflow: hidden;
    }
    .touria-dd-menu li a:hover {
        background: linear-gradient(90deg, rgba(2, 165, 206, 0.1), transparent) !important;
        color: #02A5CE !important;
        padding-left: 32px !important;
    }
    .touria-dd-menu li {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ==========================================================================
   Premium Glassmorphic Navbar with White Blur Background
   ========================================================================== */
.header-area {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
}

/* Adjust logo transition */
.header-area .navbar-brand img {
    transition: transform 0.3s ease !important;
}
.header-area .navbar-brand:hover img {
    transform: scale(1.04) !important;
}

/* Sticky Header Mode Adjustment */
.header-area.sticky-on {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06) !important;
}

/* Dropdown Menu Toggler adjustments on mobile */
.header-area .navbar-nav li.touria-dd .dropdown-toggler {
    color: var(--goroute-accent) !important;
    font-size: 16px !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 101 !important;
}

/* Mobile Dropdown Open Styling Adjustments */
.header-area.mobile-menu-open {
    background-color: #FFFFFF !important;
}

/* Responsive adjustments for navbar spacing */
@media (max-width: 1200px) {
    /* Mobile Navbar Collapse styling */
    .header-area .navbar-collapse {
        max-height: calc(100vh - 70px) !important;
        overflow-y: auto !important;
        background-color: rgba(255, 255, 255, 0.98) !important;
        padding: 15px !important;
        border-radius: 16px !important;
        margin-top: 10px !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
    }
}

/* Countdown Timer Pod Responsiveness */
.countdown-pod {
    background: #fdfbf7;
    padding: 12px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    min-width: 80px;
    transition: all 0.3s ease;
}
@media (max-width: 576px) {
    .countdown-pod {
        padding: 8px 12px;
        min-width: 65px;
    }
    .countdown-pod h2 {
        font-size: 1.6rem !important;
    }
    .countdown-pod small {
        font-size: 0.6rem !important;
    }
}

/* Mobile headings scaling to prevent overflows */
@media (max-width: 576px) {
    .section-heading h2,
    h2.fw-bold {
        font-size: 1.8rem !important;
    }
    .section-heading .sub-title {
        font-size: 1.9rem !important;
    }
}

/* Ensure navbar links are always visible against the white glass background */
.header-area .navbar-nav li > a {
    color: #0E0E0E !important;
}
.header-area .navbar-nav li > a:hover,
.header-area .navbar-nav li.active > a {
    color: var(--goroute-accent, #02A5CE) !important;
}

/* ==========================================================================
   Modern Animated Tour Cards (.trip-section)
   ========================================================================== */
.trip-section .package-card {
    background: #ffffff;
    border-radius: 24px !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.trip-section .package-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(2, 165, 206, 0.08) !important;
    border-color: rgba(2, 165, 206, 0.1) !important;
}
.trip-section .package-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 24px 24px 0 0 !important;
    aspect-ratio: 4/3;
}
.trip-section .package-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.trip-section .package-card:hover .package-img-wrap img {
    transform: scale(1.08) !important;
}
.trip-section .package-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--goroute-accent), #0185a6) !important;
    color: #fff !important;
    padding: 6px 14px !important;
    border-radius: 30px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(2, 165, 206, 0.3) !important;
}
.trip-section .package-content {
    padding: 24px !important;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.trip-section .package-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px !important;
    font-size: 0.85rem !important;
    color: #666 !important;
    font-weight: 600 !important;
}
.trip-section .package-meta i {
    color: var(--goroute-accent) !important;
    margin-right: 5px;
}
.trip-section .package-title {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    margin-bottom: 10px !important;
    line-height: 1.4 !important;
    font-family: 'Outfit', sans-serif !important;
}
.trip-section .package-title a {
    color: #1a1a1a !important;
    transition: color 0.3s ease !important;
}
.trip-section .package-card:hover .package-title a {
    color: var(--goroute-accent) !important;
}
.trip-section .package-price {
    margin-top: auto !important;
    padding-top: 15px !important;
    border-top: 1px dashed rgba(0,0,0,0.08) !important;
}
.trip-section .price-amount {
    color: var(--goroute-accent) !important;
    font-size: 1.3rem !important;
    font-weight: 800 !important;
}
.trip-section .price-amount span {
    font-size: 0.85rem !important;
    color: #888 !important;
    font-weight: 500 !important;
}
.trip-section .btn-custom {
    border-radius: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px;
    transition: all 0.3s ease !important;
    background: transparent !important;
    border: 2px solid var(--goroute-accent) !important;
    color: var(--goroute-accent) !important;
}
.trip-section .package-card:hover .btn-custom {
    background: var(--goroute-accent) !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(2, 165, 206, 0.25) !important;
    transform: translateY(-2px) !important;
}

/* Responsive Featured Destination Cards */
.featured-destination-card {
    border-radius: 20px !important;
    height: 380px !important;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.featured-destination-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
}
.featured-destination-card .dest-scrim {
    padding: 1.75rem !important;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.85) 100%) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    height: 100% !important;
    width: 100% !important;
}
.featured-destination-card .dest-scrim h4 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
}
.featured-destination-card .dest-scrim p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1rem !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
@media (max-width: 1200px) {
    .featured-destination-card {
        height: 360px !important;
    }
    .featured-destination-card .dest-scrim {
        padding: 1.5rem !important;
    }
    .featured-destination-card .dest-scrim h4 {
        font-size: 1.35rem !important;
    }
}
@media (max-width: 991px) {
    .featured-destination-card {
        height: 350px !important;
    }
    .featured-destination-card .dest-scrim p {
        font-size: 0.85rem !important;
        margin-bottom: 0.75rem !important;
    }
}
@media (max-width: 768px) {
    .featured-destination-card {
        height: 350px !important;
    }
    .featured-destination-card .dest-scrim {
        padding: 1.25rem !important;
    }
    .featured-destination-card .dest-scrim h4 {
        font-size: 1.3rem !important;
    }
    .featured-destination-card .dest-scrim p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.75rem !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
    }
}
@media (max-width: 576px) {
    .featured-destination-card {
        height: 350px !important;
    }
    .featured-destination-card .dest-scrim {
        padding: 1.25rem !important;
    }
    .featured-destination-card .dest-scrim h4 {
        font-size: 1.25rem !important;
        margin-bottom: 0.5rem !important;
    }
    .featured-destination-card .dest-scrim p {
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.75rem !important;
    }
    .featured-destination-card .dest-scrim .badge {
        font-size: 0.7rem !important;
        padding: 5px 10px !important;
        margin-bottom: 0.5rem !important;
    }
    .featured-destination-card .dest-scrim .btn-sm {
        padding: 6px 12px !important;
        font-size: 0.75rem !important;
    }
}

/* Responsive About Page Images & Stats */
.about-main-img {
    border-radius: 24px !important;
    width: 92% !important;
    height: 460px !important;
    object-fit: cover !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06) !important;
}
.about-sub-img {
    border-radius: 24px !important;
    position: absolute !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 55% !important;
    height: 260px !important;
    object-fit: cover !important;
    border: 10px solid #ffffff !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}
.about-alt-img {
    border-radius: 24px !important;
    width: 90% !important;
    height: 480px !important;
    object-fit: cover !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06) !important;
}
@media (max-width: 768px) {
    .about-main-img {
        width: 100% !important;
        height: 320px !important;
    }
    .about-sub-img {
        width: 60% !important;
        height: 180px !important;
        border-width: 6px !important;
    }
    .about-alt-img {
        width: 100% !important;
        height: 340px !important;
    }
}
@media (max-width: 576px) {
    .about-main-img {
        height: 260px !important;
    }
    .about-sub-img {
        height: 140px !important;
        border-width: 4px !important;
    }
    .about-alt-img {
        height: 280px !important;
    }
    .stat-card {
        flex-direction: column !important;
        text-align: center !important;
        padding: 15px !important;
    }
    .stat-card .stat-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.8rem !important;
    }
}

/* Home Hero Title Montez font accent color override */
.hero-animated-content h3.text-success {
    color: var(--goroute-accent) !important;
}

/* Custom Smooth Cursor */
#custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background-color: var(--goroute-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    #custom-cursor { display: block; }
    body { cursor: none !important; }
    a, button, .btn, .nice-select, select, input, textarea { cursor: none !important; }
}

#custom-cursor.hover {
    transform: translate(-50%, -50%) scale(2.5);
    background-color: var(--goroute-primary);
}

#custom-cursor.active {
    transform: translate(-50%, -50%) scale(1.5);
}

/* Screen Wave Ripple on Click */
.cursor-ripple {
    position: fixed;
    width: 10px;
    height: 10px;
    border: 2px solid var(--goroute-accent);
    background: rgba(128, 82, 56, 0.15);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    animation: ripple-out 0.8s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes ripple-out {
    0% { width: 0px; height: 0px; opacity: 1; }
    100% { width: 80px; height: 80px; opacity: 0; }
}

/* Theme Toggle Button Styles */
.theme-toggle-btn {
    background: linear-gradient(135deg, var(--goroute-accent) 0%, var(--goroute-primary) 50%, var(--goroute-accent) 100%) !important;
    background-size: 200% auto !important;
    border: none !important;
    width: 44px;
    height: 44px;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(128, 82, 56, 0.3) !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    animation: themeGradientShift 6s ease infinite !important;
    color: #ffffff !important;
    font-size: 1.15rem !important;
    z-index: 1005;
}

@keyframes themeGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.theme-toggle-btn:hover {
    transform: scale(1.1) rotate(15deg) !important;
    box-shadow: 0 6px 20px rgba(128, 82, 56, 0.5) !important;
}

.theme-toggle-btn i {
    position: absolute;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Light mode defaults: moon is visible, sun is hidden/rotated */
.theme-toggle-btn .sun-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.3);
}

.theme-toggle-btn .moon-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* Dark mode active state on the button */
body.dark-mode .theme-toggle-btn .sun-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

body.dark-mode .theme-toggle-btn .moon-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.3);
}

/* Responsive positioning of theme toggle button */
@media (min-width: 1200px) {
    .theme-toggle-btn {
        order: -1 !important; /* Positions it at the beginning of the header actions */
        margin-right: 0.5rem !important;
    }
}
@media (max-width: 1199px) {
    .theme-toggle-btn {
        position: fixed !important;
        top: 15px !important;
        right: 80px !important; /* Pushed to the left of the hamburger button */
        z-index: 1010 !important; /* Float above everything */
    }
}

/* ==========================================
   Comprehensive Dark Theme Overrides
   ========================================== */
body.dark-mode {
    background-color: #120a05 !important;
    color: #eae6e2 !important;
}

/* Base class overrides */
body.dark-mode .bg-white {
    background-color: #1a100a !important;
}
body.dark-mode .bg-light {
    background-color: #23160e !important;
}
body.dark-mode section {
    background-color: #120a05 !important;
}
body.dark-mode section.bg-white {
    background-color: #1a100a !important;
}
body.dark-mode section.bg-light {
    background-color: #23160e !important;
}

/* Luxurious background overrides for homepage sections */
body.dark-mode .section-padding.bg-light,
body.dark-mode .services-section,
body.dark-mode .about-us-area,
body.dark-mode .trip-section {
    background: #23160e !important;
    background-color: #23160e !important;
}

/* High visibility text color rules for dark mode */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6,
body.dark-mode .card-title,
body.dark-mode .nav-link,
body.dark-mode .sub-title,
body.dark-mode .text-dark,
body.dark-mode .text-black,
body.dark-mode .calculator-title,
body.dark-mode .accordion-button,
body.dark-mode .blog-sidebar-title,
body.dark-mode .blog-recent-title,
body.dark-mode .blog-recent-title a,
body.dark-mode .range-slider-label {
    color: #ffffff !important;
}

body.dark-mode p,
body.dark-mode li,
body.dark-mode span:not(.badge):not(.sub-title):not(.carousel-control-next-icon):not(.carousel-control-prev-icon),
body.dark-mode label,
body.dark-mode td,
body.dark-mode th,
body.dark-mode .text-muted,
body.dark-mode .text-secondary,
body.dark-mode .text-black-50,
body.dark-mode .text-body,
body.dark-mode .calculator-summary ul,
body.dark-mode .accordion-body,
body.dark-mode .list-group-item,
body.dark-mode .pricing-plan-item,
body.dark-mode .blog-category-link,
body.dark-mode .tag-cloud-item {
    color: #cbbab0 !important;
}

/* Card, Accordion and Container overlays in dark mode */
body.dark-mode .package-card,
body.dark-mode .hotel-card,
body.dark-mode .fleet-card,
body.dark-mode .service-card,
body.dark-mode .tour-card,
body.dark-mode .blog-card,
body.dark-mode .core-card,
body.dark-mode .testimonial-card,
body.dark-mode .faq-card,
body.dark-mode .card,
body.dark-mode .about-img-wrap,
body.dark-mode .booking-widget,
body.dark-mode .support-cta-card,
body.dark-mode .calculator-widget,
body.dark-mode .step-progress-wrapper,
body.dark-mode .accordion-item,
body.dark-mode .blog-sidebar-widget,
body.dark-mode .article-card-wrapper,
body.dark-mode .comment-item,
body.dark-mode .related-card,
body.dark-mode .stat-card,
body.dark-mode .filter-sidebar,
body.dark-mode .featured-destination-card,
body.dark-mode .single-testimonial-slide {
    background: #1e120a !important;
    background-color: #1e120a !important;
    border: 1px solid rgba(167, 139, 113, 0.15) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
}

/* Sticky Header and dynamic menus */
body.dark-mode .header-area {
    background-color: rgba(26, 16, 10, 0.95) !important;
    border-bottom: 1px solid rgba(167, 139, 113, 0.15) !important;
}
body.dark-mode .navbar-nav li a {
    color: #eae6e2 !important;
}
body.dark-mode .navbar-nav li a:hover,
body.dark-mode .navbar-nav li.active a {
    color: var(--goroute-accent) !important;
}
body.dark-mode .touria-dd-menu {
    background-color: #1a100a !important;
    border: 1px solid rgba(167, 139, 113, 0.15) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
}
body.dark-mode .touria-dd-menu li a {
    color: #eae6e2 !important;
}
body.dark-mode .touria-dd-menu li a:hover {
    background-color: var(--goroute-accent) !important;
    color: #ffffff !important;
}

/* Accordion Specific Elements */
body.dark-mode .accordion-button {
    background-color: #1e120a !important;
}
body.dark-mode .accordion-button:not(.collapsed) {
    background-color: #2a1b10 !important;
    color: var(--goroute-accent) !important;
    border-bottom: 1px dashed rgba(167, 139, 113, 0.15) !important;
}
body.dark-mode .accordion-body {
    background-color: #1a100a !important;
}

/* Custom Tour Planner items */
body.dark-mode .step-dot {
    background-color: #23160e !important;
    border-color: rgba(167, 139, 113, 0.15) !important;
    color: #8a786d !important;
}
body.dark-mode .step-dot.active {
    border-color: var(--goroute-accent) !important;
    color: var(--goroute-accent) !important;
    background-color: #1e120a !important;
}
body.dark-mode .step-dot.completed {
    background-color: var(--goroute-accent) !important;
    border-color: var(--goroute-accent) !important;
    color: #ffffff !important;
}
body.dark-mode .dest-card {
    border-color: rgba(167, 139, 113, 0.15) !important;
}
body.dark-mode .dest-card.selected {
    border-color: var(--goroute-accent) !important;
}

/* FAQ category filters */
body.dark-mode .faq-tab-btn {
    background: #1e120a !important;
    color: #cbbab0 !important;
    border: 1px solid rgba(167, 139, 113, 0.15) !important;
}
body.dark-mode .faq-tab-btn:hover,
body.dark-mode .faq-tab-btn.active {
    background: var(--goroute-accent) !important;
    color: #ffffff !important;
    border-color: var(--goroute-accent) !important;
}

/* Forms & Inputs styling inside dark mode */
body.dark-mode input,
body.dark-mode select,
body.dark-mode textarea,
body.dark-mode .nice-select,
body.dark-mode .form-control,
body.dark-mode .form-select,
body.dark-mode .blog-search-box {
    background-color: #23160e !important;
    background: #23160e !important;
    border: 1px solid rgba(167, 139, 113, 0.25) !important;
    color: #ffffff !important;
}
body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
    color: #8a786d !important;
}

/* Nice Select dropdown menu elements in dark mode */
body.dark-mode .nice-select .list {
    background-color: #1e120a !important;
    border: 1px solid rgba(167, 139, 113, 0.25) !important;
}
body.dark-mode .nice-select .option:hover,
body.dark-mode .nice-select .option.focus,
body.dark-mode .nice-select .option.selected.focus {
    background-color: var(--goroute-accent) !important;
    color: #ffffff !important;
}

/* Contacts & Preloader */
body.dark-mode .contact-card {
    background-color: #1e120a !important;
    border: 1px solid rgba(167, 139, 113, 0.15) !important;
}
body.dark-mode .preloader {
    background-color: #120a05 !important;
}

/* Tag Cloud dark mode styling */
body.dark-mode .tag-cloud-item {
    background-color: #23160e !important;
    background: #23160e !important;
    border-color: rgba(167, 139, 113, 0.15) !important;
}
body.dark-mode .tag-cloud-item:hover {
    background: var(--goroute-accent) !important;
    color: #ffffff !important;
    border-color: var(--goroute-accent) !important;
}

/* Stat Card Icon in dark mode */
body.dark-mode .stat-icon {
    background-color: rgba(167, 139, 113, 0.15) !important;
    color: var(--goroute-accent) !important;
}

/* Range Slider background track in dark mode */
body.dark-mode .range-slider {
    background: #23160e !important;
}

/* Header transition wave shape-fill matching background color in dark mode */
body.dark-mode .header-wave .shape-fill {
    fill: #120a05 !important;
}

/* Contact & Testimonial specific card overlays */
body.dark-mode .contact-card-sm,
body.dark-mode .review-card,
body.dark-mode .metrics-wrapper {
    background: #1e120a !important;
    background-color: #1e120a !important;
    border: 1px solid rgba(167, 139, 113, 0.15) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
}

/* Force headings and text within these components to be visible */
body.dark-mode .contact-card-sm h4,
body.dark-mode .review-card h6,
body.dark-mode .review-card h5,
body.dark-mode .metrics-wrapper h3,
body.dark-mode .metrics-wrapper h4,
body.dark-mode .metrics-wrapper h5,
body.dark-mode .metrics-wrapper h6 {
    color: #ffffff !important;
}

body.dark-mode .contact-card-sm p,
body.dark-mode .review-card p,
body.dark-mode .metrics-wrapper p,
body.dark-mode .review-card small,
body.dark-mode .metrics-wrapper span {
    color: #cbbab0 !important;
}

/* Specific styling for blog card anchors, meta info, and tags */
body.dark-mode .blog-card,
body.dark-mode .blog-card-wrapper {
    background: #1e120a !important;
    background-color: #1e120a !important;
    border: 1px solid rgba(167, 139, 113, 0.15) !important;
}

body.dark-mode .blog-title,
body.dark-mode .blog-title a,
body.dark-mode .blog-card h4,
body.dark-mode .blog-card h4 a {
    color: #ffffff !important;
}

body.dark-mode .blog-title a:hover,
body.dark-mode .blog-card h4 a:hover {
    color: var(--goroute-accent) !important;
}

body.dark-mode .blog-content p,
body.dark-mode .blog-meta,
body.dark-mode .blog-meta span {
    color: #cbbab0 !important;
}

/* Force global style override for dark text elements that use var(--goroute-dark) */
body.dark-mode [style*="color: var(--goroute-dark)"],
body.dark-mode [style*="color:var(--goroute-dark)"] {
    color: #ffffff !important;
}

/* Force global override for inline colored links that target light mode colors */
body.dark-mode a[style*="color: #2C1E14"],
body.dark-mode a[style*="color:#2C1E14"],
body.dark-mode a[style*="color: #2c1e14"],
body.dark-mode a[style*="color:#2c1e14"] {
    color: #ffffff !important;
}

body.dark-mode a[style*="color: #2C1E14"]:hover,
body.dark-mode a[style*="color:#2C1E14"]:hover,
body.dark-mode a[style*="color: #2c1e14"]:hover,
body.dark-mode a[style*="color:#2c1e14"]:hover {
    color: var(--goroute-accent) !important;
}

/* verified badge styling in dark mode */
body.dark-mode .verified-badge {
    background-color: rgba(74, 222, 128, 0.12) !important;
    color: #4ade80 !important;
}

/* Legal (Privacy & Terms) dark mode page overrides */
body.dark-mode .legal-sidebar,
body.dark-mode .legal-card {
    background: #1e120a !important;
    background-color: #1e120a !important;
    border: 1px solid rgba(167, 139, 113, 0.15) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
}

body.dark-mode .legal-menu-link {
    color: #cbbab0 !important;
}

body.dark-mode .legal-menu-link:hover,
body.dark-mode .legal-menu-link.active {
    background-color: rgba(167, 139, 113, 0.15) !important;
    color: var(--goroute-accent) !important;
}

body.dark-mode .legal-card h3 {
    color: #ffffff !important;
}

body.dark-mode .legal-card h3 i {
    color: var(--goroute-accent) !important;
}

body.dark-mode .legal-card p,
body.dark-mode .legal-card li {
    color: #cbbab0 !important;
}

body.dark-mode .legal-card strong {
    color: #ffffff !important;
}

/* Live Countdown Box dark mode overrides */
body.dark-mode .countdown-pod {
    background-color: #23160e !important;
    border: 1px solid rgba(167, 139, 113, 0.15) !important;
    padding: 12px 20px !important;
    border-radius: 12px !important;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2) !important;
}

body.dark-mode .countdown-pod h2 {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
}

body.dark-mode .countdown-pod small {
    color: #cbbab0 !important;
}

/* Cloud transition dividers for hero sections on all pages */
.hero-section::after,
.page-header::after,
.detail-hero-banner::after {
    content: "" !important;
    position: absolute !important;
    bottom: -2px !important; /* Overlap to prevent thin lines */
    left: 0 !important;
    width: 100% !important;
    height: 80px !important; /* Height of the cloud curve */
    background-image: url('../img/core-img/cloud.png') !important;
    background-repeat: repeat-x !important;
    background-size: auto 100% !important;
    background-position: bottom center !important;
    z-index: 10 !important; /* Render above the wave paths */
    pointer-events: none !important;
    opacity: 1 !important;
}

/* Custom shadow/opacity adjust for clouds in dark mode */
body.dark-mode .hero-section::after,
body.dark-mode .page-header::after,
body.dark-mode .detail-hero-banner::after {
    opacity: 0.95 !important;
    filter: drop-shadow(0px -4px 6px rgba(0,0,0,0.3)) !important;
}

/* Portfolio-style transition curves for interactive elements */
a, button, .btn, .service-card, .package-card, .hotel-card, .fleet-card, .featured-destination-card, .nav-link, .legal-menu-link, .tag-cloud-item, .accordion-button, .countdown-pod {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Dynamic Canvas Particle Background */
.bg-canvas {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: -2 !important; /* Sit behind all container elements */
    pointer-events: none !important;
    opacity: 0.35 !important;
}

body.dark-mode .bg-canvas {
    opacity: 0.25 !important;
}

/* ==========================================================================
   SUPER PREMIUM INTERACTIVE HOVER EFFECTS & TRANSITIONS FOR CARDS
   ========================================================================== */

/* Base card styling tweaks to ensure smooth transitions */
.package-card,
.hotel-card,
.fleet-card,
.service-card,
.blog-card,
.featured-destination-card,
.testimonial-card,
.contact-card,
.core-card,
.price-card,
.location-card,
.legal-card,
.countdown-pod {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
    overflow: hidden;
    backface-visibility: hidden;
    will-change: transform, box-shadow, border-color;
    transform-style: preserve-3d !important;
}

/* Image container zoom & pan control */
.package-img-wrap img,
.hotel-card img,
.fleet-card img,
.featured-destination-card img,
.blog-card img,
.dest-card-img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease !important;
    will-change: transform;
}

/* Hover triggers */
.package-card:hover,
.hotel-card:hover,
.fleet-card:hover,
.service-card:hover,
.blog-card:hover,
.featured-destination-card:hover,
.testimonial-card:hover,
.contact-card:hover,
.core-card:hover,
.price-card:hover,
.location-card:hover,
.legal-card:hover,
.countdown-pod:hover {
    transform: translateY(-8px) scale(1.015) !important;
    border-color: var(--goroute-accent) !important;
    box-shadow: 0 20px 35px rgba(128, 82, 56, 0.15) !important;
}

/* Dark mode shadow adjustment */
body.dark-mode .package-card:hover,
body.dark-mode .hotel-card:hover,
body.dark-mode .fleet-card:hover,
body.dark-mode .service-card:hover,
body.dark-mode .blog-card:hover,
body.dark-mode .featured-destination-card:hover,
body.dark-mode .testimonial-card:hover,
body.dark-mode .contact-card:hover,
body.dark-mode .core-card:hover,
body.dark-mode .price-card:hover,
body.dark-mode .location-card:hover,
body.dark-mode .legal-card:hover,
body.dark-mode .countdown-pod:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.65), 0 0 15px rgba(167, 139, 113, 0.1) !important;
}

/* Hover Image effects */
.package-card:hover .package-img-wrap img,
.package-card:hover img,
.hotel-card:hover img,
.fleet-card:hover img,
.featured-destination-card:hover img,
.blog-card:hover img,
.featured-destination-card:hover .dest-card-img {
    transform: scale(1.08) !important;
    filter: brightness(1.05) !important;
}

/* Card content links color transition */
.package-card:hover .package-title a,
.hotel-card:hover h4 a,
.blog-card:hover h5 a {
    color: var(--goroute-accent) !important;
}

/* Card badges pulse */
.package-card:hover .package-badge,
.hotel-card:hover .badge,
.fleet-card:hover .badge {
    transform: scale(1.1) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Smooth bounce/active states */
.package-card:active,
.hotel-card:active,
.fleet-card:active,
.service-card:active {
    transform: translateY(-2px) scale(0.99) !important;
}

/* Global premium interactive hover states for icons, images, links, and buttons */
i, .icon-wrapper {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease, background-color 0.4s ease !important;
}
.icon-wrapper:hover i, i:hover {
    transform: scale(1.18) rotate(6deg) !important;
    color: var(--goroute-accent) !important;
}

section img:not(.logo-img):not(.brand-logo), .about-img img, .transport-img img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease, box-shadow 0.8s ease !important;
    will-change: transform;
}
section img:not(.logo-img):not(.brand-logo):hover, .about-img img:hover, .transport-img img:hover {
    transform: scale(1.04) !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
}
body.dark-mode section img:not(.logo-img):not(.brand-logo):hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.5) !important;
}

.btn, .btn-custom, .btn-success, .btn-primary, .nice-select, .accordion-button {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: transform, box-shadow;
}
.btn:hover, .btn-custom:hover, .btn-success:hover, .btn-primary:hover, .nice-select:hover, .accordion-button:hover {
    transform: translateY(-3px) scale(1.025) !important;
    box-shadow: 0 8px 18px rgba(128, 82, 56, 0.25) !important;
}
body.dark-mode .btn:hover, body.dark-mode .btn-custom:hover, body.dark-mode .btn-success:hover, body.dark-mode .btn-primary:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4) !important;
}
.btn:active, .btn-custom:active, .btn-success:active, .btn-primary:active, .nice-select:active {
    transform: translateY(-1px) scale(0.98) !important;
}








