@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #ff5e14;
    --secondary-color: #2b2d42;
    --accent-color: #00b4d8;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* --- Header & Navigation --- */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.sticky-top {
    position: sticky;
    top: 0;
}

.navbar-brand img {
    height: auto;
    max-height: 65px;
    max-width: 280px;
    object-fit: contain;
}

.nav-link {
    font-weight: 500;
    color: var(--secondary-color) !important;
    padding: 10px 15px !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Category Vertical Dropdown Style */
.trip-dropdown {
    background-color: #E3F2FD !important;
    border-radius: 12px !important;
    padding: 10px 0 !important;
    min-width: 240px;
    margin-top: 15px !important;
    overflow: visible !important;
}

.trip-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #E3F2FD;
}

/* Invisible bridge to prevent dropdown from closing when hovering over the margin gap */
.trip-dropdown::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.trip-dropdown .dropdown-item {
    color: #2c3e50;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.trip-dropdown .dropdown-item:hover {
    background-color: rgba(25, 118, 210, 0.1);
    color: var(--primary-color);
    padding-left: 20px !important;
}

.nav-item.dropdown:hover .trip-dropdown {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Hero Slider --- */
.hero-slider {
    height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    height: 100%;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.2));
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

/* Vertical Reviews Scroller */
.reviews-scroller-container {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.reviews-scroller {
    animation: scrollVertical 20s linear infinite;
}

.review-card-mini {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
    color: var(--white);
    max-width: 500px;
}

@keyframes scrollVertical {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* --- Section Titles --- */
.section-title {
    font-weight: 700;
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 15px;
}

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

/* --- Trip Cards --- */
.trip-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

.trip-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.trip-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.trip-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.trip-price-tag {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.mrp-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Why Choose Us Collage */
.why-collage {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    height: 600px;
    gap: 15px;
}

.collage-item {
    position: relative;
    overflow: hidden;
}

.collage-item.item-1 {
    grid-column: 1 / 6;
    grid-row: 1 / 8;
}

.collage-item.item-2 {
    grid-column: 6 / 13;
    grid-row: 1 / 5;
}

.collage-item.item-3 {
    grid-column: 6 / 9;
    grid-row: 5 / 9;
}

.collage-item.item-4 {
    grid-column: 1 / 6;
    grid-row: 8 / 13;
}

.collage-item.item-5 {
    grid-column: 6 / 13;
    grid-row: 9 / 13;
}

.collage-item.item-6 {
    grid-column: 9 / 13;
    grid-row: 5 / 9;
}

@media (max-width: 991px) {
    .why-collage {
        height: 400px;
        margin-bottom: 30px;
    }
}

.description-box .toggle-desc:hover {
    text-decoration: underline;
}

/* --- Booking Widget --- */
.sticky-booking-card {
    position: sticky;
    top: 150px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

/* --- Footer --- */
.main-footer {
    background: var(--white);
    color: var(--text-dark);
    padding-top: 80px;
}

.footer-title {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-link {
    display: block;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.footer-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* --- Search Bar --- */
.search-container {
    position: relative;
    width: 300px;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 0 0 15px 15px;
    z-index: 1000;
    display: none;
}

/* Mobile Bottom Menu */
.mobile-bottom-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1100;
}

@media (max-width: 768px) {
    .mobile-bottom-menu {
        display: block;
    }

}

/* --- Popular Trips Section Styles --- */
.popular-trips-section {
    position: relative;
    z-index: 1;
}

.popular-trips-section .cat-slider-wrapper {
    background: #fff;
    border-radius: 100px;
    padding: 15px 30px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.popular-trips-section .cat-slider-container {
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    padding: 5px 0;
}
.popular-trips-section .cat-slider-container::-webkit-scrollbar {
    display: none;
}
.popular-trips-section .category-item {
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    min-width: 110px;
    flex: 0 0 auto;
}
.popular-trips-section .category-item .img-wrapper {
    width: 68px;
    height: 68px;
    padding: 2px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    margin: 0 auto 12px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.popular-trips-section .category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
}
.popular-trips-section .category-item .cat-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: #555;
    display: block;
    white-space: normal;
    line-height: 1.2;
    transition: color 0.3s;
}
.popular-trips-section .category-item.active .cat-name {
    color: #198754 !important; /* Prominent green */
}
.popular-trips-section .category-item.active .img-wrapper {
    background: #198754;
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(25, 135, 84, 0.3);
}
.popular-trips-section .category-item:hover .img-wrapper {
    transform: translateY(-5px);
}

/* Subcategory Tabs Premium Design */
.subcategory-wrapper {
    background: rgba(240, 247, 255, 0.65) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.9) !important;
    border-radius: 100px !important;
    padding: 6px !important;
    display: inline-flex !important;
    margin: 0 auto 40px !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05) !important;
    max-width: 100% !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

.subcategory-tabs {
    margin-bottom: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

.subcategory-tabs .nav-pills {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important; /* Proper spacing between tabs */
    padding: 2px !important;
}

.subcategory-tabs .nav-pills::-webkit-scrollbar {
    display: none !important;
}

.subcategory-tabs .nav-pills .nav-link {
    background: transparent !important;
    color: #4f5e71 !important;
    border: none !important;
    border-radius: 100px !important;
    padding: 10px 28px !important;
    font-weight: 600 !important;
    font-size: 0.88rem !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Inactive tabs hover effect */
.subcategory-tabs .nav-pills .nav-link:hover {
    background: #ffffff !important;
    color: #ff5e14 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(15, 23, 42, 0.05) !important;
}

/* Active tab style */
.subcategory-tabs .nav-pills .nav-link.active {
    background: linear-gradient(135deg, #ff5e14 0%, #ff844b 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(255, 94, 20, 0.35) !important;
    transform: translateY(-2px) scale(1.05) !important;
}

/* Premium Trip Card Styles */
.trip-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px; /* Fixed height for equal cards */
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    cursor: pointer;
}

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

.trip-card .trip-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

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

.trip-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trip-card .trip-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
    z-index: 2;
}

.trip-card .discount-badge {
    position: absolute;
    top: auto;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
    z-index: 3;
}

.trip-card .trip-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #fff;
}

.trip-card .trip-meta {
    font-size: 0.75rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.9;
}

.trip-card .trip-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.trip-card .price-section {
    display: flex;
    flex-direction: column;
}

.trip-card .old-price {
    font-size: 0.75rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: -4px;
}

.trip-card .current-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}

.trip-card .rating-section {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.trip-card .stars {
    color: #ffc107;
    font-size: 0.65rem;
    letter-spacing: 1px;
}

.trip-card .rating-count {
    font-size: 0.65rem;
    opacity: 0.8;
    font-weight: 600;
}

/* Skeleton Loading Animation */
@keyframes shimmer {
    0% { background-position: -468px 0; }
    100% { background-position: 468px 0; }
}
.skeleton {
    background: #f6f7f8;
    background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    background-size: 800px 100%;
    display: inline-block;
    position: relative;
    animation: shimmer 1s linear infinite forwards;
}

@media (max-width: 991px) {
    .popular-trips-section .cat-slider-wrapper {
        border-radius: 30px;
        padding: 15px 15px;
        width: 100%;
    }
    .popular-trips-section .cat-slider-container {
        justify-content: flex-start;
    }
    .trip-card {
        height: 350px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* BEST SELLERS SECTION                                                        */
/* ═══════════════════════════════════════════════════════════════════════════ */

/* Section title (left-aligned, bold) */
.bs-section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.5px;
}

/* Category tabs wrapper (right side of header row) */
.bs-cat-tabs-wrapper {
    flex-shrink: 0;
}

.bs-cat-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    background: #f4f7ff;
    border-radius: 50px;
    padding: 6px;
}

/* Individual category button */
.bs-cat-btn {
    border: none;
    background: transparent;
    color: #555;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 9px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.bs-cat-btn:hover {
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
}

.bs-cat-btn.active {
    background: linear-gradient(135deg, #1d6fe5 0%, #004dc0 100%);
    color: #fff;
    box-shadow: 0 6px 18px rgba(29, 111, 229, 0.45);
    transform: scale(1.04);
}

.bs-subcat-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.bs-subcat-btn {
    border: 1px solid rgba(13, 110, 253, 0.18);
    background: #fff;
    color: #0d6efd;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 999px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.bs-subcat-btn:hover {
    background: rgba(13, 110, 253, 0.08);
}

.bs-subcat-btn.active {
    background: linear-gradient(135deg, #1d6fe5 0%, #004dc0 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(29, 111, 229, 0.22);
    transform: scale(1.02);
}

.bs-trip-card {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(13, 110, 253, 0.08);
    box-shadow: 0 18px 45px rgba(35, 68, 115, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 100%;
}

.bs-trip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(35, 68, 115, 0.14);
}

.bs-trip-card-image {
    position: relative;
    overflow: hidden;
    min-height: 260px;
}

.bs-trip-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.bs-trip-card:hover .bs-trip-card-image img {
    transform: scale(1.04);
}

.bs-trip-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.94);
    color: #0d6efd;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    box-shadow: 0 16px 35px rgba(13, 110, 253, 0.12);
}

.bs-trip-card-body {
    padding: 1.4rem 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bs-trip-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.85rem;
    color: #112d4e;
}

.bs-trip-meta {
    font-size: 0.95rem;
    color: #6c757d;
}

.bs-trip-card-body .text-primary {
    color: #0d6efd !important;
}

.bs-trip-card-body .btn {
    min-width: 120px;
}

.bs-trip-card-body .rating-stars i {
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .bs-cat-tabs,
    .bs-subcat-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
    }
    .bs-cat-tabs::-webkit-scrollbar,
    .bs-subcat-tabs::-webkit-scrollbar {
        display: none;
    }
}

/* Vertical Category Block Layout */
.bs-category-block {
    padding-top: 8px;
    padding-bottom: 28px;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0b2340;
}

.bs-subcat-list {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.bs-category-block.border-bottom {
    border-bottom: 1px solid rgba(16,24,40,0.06);
}

.bs-category-block + .bs-category-block {
    margin-top: 1.5rem;
}

/* Promo banner */
.promo-banner-section {
    overflow: hidden;
}

.promo-banner-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.bestSellerSwiper {
    position: relative;
}

.bestSeller-pagination {
    position: absolute;
    bottom: 16px !important;
    z-index: 10;
}

.bestSeller-pagination .swiper-pagination-bullet-active {
    background: #fff;
}

.bestSellerSwiper .swiper-button-prev,
.bestSellerSwiper .swiper-button-next {
    color: #fff;
    background: rgba(0,0,0,0.35);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.bestSellerSwiper .swiper-button-prev::after,
.bestSellerSwiper .swiper-button-next::after {
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .bs-section-title {
        font-size: 1.4rem;
    }
    .bs-cat-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        border-radius: 30px;
    }
    .bs-cat-tabs::-webkit-scrollbar { display: none; }

    .promo-banner-img {
        height: 200px;
    }
}

/* Horizontal scrolling slider/carousel layout for trip cards */
.horizontal-slider-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px !important;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}

/* Hide plain browser scrollbar */
.horizontal-slider-row::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, Opera */
}

.horizontal-slider-row > [class*="col-"]:not(.col-12) {
    flex: 0 0 auto !important;
    width: 25% !important; /* 4 cards per row on desktop */
}

@media (max-width: 1199px) {
    .horizontal-slider-row > [class*="col-"]:not(.col-12) {
        width: 33.333% !important; /* 3 cards per row on smaller desktops/tablets */
    }
}

@media (max-width: 991px) {
    .horizontal-slider-row > [class*="col-"]:not(.col-12) {
        width: 50% !important; /* 2 cards per row on mobile landscape/tablets */
    }
}

@media (max-width: 575px) {
    .horizontal-slider-row > [class*="col-"]:not(.col-12) {
        width: 80% !important; /* 1.25 cards per row on mobile portrait so users see the overflow */
    }
}

/* Premium Navigation Arrows styling */
.slider-container-wrapper {
    position: relative;
    width: 100%;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 50% !important;
    color: #ff5e14 !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 15;
}

.slider-nav-btn:hover {
    background: #ff5e14 !important;
    color: #ffffff !important;
    box-shadow: 0 6px 18px rgba(255, 94, 20, 0.3) !important;
    transform: translateY(-50%) scale(1.08) !important;
}

.slider-nav-btn.prev-btn {
    left: -22px;
}

.slider-nav-btn.next-btn {
    right: -22px;
}

@media (max-width: 991px) {
    .slider-nav-btn {
        width: 38px;
        height: 38px;
    }
    .slider-nav-btn.prev-btn {
        left: -15px;
    }
    .slider-nav-btn.next-btn {
        right: -15px;
    }
}

@media (max-width: 575px) {
    /* Hide navigation buttons on mobile to rely on native touch swipe */
    .slider-nav-btn {
        display: none !important;
    }
}

/* --- Multi-Level Dropdowns (Submenus) --- */
.dropdown-submenu {
    position: relative;
}

/* Hide all submenus by default */
.dropdown-submenu .trip-dropdown {
    display: none !important;
}

/* Position submenus on desktop */
@media (min-width: 992px) {
    .dropdown-submenu > .trip-dropdown {
        top: 0;
        right: 100%;
        left: auto;
        margin-top: -10px !important;
        margin-right: 10px;
        display: none !important;
    }
    
    /* Override invisible bridge for submenus to cover the horizontal right gap */
    .dropdown-submenu > .trip-dropdown::after {
        top: 0;
        right: -15px;
        left: auto;
        width: 15px;
        height: 100%;
    }

    /* Arrow pointing right for left-opening submenus */
    .dropdown-submenu > .trip-dropdown::before {
        top: 20px;
        right: -8px;
        left: auto;
        transform: none;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 8px solid #E3F2FD;
        border-right: none;
    }

    /* Hide submenus by default even when parent menu is hovered */
    .nav-item.dropdown:hover .dropdown-submenu .trip-dropdown {
        display: none !important;
    }

    /* Show the specific submenu on hover of its menu container */
    .nav-item.dropdown:hover .dropdown-submenu:hover > .trip-dropdown {
        display: block !important;
        animation: fadeInDown 0.3s ease;
    }
}

/* Responsive Submenus on Mobile */
@media (max-width: 991px) {
    .dropdown-submenu > .trip-dropdown {
        position: static !important;
        margin-top: 0 !important;
        margin-left: 15px !important;
        box-shadow: none !important;
        background-color: rgba(25, 118, 210, 0.03) !important;
        border-left: 2px solid rgba(25, 118, 210, 0.1) !important;
        border-radius: 0 0 12px 12px !important;
        padding-left: 10px !important;
    }
    
    .dropdown-submenu > .trip-dropdown::before {
        display: none !important;
    }

    /* Show submenu when active/toggled on mobile */
    .dropdown-submenu.show > .trip-dropdown,
    .dropdown-submenu.open > .trip-dropdown,
    .dropdown-submenu:hover > .trip-dropdown {
        display: block !important;
    }
}

/* --- Branded Social Icons --- */
.branded-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    /*width: 45px;
    height: 45px;*/
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff !important;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.branded-social-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}
.bg-facebook { background-color: #1877F2; }
.bg-twitter { background-color: #1DA1F2; }
.bg-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.bg-linkedin { background-color: #0A66C2; }
.bg-youtube { background-color: #FF0000; }
.bg-pinterest { background-color: #E60023; }
.bg-tripadvisor { background-color: #34E0A1; }
.bg-quora { background-color: #B92B27; }
.bg-spotify { background-color: #1DB954; }
.bg-google-podcasts { background-color: #ffffff; }
.bg-google-podcasts:hover { box-shadow: 0 8px 15px rgba(0,0,0,0.1); }
.google-podcasts-svg { width: 22px; height: 22px; }

html { scroll-padding-top: 150px; scroll-behavior: smooth; }


/* CKEditor Table Styles */
.content-box table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; overflow-x: auto; display: block; border: 1px solid #e2e8f0; }
@media (min-width: 768px) { .content-box table { display: table; } }
.content-box table th, .content-box table td { padding: 12px 16px; border: 1px solid #e2e8f0; text-align: left; vertical-align: top; }
.content-box table th { font-weight: 700; color: #1e293b; background-color: #f8fafc; }
