/* ============================================================
   RIDES & TREKS – Brand Overrides & Extended Sections
   Built on top of TravelNest template (style.css)
   ============================================================ */

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

/* === BRAND COLORS === */
:root {
    --rt-primary: #E8571A;
    /* Sunset Orange */
    --rt-secondary: #1C1C1E;
    /* Charcoal */
    --rt-accent: #F5A623;
    /* Golden */
    --rt-dark: #1C1C1E;
    /* Charcoal */
    --rt-teal: #2A7FA8;
    /* Sky Blue */
    --rt-gold: #F5A623;
    /* Golden */
    --rt-light-bg: #F5F0E8;
    /* Cream */
    --rt-card-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --rt-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
}

/* === GLOBAL RESETS & BASE === */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip !important;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: clip !important;
}

section {
    position: relative;
}

/* === NAVBAR OVERRIDES === */
/* === NAVBAR & HEADER OVERRIDES === */
.tn-navbar {
    padding: 14px 0 !important;
    background: rgba(28, 28, 30, 0.96) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tn-navbar.scrolled {
    padding: 8px 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

/* Premium Floating Logo Treatment */
.tn-navbar .container-fluid {
    position: relative;
}

.tn-navbar .navbar-brand {
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tn-navbar .navbar-brand img {
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18)) !important;
}

/* Desktop absolute positioning & sizes */
@media (min-width: 992px) {
    .tn-navbar .navbar-brand {
        position: absolute !important;
        left: 40px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin: 0 !important;
    }

    .tn-navbar .navbar-brand img {
        height: 96px !important;
    }

    .tn-navbar.scrolled .navbar-brand img {
        height: 78px !important;
    }
}

/* Mobile & Tablet absolute positioning & sizes */
@media (max-width: 991px) {
    .tn-navbar .navbar-brand {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
    }

    .tn-navbar .navbar-brand img {
        height: 65px !important;
    }

    .tn-navbar.scrolled .navbar-brand img {
        height: 52px !important;
    }
}

/* Desktop nav links — underline active state */
.tn-navbar .nav-link {
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 0.5rem 0.8rem !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

/* Underline pseudo-element — scales in on hover/active */
.tn-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: calc(100% - 1.6rem);
    height: 2px;
    background: var(--rt-primary);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
}

.tn-navbar .nav-link:hover {
    color: #ffffff !important;
}

.tn-navbar .nav-link:hover::after {
    transform: translateX(-50%) scaleX(0.6);
    opacity: 0.55;
}

/* Active state — full underline, bright accent color */
.tn-navbar .nav-link.active {
    color: #ffffff !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
}

.tn-navbar .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

.tn-navbar .nav-link.active:hover::after {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

/* ── Dropdown-toggle nav links: use ::before for underline since
   Bootstrap reserves ::after for the caret arrow ── */
.tn-navbar .nav-link.dropdown-toggle::after {
    /* Keep Bootstrap's caret — reset our custom underline override */
    position: static !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    border-top: 0.3em solid !important;
    border-right: 0.3em solid transparent !important;
    border-left: 0.3em solid transparent !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    display: inline-block !important;
    margin-left: 0.35em;
    vertical-align: 0.12em;
    content: '' !important;
    transition: none !important;
}

/* Underline for dropdown toggle via ::before */
.tn-navbar .nav-link.dropdown-toggle::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: calc(100% - 1.6rem);
    height: 2px;
    background: var(--rt-primary);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
}

.tn-navbar .nav-link.dropdown-toggle:hover::before {
    transform: translateX(-50%) scaleX(0.6);
    opacity: 0.55;
}

.tn-navbar .nav-link.dropdown-toggle.active::before {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

/* Suppress the ::after underline on dropdown-toggle (use ::before instead) */
.tn-navbar .nav-link.dropdown-toggle:hover::after,
.tn-navbar .nav-link.dropdown-toggle.active::after {
    /* caret styles already set above — keep Bootstrap's caret visible */
}

.tn-navbar .navbar-toggler i {
    color: #ffffff !important;
}

/* Enquire Buttons in Navbar */
.rt-nav-btn {
    background: var(--rt-accent);
    color: var(--rt-dark) !important;
    padding: 8px 20px !important;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.rt-nav-btn:hover {
    background: var(--rt-primary);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232, 87, 26, 0.3);
}

.rt-nav-btn-mobile {
    background: var(--rt-accent);
    color: var(--rt-dark) !important;
    padding: 6px 14px !important;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.rt-nav-btn-mobile:hover {
    background: var(--rt-primary);
    color: #fff !important;
}

/* === TOURS MEGA MENU === */
.tn-mega-menu {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    top: 100% !important;
    background: #ffffff !important;
    border: none !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
    padding: 35px 40px !important;
    border-radius: 20px !important;
    z-index: 999 !important;
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-top: 4px solid var(--rt-primary) !important;
}

.tn-mega-menu-parent {
    position: static !important;
}

@media (min-width: 992px) {
    .tn-mega-menu-parent {
        padding-bottom: 15px !important;
        margin-bottom: -15px !important;
    }
}

.tn-mega-menu.show {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.tn-mega-column-title {
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    color: var(--rt-primary) !important;
    margin-bottom: 12px !important;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}


.tn-mega-links-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tn-mega-menu-link {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    color: #4a5568 !important;
    border-radius: 6px !important;
    margin-bottom: 2px;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    background: transparent !important;
}

.tn-mega-menu-link:hover {
    background: rgba(232, 87, 26, 0.05) !important;
    color: var(--rt-primary) !important;
    padding-left: 14px !important;
}

/* Badges styling */
.rt-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 50px;
    margin-left: 8px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    letter-spacing: 0.3px;
}

.rt-badge-best {
    background: rgba(232, 87, 26, 0.12);
    color: #E8571A;
}

.rt-badge-popular {
    background: rgba(232, 87, 26, 0.12);
    color: #E8571A;
}

.rt-badge-trending {
    background: rgba(245, 166, 35, 0.18);
    color: #F5A623;
}

/* Category View All Link */
.tn-mega-view-all-link {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
    padding: 8px 10px !important;
    font-size: 0.76rem !important;
    font-weight: 700 !important;
    color: var(--rt-primary) !important;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.tn-mega-view-all-link:hover {
    color: var(--rt-accent, #F5A623) !important;
}

.tn-mega-view-all-link i {
    font-size: 0.72rem;
    transition: transform 0.25s ease;
}

.tn-mega-view-all-link:hover i {
    transform: translateX(4px);
}

/* Why Rides & Treks? Brand Card */
.tn-mega-brand-card {
    background: linear-gradient(135deg, var(--rt-secondary, #E8571A) 0%, #1C1C1E 100%);
    border-radius: 14px;
    padding: 20px;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(232, 87, 26, 0.18);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tn-brand-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 14px !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tn-brand-bullets {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.tn-brand-bullet {
    display: flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.tn-brand-bullet i {
    color: var(--rt-accent, #F5A623);
    font-size: 0.85rem;
}

.tn-brand-cta-btn {
    display: block;
    width: 100%;
    background: var(--rt-accent, #F5A623) !important;
    color: #000000 !important;
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    padding: 10px 16px !important;
    border-radius: 8px !important;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.25);
    margin-top: auto;
}

.tn-brand-cta-btn:hover {
    transform: translateY(-2px);
    background: #ffa224 !important;
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.4);
}

/* Mobile Accordion Improvements */
@media (max-width: 991.98px) {
    .navbar-nav.d-lg-none .nav-link {
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        padding: 10px 15px !important;
        border-radius: 8px;
        color: var(--rt-dark) !important;
    }

    .navbar-nav.d-lg-none .nav-link:hover {
        background: rgba(232, 87, 26, 0.06);
        color: var(--rt-primary) !important;
    }

    .navbar-nav.d-lg-none .collapse {
        transition: all 0.3s ease;
    }

    .mobile-mega-cat-header {
        font-size: 0.88rem;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--rt-secondary);
        padding: 8px 12px;
        border-radius: 6px;
        background: rgba(232, 87, 26, 0.04);
        margin: 6px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-decoration: none;
    }

    .mobile-mega-link {
        font-size: 0.85rem;
        color: #495057 !important;
        padding: 6px 16px !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-left: 2px solid rgba(0, 0, 0, 0.06);
        margin-left: 10px;
        transition: all 0.2s ease;
        text-decoration: none;
    }

    .mobile-mega-link:hover {
        color: var(--rt-primary) !important;
        border-left-color: var(--rt-primary);
        background: rgba(232, 87, 26, 0.03);
    }

    .mobile-mega-cat-header .fa-plus {
        transition: transform 0.3s ease;
    }

    .mobile-mega-cat-header:not(.collapsed) {
        background: rgba(232, 87, 26, 0.08) !important;
        color: var(--rt-primary) !important;
    }

    .mobile-mega-cat-header:not(.collapsed) .fa-plus {
        transform: rotate(135deg);
        color: var(--rt-primary) !important;
    }

    .nav-link[data-bs-toggle="collapse"] .fa-chevron-down {
        transition: transform 0.3s ease;
    }

    .nav-link[data-bs-toggle="collapse"]:not(.collapsed) .fa-chevron-down {
        transform: rotate(180deg);
        color: var(--rt-primary) !important;
    }
}

/* === HERO CENTERED SLIDE CONTENT === */
.tn-slide-content {
    grid-area: 1 / 1;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
    display: none;
    pointer-events: none;
}

.tn-slide-content.active {
    opacity: 1;
    transform: translateY(0);
    display: block;
    pointer-events: auto;
}

.tn-slide-text-title {
    font-size: clamp(2.5rem, 8.5vw, 7.5rem);
    line-height: 1.1;
    font-weight: 900;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.65);
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -2px;
}

.tn-slide-text-title span.text-warning {
    color: #ffc107 !important;
}

@media (max-width: 767px) {
    .tn-slide-text-title {
        font-size: clamp(2rem, 7.5vw, 3.5rem);
        letter-spacing: -1px;
    }
}

/* === DESTINATION DETAILS BOOKING LAYOUT === */
.rt-detail-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--rt-dark);
}

.rt-detail-price-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.rt-detail-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--rt-primary);
    font-family: 'Montserrat', sans-serif;
}

.rt-detail-price-label {
    font-size: 0.85rem;
    color: #6c757d;
}

.rt-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.rt-spec-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #495057;
}

.rt-spec-item i {
    color: var(--rt-primary);
    font-size: 1rem;
}

.rt-pdf-btn {
    border: 2px solid var(--rt-secondary);
    color: var(--rt-secondary) !important;
    background: transparent;
    padding: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    width: 100%;
    margin-top: 15px;
}

.rt-pdf-btn:hover {
    background: var(--rt-secondary);
    color: #ffffff !important;
}

.rt-booking-form-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.rt-booking-form-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--rt-secondary);
    margin-bottom: 15px;
}

.rt-booking-input {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.85rem;
    transition: border-color 0.3s;
}

.rt-booking-input:focus {
    border-color: var(--rt-primary);
    box-shadow: none;
}

/* Inclusions & Exclusions styling */
.rt-inclusion-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: #495057;
    margin-bottom: 10px;
}

.rt-inclusion-item i.fa-check-circle {
    color: #2D6A4F;
    margin-top: 3px;
}

.rt-exclusion-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: #495057;
    margin-bottom: 10px;
}

.rt-exclusion-item i.fa-times-circle {
    color: #d90429;
    margin-top: 3px;
}

/* Timeline styling */
.rt-timeline {
    position: relative;
    border-left: 2px solid rgba(232, 87, 26, 0.15);
    margin-left: 15px;
    padding-left: 20px;
}

.rt-timeline-day {
    position: relative;
    margin-bottom: 25px;
}

.rt-timeline-day::before {
    content: '';
    position: absolute;
    left: -27px;
    top: 3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--rt-primary);
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 3px rgba(232, 87, 26, 0.2);
}

.rt-timeline-day-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--rt-secondary);
    margin-bottom: 6px;
}

.rt-timeline-day-desc {
    font-size: 0.85rem;
    color: #5c636a;
    line-height: 1.6;
}

@media (min-width: 992px) {

    .tour-sidebar,
    .booking-sidebar,
    .rt-sticky-sidebar {
        position: sticky;
        top: 110px;
        align-self: flex-start;
        height: fit-content;
    }
}

/* === HERO SECTION === */
.tn-hero {
    margin-top: 68px !important;
}

@media (max-width: 991px) {
    .tn-hero {
        margin-top: 56px !important;
    }
}

.rt-hero {
    min-height: 100vh;
    min-height: 100svh;
    position: relative;
    overflow: hidden;
}

.rt-hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease;
    transform: scale(1.05);
    transition: opacity 1.5s ease, transform 8s ease;
}

.rt-hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.rt-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.1) 40%,
            rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.rt-hero-content {
    position: relative;
    z-index: 3;
    padding-top: 120px;
}

.rt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 87, 26, 0.9);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease forwards;
}

.rt-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.rt-hero-title span {
    color: var(--rt-accent);
}

.rt-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    animation: fadeInUp 1s ease 0.4s both;
}

.rt-hero-cta {
    animation: fadeInUp 1s ease 0.6s both;
}

.rt-btn-primary {
    background: var(--rt-accent);
    color: var(--rt-dark);
    border: 2px solid var(--rt-accent);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: var(--rt-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.rt-btn-primary:hover {
    background: var(--rt-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(232, 87, 26, 0.4);
    border-color: var(--rt-primary);
}

.rt-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--rt-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.rt-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: #fff;
}

/* Hero Stats Bar */
.rt-hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-top: 3px solid var(--rt-primary);
}

.rt-stat-item {
    text-align: center;
    padding: 20px 0;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.rt-stat-item:last-child {
    border-right: none;
}

.rt-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--rt-primary);
    display: block;
    line-height: 1;
}

.rt-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    font-weight: 500;
}

/* Hero Spacing & Vertical Positioning */
.tn-hero>.container-fluid {
    margin-bottom: 110px !important;
    /* Positions content vertically to match template */
}

.tn-hero-text-container {
    margin-bottom: 60px !important;
    /* Space between text and slider dots */
}

/* Hero Slideshow Indicators — High Visibility Overrides */
.tn-slideshow-indicators {
    bottom: 135px !important;
    /* Sits above the stats bar with good breathing room */
    z-index: 10;
    gap: 12px !important;
}

.tn-indicator-dot {
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.6) !important;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    outline: none !important;
}

.tn-indicator-dot:hover {
    background-color: rgba(255, 255, 255, 1) !important;
    transform: scale(1.2) !important;
}

.tn-indicator-dot.active {
    background-color: var(--rt-primary) !important;
    border-color: var(--rt-primary) !important;
    width: 38px !important;
    border-radius: 7px !important;
    box-shadow: 0 2px 12px rgba(232, 87, 26, 0.6) !important;
}

/* === SECTION HEADERS === */
.rt-section {
    padding: 80px 0;
}

.rt-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--rt-primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.rt-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--rt-dark);
    line-height: 1.2;
}

.rt-section-title span {
    color: var(--rt-secondary);
}

.rt-section-desc {
    color: #666;
    font-size: 1.05rem;
    max-width: 600px;
}

/* === SEARCH BOX OVERRIDE === */
.rt-search-box {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    padding: 30px 40px;
    margin: -70px auto 0;
    position: relative;
    z-index: 100;
    max-width: 1100px;
}

.rt-search-tab {
    background: none;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    transition: var(--rt-transition);
}

.rt-search-tab.active {
    background: var(--rt-primary);
    color: #fff;
}

.rt-search-input {
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    padding: 12px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    width: 100%;
    transition: border-color 0.3s;
}

.rt-search-input:focus {
    outline: none;
    border-color: var(--rt-primary);
    box-shadow: 0 0 0 4px rgba(232, 87, 26, 0.1);
}

.rt-search-btn {
    background: var(--rt-accent);
    color: var(--rt-dark);
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--rt-transition);
    white-space: nowrap;
}

.rt-search-btn:hover {
    background: var(--rt-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* === TOUR CARDS === */
.rt-tour-card {
    border-radius: 18px !important;
    overflow: hidden;
    border: 1px solid #EAEAEA !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
    transition: var(--rt-transition);
    background: #fff;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.rt-tour-card .card-body {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    padding: 24px !important;
}

.rt-tour-card .card-body>div:last-child {
    margin-top: auto !important;
}

.rt-tour-card:hover {
    transform: translateY(-6px) !important;
    border-color: var(--rt-primary) !important;
    box-shadow: 0 12px 30px rgba(232, 87, 26, 0.15) !important;
}

.rt-tour-card .card-img-wrapper {
    height: 270px !important;
    overflow: hidden;
    position: relative;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

.rt-tour-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rt-tour-card:hover .card-img-wrapper img {
    transform: scale(1.06);
}

.rt-tour-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--rt-primary);
    color: #fff;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.rt-tour-badge.international {
    background: var(--rt-secondary);
}

.rt-tour-badge.domestic {
    background: var(--rt-primary);
}

.rt-tour-badge.featured {
    background: #7B2D8B;
}

.rt-tour-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--rt-primary);
}

.rt-tour-price small {
    font-size: 0.75rem;
    color: #888;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.rt-tour-meta span {
    font-size: 0.8rem;
    color: #666;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.rt-tour-meta i {
    color: var(--rt-primary);
}

.rt-btn-book {
    background: var(--rt-accent);
    color: var(--rt-dark);
    border: none;
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--rt-transition);
    text-decoration: none;
    display: inline-block;
}

.rt-btn-book:hover {
    background: var(--rt-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* === FIXED DEPARTURE SECTION === */
.rt-departure-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--rt-card-shadow);
    border-left: 5px solid var(--rt-secondary);
    transition: var(--rt-transition);
}

.rt-departure-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.rt-status-badge {
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.rt-status-open {
    background: #D4EDDA;
    color: #155724;
}

.rt-status-filling {
    background: #FFF3CD;
    color: #856404;
}

.rt-status-soldout {
    background: #F8D7DA;
    color: #721c24;
}

.rt-seats-info {
    font-size: 0.8rem;
    color: #666;
}

.rt-seats-bar {
    height: 6px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 4px;
}

.rt-seats-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--rt-secondary), var(--rt-primary));
    border-radius: 3px;
    transition: width 1s ease;
}

/* === CUSTOM TOUR PLANNER SECTION === */
.rt-planner-section {
    background: radial-gradient(circle at center, rgba(232, 87, 26, 0.12) 0%, #1C1C1E 100%), #1C1C1E;
    position: relative;
    overflow: hidden;
}

.rt-planner-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.rt-planner-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -50px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(232, 87, 26, 0.06);
}

.rt-planner-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.rt-planner-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--rt-dark);
    margin-bottom: 8px;
}

.rt-planner-input {
    border: 1.5px solid #E0E0E0;
    border-radius: 12px;
    padding: 12px 16px;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.rt-planner-input:focus {
    outline: none;
    border-color: var(--rt-primary);
    box-shadow: 0 0 0 4px rgba(232, 87, 26, 0.1);
}

.rt-planner-title {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
}

.rt-planner-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.rt-planner-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.rt-planner-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(232, 87, 26, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rt-accent);
    flex-shrink: 0;
}

/* === WHY CHOOSE SECTION === */
.rt-why-section {
    background: var(--rt-light-bg);
}

.rt-why-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    transition: var(--rt-transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.rt-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--rt-primary);
}

.rt-why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(232, 87, 26, 0.1), rgba(232, 87, 26, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--rt-primary);
    transition: var(--rt-transition);
}

.rt-why-card:hover .rt-why-icon {
    background: var(--rt-primary);
    color: #fff;
}

.rt-why-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--rt-dark);
    margin-bottom: 10px;
}

.rt-why-desc {
    color: #777;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* === DESTINATIONS GRID === */
.rt-destinations-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 15px;
}

.rt-dest-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.rt-dest-card:first-child {
    grid-row: 1 / 3;
}

.rt-dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rt-dest-card:hover img {
    transform: scale(1.08);
}

.rt-dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    color: #fff;
    transition: var(--rt-transition);
}

.rt-dest-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.rt-dest-count {
    font-size: 0.8rem;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .rt-destinations-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .rt-dest-card:first-child {
        grid-row: auto;
        height: 200px;
    }

    .rt-dest-card {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .rt-destinations-grid {
        grid-template-columns: 1fr;
    }

    .rt-dest-card {
        height: 220px;
    }
}

/* === TESTIMONIALS === */
.rt-testimonial-section {
    background: #fff;
}

.rt-testimonial-card {
    background: #F8F9FA;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--rt-transition);
    height: 100%;
}

.rt-testimonial-card:hover {
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.rt-quote-icon {
    font-size: 4rem;
    color: var(--rt-primary);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
    font-family: Georgia, serif;
}

.rt-stars {
    color: #F5A623;
    letter-spacing: 2px;
}

.rt-reviewer-name {
    font-weight: 700;
    color: var(--rt-dark);
}

.rt-reviewer-info {
    font-size: 0.8rem;
    color: #888;
}

/* === GALLERY === */
.rt-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.rt-gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 220px;
}

.rt-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rt-gallery-item:hover img {
    transform: scale(1.05);
}

.rt-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.rt-gallery-item:hover .rt-gallery-overlay {
    opacity: 1;
}

.rt-gallery-overlay i {
    color: #fff;
    font-size: 2rem;
}

@media (max-width: 768px) {
    .rt-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === WHATSAPP CTA === */
.rt-whatsapp-float {
    position: fixed;
    bottom: 55px;
    right: 30px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    animation: pulse 2s infinite;
    transition: transform 0.3s;
}

.rt-whatsapp-float:hover {
    transform: scale(1.1);
}

.rt-whatsapp-float i {
    color: #fff;
    font-size: 1.8rem;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* WhatsApp CTA Section */
.rt-whatsapp-section {
    background: linear-gradient(135deg, var(--rt-secondary) 0%, var(--rt-dark) 100%);
    padding: 60px 0;
    text-align: center;
}

.rt-whatsapp-section h2 {
    color: #fff;
    font-weight: 800;
}

.rt-whatsapp-section p {
    color: rgba(255, 255, 255, 0.9);
}

.rt-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #128C7E;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--rt-transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.rt-whatsapp-btn:hover {
    background: #f0fdf4;
    transform: translateY(-3px);
    color: #128C7E;
}

/* === CONTACT FORM === */
.rt-contact-form {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--rt-card-shadow);
}

.rt-contact-input {
    border: 1.5px solid #E0E0E0;
    border-radius: 12px;
    padding: 14px 16px;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    font-size: 0.9rem;
    transition: all 0.3s;
    resize: vertical;
}

.rt-contact-input:focus {
    outline: none;
    border-color: var(--rt-primary);
    box-shadow: 0 0 0 4px rgba(232, 87, 26, 0.1);
}

.rt-submit-btn {
    background: var(--rt-primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 16px 48px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--rt-transition);
    width: 100%;
}

.rt-submit-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(232, 87, 26, 0.3);
}

/* === CONTACT INFO CARDS === */
.rt-contact-info-card {
    background: var(--rt-secondary);
    border-radius: 24px;
    padding: 40px;
    color: #fff;
    height: 100%;
}

.rt-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.rt-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(232, 87, 26, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rt-accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.rt-info-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.rt-info-value {
    font-weight: 500;
}

/* === NEWSLETTER / FOOTER === */
.rt-newsletter-section {
    background: linear-gradient(135deg, var(--rt-primary) 0%, #e55a2b 100%);
    padding: 70px 0;
}

.rt-newsletter-section h2 {
    color: #fff;
    font-weight: 800;
}

.rt-newsletter-section p {
    color: rgba(255, 255, 255, 0.9);
}

.rt-newsletter-input {
    border: none;
    border-radius: 50px;
    padding: 16px 28px;
    font-family: 'Poppins', sans-serif;
    flex: 1;
    font-size: 1rem;
}

.rt-newsletter-btn {
    background: var(--rt-dark);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 16px 36px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--rt-transition);
}

.rt-newsletter-btn:hover {
    background: #1a2b4c;
    transform: translateY(-2px);
}

.rt-footer {
    background: #1C1C1E;
    padding: 70px 0 0;
}

.rt-footer-logo {
    height: 100px !important;
    width: auto !important;
    object-fit: contain !important;
}

.rt-footer-brand {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
}

.rt-footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

.rt-footer-title {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.rt-footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    display: block;
    margin-bottom: 8px;
}

.rt-footer-link:hover {
    color: var(--rt-primary);
}

.rt-footer-social {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--rt-transition);
}

.rt-footer-social:hover {
    background: var(--rt-primary);
    color: #fff;
    transform: translateY(-2px);
}

.rt-footer-social[title="Facebook"]:hover {
    background: #1877F2 !important;
    color: #fff !important;
}

.rt-footer-social[title="Instagram"]:hover {
    background: #E4405F !important;
    color: #fff !important;
}

.rt-footer-social[title="YouTube"]:hover {
    background: #CD201F !important;
    color: #fff !important;
}

.rt-footer-social[title="WhatsApp"]:hover {
    background: #25D366 !important;
    color: #fff !important;
}

/* Footer contact info alignment */
.rt-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.rt-footer-contact-item i {
    color: var(--rt-primary);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.rt-footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    margin-top: 50px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.rt-footer-bottom>div {
    width: 100%;
}

.rt-footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

.rt-footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.rt-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.rt-footer-bottom-links a:hover {
    color: var(--rt-primary);
}

/* === BREADCRUMB === */
/* === BANNER HEIGHTS — Hierarchical per page type === */
.rt-breadcrumb-section {
    background: linear-gradient(135deg, var(--rt-secondary), #1C1C1E);
    padding: 120px 0 60px;
    margin-top: 0;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
}

/* Gallery banner */
.rt-breadcrumb-section.rt-banner-gallery {
    min-height: 320px;
}

/* Contact banner */
.rt-breadcrumb-section.rt-banner-contact {
    min-height: 340px;
    padding: 130px 0 70px;
}

/* Policy pages banner */
.rt-breadcrumb-section.rt-banner-policy {
    min-height: 220px;
    padding: 110px 0 50px;
}

/* Package pages banner */
.rt-breadcrumb-section.rt-banner-package {
    min-height: 40vh;
    padding: 130px 0 60px;
}

/* Testimonials banner */
.rt-breadcrumb-section.rt-banner-testimonials {
    min-height: 280px;
}

.rt-breadcrumb-section h1 {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.rt-breadcrumb {
    list-style: none;
    display: flex;
    gap: 8px;
    padding: 0;
}

.rt-breadcrumb li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.rt-breadcrumb li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.rt-breadcrumb li a:hover {
    color: var(--rt-accent);
}

.rt-breadcrumb li.active {
    color: var(--rt-accent);
    font-weight: 600;
}

.rt-breadcrumb li:not(:last-child)::after {
    content: ' / ';
    margin-left: 8px;
    opacity: 0.5;
}

/* === PAGE SPECIFIC === */
.rt-page-main {
    padding-top: 0;
}

/* Tour Detail */
.rt-tour-hero {
    min-height: 55vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 40px;
}

.rt-tour-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rt-tour-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
}

.rt-tour-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.rt-itinerary-day {
    border-left: 3px solid var(--rt-primary);
    padding-left: 24px;
    margin-bottom: 28px;
    position: relative;
}

.rt-itinerary-day::before {
    content: '';
    width: 14px;
    height: 14px;
    background: var(--rt-primary);
    border-radius: 50%;
    position: absolute;
    left: -8.5px;
    top: 5px;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--rt-primary);
}

.rt-day-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rt-primary);
    margin-bottom: 4px;
}

.rt-day-title {
    font-weight: 700;
    color: var(--rt-dark);
    margin-bottom: 8px;
}

.rt-inclusion-list {
    list-style: none;
    padding: 0;
}

.rt-inclusion-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    color: #555;
    display: flex;
    gap: 10px;
}

.rt-inclusion-list li::before {
    content: '✓';
    color: var(--rt-primary);
    font-weight: 700;
}

.rt-exclusion-list li::before {
    content: '✗';
    color: #e74c3c;
}

.rt-pricing-card {
    background: linear-gradient(135deg, var(--rt-secondary), #1C1C1E);
    border-radius: 20px;
    padding: 32px;
    color: #fff;
    position: sticky;
    top: 100px;
}

.rt-pricing-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--rt-accent);
}

/* Enquiry form in tour detail */
.rt-enquiry-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--rt-card-shadow);
    margin-top: 24px;
}

/* === POLICY PAGES === */
.rt-policy-section {
    padding: 60px 0;
}

.rt-policy-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--rt-card-shadow);
}

.rt-policy-card h2 {
    font-weight: 700;
    color: var(--rt-secondary);
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(232, 87, 26, 0.1);
}

.rt-policy-card h3 {
    font-weight: 700;
    color: var(--rt-dark);
    margin-top: 24px;
}

.rt-policy-card p,
.rt-policy-card li {
    color: #555;
    line-height: 1.8;
}

.rt-policy-card ul {
    padding-left: 20px;
}

/* === TABS FOR TOURS PAGE === */
.rt-filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.rt-filter-tab {
    background: #fff;
    border: 1.5px solid #E0E0E0;
    border-radius: 50px;
    padding: 8px 22px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: var(--rt-transition);
}

.rt-filter-tab.active,
.rt-filter-tab:hover {
    background: var(--rt-primary);
    border-color: var(--rt-primary);
    color: #fff;
}

/* === GALLERY PAGE GRID === */
.rt-gallery-masonry {
    columns: 3;
    column-gap: 15px;
}

.rt-gallery-masonry .rt-gallery-item {
    break-inside: avoid;
    margin-bottom: 15px;
    height: auto;
}

.rt-gallery-masonry .rt-gallery-item img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

@media (max-width: 768px) {
    .rt-gallery-masonry {
        columns: 2;
    }
}

@media (max-width: 480px) {
    .rt-gallery-masonry {
        columns: 1;
    }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Intersection Observer animations */
.rt-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.rt-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

.rt-animate-delay-1 {
    transition-delay: 0.1s;
}

.rt-animate-delay-2 {
    transition-delay: 0.2s;
}

.rt-animate-delay-3 {
    transition-delay: 0.3s;
}

.rt-animate-delay-4 {
    transition-delay: 0.4s;
}

.rt-animate-delay-5 {
    transition-delay: 0.5s;
}

/* === UTILITIES === */
.rt-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--rt-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: gap 0.3s;
}

.rt-view-all:hover {
    gap: 14px;
    color: var(--rt-primary);
}

.rt-section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--rt-primary), var(--rt-accent));
    border-radius: 2px;
    margin-bottom: 16px;
}

.rt-bg-light {
    background: #F8F9FA;
}

.rt-bg-white {
    background: #fff;
}

.text-rt-primary {
    color: var(--rt-primary) !important;
}

.text-rt-secondary {
    color: var(--rt-secondary) !important;
}

.bg-rt-primary {
    background: var(--rt-primary) !important;
}

.bg-rt-secondary {
    background: var(--rt-secondary) !important;
}

/* Tab nav styles */
.rt-tab-nav {
    border-bottom: 2px solid #E0E0E0;
    margin-bottom: 30px;
}

.rt-tab-btn {
    background: none;
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: color 0.3s;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.rt-tab-btn.active {
    color: var(--rt-primary);
    border-bottom-color: var(--rt-primary);
}

.rt-tab-content {
    display: none;
}

.rt-tab-content.active {
    display: block;
}

/* === RESPONSIVE OVERRIDES === */
@media (max-width: 991px) {
    .rt-section {
        padding: 60px 0;
    }

    .rt-planner-form {
        padding: 28px;
    }

    .rt-contact-form,
    .rt-contact-info-card {
        padding: 28px;
    }

    .rt-hero-stats .rt-stat-item {
        border-bottom: none !important;
        border-right: 1px solid rgba(0, 0, 0, 0.1) !important;
    }

    .rt-hero-stats .rt-stat-item:last-child {
        border-right: none !important;
    }
}

@media (max-width: 575px) {
    .rt-section {
        padding: 50px 0;
    }

    .rt-hero-title {
        font-size: 2.2rem;
    }

    .rt-hero-stats {
        display: none;
    }

    .rt-search-box {
        padding: 20px;
        margin: -30px 15px 0;
    }

    /* Mobile logo size overridden globally in media queries above */
    /* Mobile banner adjustments */
    .rt-breadcrumb-section {
        padding: 100px 0 40px;
        min-height: 200px;
    }
}

/* Specific page: Testimonials */
.rt-testimonial-page .rt-testimonial-card {
    background: #fff;
    box-shadow: var(--rt-card-shadow);
}

/* Upcoming Departures Table */
.rt-departures-table {
    width: 100%;
    border-collapse: collapse;
}

.rt-departures-table th {
    background: var(--rt-secondary);
    color: #fff;
    padding: 14px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: left;
}

.rt-departures-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.rt-departures-table tr:hover {
    background: rgba(232, 87, 26, 0.04);
}

/* Scroll to Top */
.rt-scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--rt-secondary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    transition: var(--rt-transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.rt-scroll-top.visible {
    display: flex;
}

.rt-scroll-top:hover {
    background: var(--rt-primary);
    transform: translateY(-3px);
}

/* === PREMIUM PACKAGE PAGES STYLING === */
.rt-pkg-hero {
    height: 40vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    color: #fff;
    padding-bottom: 50px;
}

.rt-pkg-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.9) 0%, rgba(13, 27, 42, 0.4) 60%, transparent 100%);
    z-index: 1;
}

.rt-pkg-hero-content {
    position: relative;
    z-index: 2;
}

.rt-pkg-tag {
    background: var(--rt-primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 12px;
}

.rt-pkg-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.rt-pkg-meta-item {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 25px;
}

.rt-pkg-meta-item i {
    color: var(--rt-accent);
}

/* Overview Stats Grid */
.rt-overview-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.rt-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rt-overview-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rt-overview-icon {
    width: 44px;
    height: 44px;
    background: rgba(232, 87, 26, 0.08);
    color: var(--rt-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.rt-overview-label {
    font-size: 0.72rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.rt-overview-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--rt-dark);
}

/* Highlights */
.rt-highlight-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.92rem;
    color: #444;
}

.rt-highlight-item i {
    color: var(--rt-primary);
    margin-top: 4px;
    font-size: 1rem;
}

/* Custom Accordion Itinerary */
.rt-itinerary-accordion .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 14px !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.rt-itinerary-accordion .accordion-button {
    background: #fff !important;
    color: var(--rt-dark) !important;
    font-weight: 700;
    padding: 18px 24px;
    font-size: 0.95rem;
    box-shadow: none !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.rt-itinerary-accordion .accordion-button:not(.collapsed) {
    background: rgba(232, 87, 26, 0.03) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.rt-day-pill {
    background: var(--rt-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    margin-right: 12px;
    text-transform: uppercase;
}

.rt-itinerary-body {
    padding: 24px;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Sticky Sidebar Booking Widget */
.rt-booking-widget {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
}

.rt-booking-price-wrap {
    background: rgba(232, 87, 26, 0.04);
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rt-booking-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--rt-primary);
}

.rt-booking-form-item {
    margin-bottom: 16px;
}

.rt-booking-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--rt-dark);
    margin-bottom: 6px;
    display: block;
}

.rt-booking-input {
    width: 100%;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.88rem;
    outline: none;
    transition: all 0.3s;
}

.rt-booking-input:focus {
    border-color: var(--rt-primary);
    box-shadow: 0 0 0 3px rgba(232, 87, 26, 0.12);
}

.rt-booking-total-row {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1rem;
    color: var(--rt-dark);
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    padding-top: 15px;
    margin-top: 18px;
    margin-bottom: 20px;
}

.rt-booking-total-val {
    color: var(--rt-secondary);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
}

.rt-trust-badge-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 16px;
    text-align: center;
}

.rt-trust-badge {
    font-size: 0.68rem;
    color: #666;
}

.rt-trust-badge i {
    font-size: 1rem;
    color: var(--rt-primary);
    display: block;
    margin-bottom: 4px;
}

/* Carry Lists */
.rt-carry-card {
    background: #F8F9FA;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
}

.rt-carry-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--rt-secondary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rt-carry-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rt-carry-list li {
    padding: 6px 0;
    font-size: 0.88rem;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    gap: 8px;
}

.rt-carry-list li::before {
    content: '•';
    color: var(--rt-primary);
    font-weight: 700;
}

/* FAQs */
.rt-faq-card .accordion-item {
    border: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 0 !important;
    margin-bottom: 0;
}

.rt-faq-card .accordion-button {
    font-weight: 600;
    padding: 16px 0;
    background: none !important;
    color: var(--rt-dark) !important;
    box-shadow: none !important;
}

.rt-faq-card .accordion-body {
    padding: 0 0 16px;
    color: #666;
    font-size: 0.88rem;
}

/* === IMMERSIVE TRAVEL SHOWCASE SECTION === */
.rt-showcase-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 50px;
}

.rt-showcase-video-container {
    width: 100%;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    background: #000;
}

.rt-showcase-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Category Cards Overlay Grid */
.rt-showcase-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 30px;
    margin-top: -80px;
    position: relative;
    z-index: 5;
}

/* Category Card Styling */
.rt-showcase-card {
    position: relative;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none !important;
    display: block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.rt-showcase-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.rt-showcase-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.75));
    transition: background 0.4s ease;
}

.rt-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
}

.rt-showcase-card:hover .rt-showcase-card-bg {
    transform: scale(1.08);
}

.rt-showcase-card:hover .rt-showcase-card-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.65));
}

.rt-showcase-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 3;
    color: #ffffff;
    box-sizing: border-box;
}

.rt-showcase-card-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #ffffff;
    transition: background 0.4s, color 0.4s;
}

.rt-showcase-card:hover .rt-showcase-card-icon {
    background: var(--rt-accent, #F5A623);
    color: #000;
}

.rt-showcase-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.rt-showcase-card-link {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.rt-showcase-card-link i {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.rt-showcase-card:hover .rt-showcase-card-link {
    color: var(--rt-accent, #F5A623);
}

.rt-showcase-card:hover .rt-showcase-card-link i {
    transform: translateX(4px);
}

/* Responsiveness */
@media (max-width: 1199.98px) {
    .rt-showcase-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: -60px;
        padding: 0 15px;
    }

    .rt-showcase-video-container {
        height: 420px;
    }
}

@media (max-width: 991.98px) {
    .rt-showcase-video-container {
        height: 380px;
    }
}

@media (max-width: 767.98px) {
    .rt-showcase-categories-grid {
        grid-template-columns: 1fr;
        margin-top: 20px;
        padding: 0;
    }

    .rt-showcase-video-container {
        height: 280px;
        border-radius: 16px;
    }

    .rt-showcase-card {
        height: 140px;
        border-radius: 12px;
    }

    .rt-showcase-card-content {
        padding: 16px;
    }

    .rt-showcase-card-icon {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .rt-showcase-video-container {}
}

@media (max-width: 991.98px) {
    .rt-sticky-sidebar {
        position: static !important;
    }

    body:has(#rtNavbarNav.show) {
        overflow: hidden !important;
    }

    #rtNavbarNav {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 100% !important;
        height: 100vh !important;
        background-color: #ffffff !important;
        z-index: 99999 !important;
        /* ensure it covers header */
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        overflow-y: auto !important;
        padding: 24px 24px 50px 24px !important;
        display: flex !important;
        flex-direction: column !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15) !important;
    }

    #rtNavbarNav.show {
        right: 0 !important;
    }

    #rtNavbarNav.collapsing {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 100% !important;
        height: 100vh !important;
        background-color: #ffffff !important;
        z-index: 99999 !important;
        display: flex !important;
        flex-direction: column !important;
        transition: right 0.35s ease !important;
        height: 100vh !important;
    }

    /* Mobile Header within Menu */
    .mobile-nav-header {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        margin-bottom: 24px;
        background: #ffffff;
    }

    .mobile-nav-logo img {
        height: 44px;
        width: auto;
        object-fit: contain;
    }

    .mobile-nav-close-btn {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border: none;
        background: transparent;
        color: var(--rt-dark, #2d3748);
        transition: transform 0.25s ease;
    }

    .mobile-nav-close-btn:active {
        transform: scale(0.9);
    }

    /* Mobile Links styling */
    #rtNavbarNav .navbar-nav.d-lg-none {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    #rtNavbarNav .navbar-nav.d-lg-none .nav-item {
        width: 100%;
    }

    #rtNavbarNav .navbar-nav.d-lg-none .nav-link {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        font-family: 'Montserrat', sans-serif;
        font-size: 1.25rem !important;
        font-weight: 700 !important;
        color: var(--rt-dark, #2d3748) !important;
        padding: 12px 16px !important;
        border-radius: 8px !important;
        background: transparent !important;
        transition: all 0.25s ease !important;
        min-height: 48px;
    }

    #rtNavbarNav .navbar-nav.d-lg-none .nav-link:hover,
    #rtNavbarNav .navbar-nav.d-lg-none .nav-link:active {
        background: rgba(232, 87, 26, 0.05) !important;
        color: var(--rt-primary) !important;
    }

    #rtNavbarNav .navbar-nav.d-lg-none .nav-link.active {
        color: var(--rt-primary) !important;
        background: rgba(232, 87, 26, 0.06) !important;
        border-left: 3px solid var(--rt-primary) !important;
        padding-left: 13px !important;
        /* compensate for border width */
        font-weight: 800 !important;
    }

    /* Accordion rotation indicator */
    #rtNavbarNav .nav-link[aria-expanded="true"] i.fa-chevron-down {
        transform: rotate(180deg);
    }

    #rtNavbarNav .nav-link i.fa-chevron-down {
        font-size: 0.95rem;
        transition: transform 0.3s ease;
    }

    /* Sub-categories styling */
    .mobile-tours-wrapper {
        background: rgba(0, 0, 0, 0.015);
        border-radius: 10px;
        padding: 10px;
        margin-top: 5px;
        border: 1px solid rgba(0, 0, 0, 0.04);
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .mobile-mega-cat-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 10px 12px !important;
        font-family: 'Poppins', sans-serif;
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        color: var(--rt-primary) !important;
        text-decoration: none !important;
        background: #ffffff !important;
        border-radius: 6px !important;
        border: 1px solid rgba(0, 0, 0, 0.02);
        transition: all 0.25s ease !important;
        min-height: 44px;
    }

    .mobile-mega-cat-header i.fa-plus {
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }

    .mobile-mega-cat-header[aria-expanded="true"] {
        background: rgba(232, 87, 26, 0.03) !important;
    }

    .mobile-mega-cat-header[aria-expanded="true"] i.fa-plus {
        transform: rotate(45deg);
        /* morph + into × */
        color: var(--rt-primary) !important;
    }

    /* Mobile tour links nested */
    .mobile-sub-links-container {
        padding: 6px 6px 10px 6px;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .mobile-mega-link {
        display: flex !important;
        align-items: center;
        padding: 8px 12px !important;
        font-size: 0.9rem !important;
        font-weight: 500 !important;
        color: #4a5568 !important;
        text-decoration: none !important;
        border-radius: 6px !important;
        transition: all 0.25s ease !important;
        min-height: 40px;
    }

    .mobile-mega-link::before {
        content: "•";
        color: var(--rt-accent, #F5A623);
        font-weight: 900;
        display: inline-block;
        width: 1em;
        margin-left: -0.2em;
        font-size: 1.1rem;
    }

    .mobile-mega-link:hover,
    .mobile-mega-link:active {
        color: var(--rt-primary) !important;
        background: rgba(232, 87, 26, 0.03) !important;
    }

    .mobile-mega-view-all {
        display: inline-flex !important;
        align-items: center;
        gap: 6px;
        padding: 8px 12px !important;
        font-size: 0.88rem !important;
        font-weight: 700 !important;
        color: var(--rt-primary) !important;
        text-decoration: none !important;
        transition: all 0.25s ease !important;
        min-height: 40px;
    }

    .mobile-mega-view-all:hover,
    .mobile-mega-view-all:active {
        color: var(--rt-accent, #F5A623) !important;
    }

    .mobile-mega-view-all i {
        font-size: 0.8rem;
        transition: transform 0.25s ease;
    }

    .mobile-mega-view-all:hover i,
    .mobile-mega-view-all:active i {
        transform: translateX(4px);
    }

    /* Mobile CTA Button styling */
    .mobile-nav-cta-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: var(--rt-accent, #F5A623) !important;
        color: #000000 !important;
        font-family: 'Poppins', sans-serif;
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        padding: 14px 20px !important;
        border-radius: 10px !important;
        text-decoration: none !important;
        box-shadow: 0 4px 12px rgba(245, 166, 35, 0.25) !important;
        transition: all 0.3s ease !important;
        margin-top: 16px;
        border: none !important;
        width: 100%;
    }

    .mobile-nav-cta-btn:active {
        transform: translateY(1px);
        box-shadow: 0 2px 6px rgba(245, 166, 35, 0.15) !important;
    }
}

/* Mobile Hero Banner Optimization & Global Responsive Overrides (Screens < 768px) */
@media (max-width: 767.98px) {
    .tn-hero {
        min-height: 52vh !important;
        /* Keep a landscape aspect ratio to show images beautifully and prevent extreme vertical stretching */
        align-items: center !important;
        /* Vertically center hero content */
        justify-content: center !important;
    }

    .tn-hero>.container-fluid {
        margin-bottom: 0 !important;
        /* Clear bottom margin to center layout */
        padding-top: 20px !important;
        /* Add top padding to offset navbar */
    }

    .tn-hero-text-container {
        margin-bottom: 15px !important;
        /* Keep neat bottom spacing to indicators */
    }

    .tn-slideshow-indicators {
        bottom: 15px !important;
        /* Position indicators cleanly near the bottom */
    }

    .tn-slide-text-title {
        font-size: clamp(1.6rem, 6.5vw, 2.5rem) !important;
        /* Optimize text sizing for small screens */
        line-height: 1.15 !important;
        letter-spacing: -0.5px !important;
    }

    .rt-hero-stats {
        display: none !important;
        /* Hide stats bar on mobile to avoid overlap */
    }

    /* Compact Floating CTA Buttons on Mobile */
    .rt-whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        bottom: 20px !important;
        right: 20px !important;
    }

    .rt-whatsapp-float i {
        font-size: 1.5rem !important;
    }

    .rt-scroll-top {
        width: 38px !important;
        height: 38px !important;
        bottom: 80px !important;
        right: 26px !important;
    }

    .rt-scroll-top i {
        font-size: 0.9rem !important;
    }
}

/* ============================================================
   Inner Page Hero – Fixed Navbar Clearance & Premium Styling
   Standardizes all internal page hero banners with a consistent
   layout: vertically/horizontally centered, unified gradient + pattern.
   ============================================================ */
.rt-about-hero,
.rt-gallery-page-hero,
.upcoming-hero-bg,
.rt-custom-hero,
.rt-contact-hero,
.rt-breadcrumb-section {
    position: relative !important;
    overflow: hidden !important;
    min-height: 300px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding-top: 150px !important;
    padding-bottom: 150px !important;
    margin-top: var(--rt-navbar-height, 64.835938px) !important;
}

/* About Page is image-based, other internal pages use the premium gradient */
.rt-gallery-page-hero,
.upcoming-hero-bg,
.rt-custom-hero,
.rt-contact-hero,
.rt-breadcrumb-section {
    background: linear-gradient(135deg, var(--rt-dark) 0%, var(--rt-secondary) 60%, #1C1C1E 100%) !important;
}

/* Exclude About Page from SVG grid pattern overlay */
.rt-gallery-page-hero::before,
.upcoming-hero-bg::before,
.rt-custom-hero::before,
.rt-contact-hero::before,
.rt-breadcrumb-section::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
    z-index: 1 !important;
}

.rt-about-hero .container-xl,
.rt-gallery-page-hero .container-xl,
.upcoming-hero-bg .container-xl,
.rt-custom-hero .container-xl,
.rt-contact-hero .container-xl,
.rt-breadcrumb-section .container-xl {
    position: relative !important;
    z-index: 2 !important;
    max-width: 900px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

@media (max-width: 991px) {

    .rt-about-hero,
    .rt-gallery-page-hero,
    .upcoming-hero-bg,
    .rt-custom-hero,
    .rt-contact-hero,
    .rt-breadcrumb-section {
        margin-top: var(--rt-navbar-height, 65px) !important;
        min-height: 260px !important;
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
}

/* About Page Specific Image Hero Background & Overlay */
.rt-about-hero {
    background: transparent !important;
}

.rt-about-hero-bg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 40% !important;
    z-index: 1 !important;
}

.rt-about-hero-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(180deg, rgba(13, 27, 42, 0.4) 0%, rgba(13, 27, 42, 0.65) 100%) !important;
    z-index: 1 !important;
}

.rt-about-hero-content {
    position: relative !important;
    z-index: 2 !important;
}

/* Maintain original spacing for package/tour detail pages inside /packages/ */
.rt-pkg-hero {
    padding-top: 130px !important;
    margin-top: 65px !important;
}

@media (max-width: 991px) {
    .rt-pkg-hero {
        padding-top: 100px !important;
        margin-top: 40px !important;
    }
}

/* === REDESIGNED TABBED TOURS MEGA MENU (DESKTOP) === */
@media (min-width: 992px) {

    /* Outer Dropdown Menu container */
    .dropdown-menu.rt-mega-dropdown {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        top: 100% !important;
        background: #ffffff !important;
        border: none !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
        padding: 20px 24px !important;
        border-radius: 16px !important;
        z-index: 999 !important;
        display: none;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.25s ease, transform 0.25s ease;
        border-top: 4px solid var(--rt-primary) !important;
    }

    .rt-mega-menu-parent {
        position: static !important;
        padding-bottom: 15px !important;
        margin-bottom: -15px !important;
    }

    .dropdown-menu.rt-mega-dropdown.show {
        display: block !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    /* Layout Wrapper — 4-column mega menu */
    .rt-mega-wrapper {
        display: flex;
        gap: 16px;
        align-items: stretch;
    }

    /* 1. Left Sidebar: Categories Tabs */
    .rt-mega-sidebar {
        width: 19%;
        border-right: 1px solid rgba(0, 0, 0, 0.08);
        padding-right: 12px;
        flex-shrink: 0;
    }

    .rt-mega-tabs {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .rt-mega-tab {
        display: flex;
        flex-direction: column;
        position: relative;
        padding: 8px 12px;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.2s ease;
        border-left: 3px solid transparent;
    }

    .rt-mega-tab:hover {
        background: rgba(232, 87, 26, 0.03);
    }

    .rt-mega-tab.active {
        background: rgba(232, 87, 26, 0.06);
        border-left-color: var(--rt-primary);
    }

    .rt-mega-tab-title {
        font-family: 'Poppins', sans-serif;
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--rt-secondary);
        transition: color 0.2s ease;
    }

    .rt-mega-tab.active .rt-mega-tab-title {
        color: var(--rt-primary);
    }

    .rt-mega-tab-desc {
        font-size: 0.7rem;
        color: #718096;
        margin-top: 1px;
    }

    .rt-mega-tab i {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.7rem;
        color: #a0aec0;
        opacity: 0;
        transition: all 0.2s ease;
    }

    .rt-mega-tab.active i,
    .rt-mega-tab:hover i {
        opacity: 1;
        right: 10px;
        color: var(--rt-primary);
    }

    /* 2. Center Content: Package Grids */
    .rt-mega-content {
        width: 34%;
        padding: 0 4px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex-shrink: 0;
    }

    .rt-mega-panel {
        display: none;
    }

    .rt-mega-panel.active {
        display: block;
        animation: rtMegaFadeIn 0.2s ease-out;
    }

    @keyframes rtMegaFadeIn {
        from {
            opacity: 0;
            transform: translateY(4px);
        }

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

    .rt-mega-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4px 10px;
        align-content: start;
    }

    /* Individual Package Item */
    .rt-mega-pkg-item {
        font-family: 'Poppins', sans-serif;
        font-size: 0.78rem;
        font-weight: 600;
        color: #4a5568;
        padding: 5px 6px;
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.2s ease;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
    }

    .rt-mega-pkg-item:hover {
        background: rgba(232, 87, 26, 0.05);
        color: var(--rt-primary);
        padding-left: 10px;
    }

    /* 3. Custom Trips Column */
    .rt-mega-custom-col {
        width: 22%;
        display: flex;
        flex-direction: column;
        flex-shrink: 0;
    }

    /* 4. Right Sidebar: Featured Card */
    .rt-mega-featured {
        width: 22%;
        position: relative;
        display: flex;
        align-items: stretch;
        flex-shrink: 0;
    }

    .rt-mega-feat-card {
        display: none;
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        position: relative;
        flex-direction: column;
        justify-content: flex-end;
        padding: 14px;
        color: #ffffff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .rt-mega-feat-card.active {
        display: flex;
        animation: rtMegaFadeIn 0.3s ease-out;
    }

    .rt-mega-feat-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(8, 28, 21, 0.05) 0%, rgba(8, 28, 21, 0.88) 100%);
        z-index: 1;
    }

    .rt-mega-feat-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .rt-mega-feat-badge {
        align-self: flex-start;
        font-size: 0.6rem;
        font-weight: 700;
        text-transform: uppercase;
        background: var(--rt-primary);
        color: #ffffff;
        padding: 2px 7px;
        border-radius: 50px;
        letter-spacing: 0.5px;
        margin-bottom: 2px;
    }

    .rt-mega-feat-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.95rem;
        font-weight: 800;
        margin: 0;
        line-height: 1.2;
    }

    .rt-mega-feat-subtitle {
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.2;
    }

    .rt-mega-feat-duration {
        font-size: 0.65rem;
        font-weight: 600;
        color: var(--rt-accent, #F5A623);
        margin-top: 1px;
    }

    .rt-mega-feat-highlights {
        list-style: none;
        padding: 0;
        margin: 4px 0 8px 0;
        display: flex;
        flex-direction: column;
        gap: 2px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-top: 4px;
    }

    .rt-mega-feat-highlights li {
        font-size: 0.65rem;
        font-weight: 550;
        color: rgba(255, 255, 255, 0.9);
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .rt-mega-feat-highlights li i {
        color: var(--rt-accent, #F5A623);
        font-size: 0.6rem;
    }

    .rt-mega-feat-btn {
        display: inline-block;
        text-align: center;
        background: #ffffff;
        color: var(--rt-secondary);
        font-family: 'Poppins', sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        padding: 6px 10px;
        border-radius: 6px;
        text-decoration: none !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.2s ease;
    }

    .rt-mega-feat-btn:hover {
        background: var(--rt-primary);
        color: #ffffff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    /* Custom Packages CTA Card (own column) */
    .rt-mega-custom-card {
        background: linear-gradient(135deg, #0D1B2A 0%, #1a3552 60%, #E8571A 100%);
        border-radius: 12px;
        padding: 16px;
        color: #ffffff;
        display: flex;
        flex-direction: column;
        gap: 6px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.08);
        flex: 1;
        position: relative;
        overflow: hidden;
        justify-content: center;
    }

    /* Subtle glow accent in top-right corner */
    .rt-mega-custom-card::before {
        content: '';
        position: absolute;
        top: -20px;
        right: -20px;
        width: 80px;
        height: 80px;
        background: radial-gradient(circle, rgba(232, 87, 26, 0.3) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .rt-mega-custom-badge {
        align-self: flex-start;
        font-size: 0.58rem;
        font-weight: 700;
        text-transform: uppercase;
        background: rgba(245, 166, 35, 0.2);
        color: var(--rt-accent, #F5A623);
        padding: 2px 8px;
        border-radius: 50px;
        letter-spacing: 0.6px;
        border: 1px solid rgba(245, 166, 35, 0.3);
    }

    .rt-mega-custom-icon {
        font-size: 1.1rem;
        color: var(--rt-accent, #F5A623);
        margin-bottom: 2px;
    }

    .rt-mega-custom-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.88rem;
        font-weight: 800;
        margin: 0;
        line-height: 1.2;
    }

    .rt-mega-custom-subtitle {
        font-size: 0.68rem;
        color: rgba(255, 255, 255, 0.75);
        line-height: 1.3;
    }

    .rt-mega-custom-features {
        list-style: none;
        padding: 0;
        margin: 4px 0 8px 0;
        display: flex;
        flex-direction: column;
        gap: 2px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 6px;
    }

    .rt-mega-custom-features li {
        font-size: 0.62rem;
        font-weight: 550;
        color: rgba(255, 255, 255, 0.85);
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .rt-mega-custom-features li i {
        color: var(--rt-accent, #F5A623);
        font-size: 0.55rem;
    }

    .rt-mega-custom-btn {
        display: inline-block;
        text-align: center;
        background: var(--rt-primary);
        color: #ffffff;
        font-family: 'Poppins', sans-serif;
        font-size: 0.68rem;
        font-weight: 700;
        padding: 6px 10px;
        border-radius: 6px;
        text-decoration: none !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.25s ease;
        position: relative;
        z-index: 1;
    }

    .rt-mega-custom-btn:hover {
        background: var(--rt-accent, #F5A623);
        color: var(--rt-dark);
        box-shadow: 0 4px 12px rgba(232, 87, 26, 0.35);
        transform: translateY(-1px);
    }
}

/* Mobile Custom Package CTA Card (inside mobile drawer) */
.rt-mobile-custom-card {
    display: none;
    /* hidden on desktop */
}

@media (max-width: 991.98px) {
    .rt-mobile-custom-card {
        display: block;
        background: linear-gradient(135deg, #0D1B2A 0%, #1a3552 60%, #E8571A 100%);
        border-radius: 12px;
        padding: 18px 16px;
        margin-top: 10px;
        text-decoration: none !important;
        color: #ffffff;
        position: relative;
        overflow: hidden;
    }

    .rt-mobile-custom-card::before {
        content: '';
        position: absolute;
        top: -15px;
        right: -15px;
        width: 70px;
        height: 70px;
        background: radial-gradient(circle, rgba(232, 87, 26, 0.3) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .rt-mobile-custom-inner {
        display: flex;
        align-items: center;
        gap: 14px;
        position: relative;
        z-index: 1;
    }

    .rt-mobile-custom-icon {
        width: 44px;
        height: 44px;
        background: rgba(245, 166, 35, 0.15);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: var(--rt-accent, #F5A623);
        flex-shrink: 0;
        border: 1px solid rgba(245, 166, 35, 0.25);
    }

    .rt-mobile-custom-text {
        flex: 1;
        min-width: 0;
    }

    .rt-mobile-custom-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.88rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 2px;
    }

    .rt-mobile-custom-subtitle {
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.3;
    }

    .rt-mobile-custom-arrow {
        font-size: 0.9rem;
        color: var(--rt-accent, #F5A623);
        flex-shrink: 0;
    }
}

/* === PREMIUM INSTAGRAM SHOWCASE SECTION === */
.rt-instagram-section {
    padding: 80px 0;
    overflow: hidden;
}

.rt-instagram-stats-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
}

.rt-insta-stat {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--rt-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rt-insta-stat-bullet {
    color: var(--rt-primary);
    font-size: 0.8rem;
    font-weight: bold;
}

.rt-instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 767px) {
    .rt-instagram-section {
        padding: 40px 0 !important;
    }

    .rt-instagram-section .row {
        --bs-gutter-y: 24px !important;
    }

    .rt-instagram-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        gap: 15px !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
        padding-top: 5px !important;
        padding-bottom: 20px !important;
        margin-left: -24px !important;
        margin-right: -24px !important;
    }

    .rt-instagram-grid::-webkit-scrollbar {
        display: none !important;
    }

    .rt-insta-card {
        flex: 0 0 68% !important;
        scroll-snap-align: start !important;
        aspect-ratio: 9 / 16 !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;
    }
}

.rt-insta-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: block;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #f8f9fa;
}

.rt-insta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rt-insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(232, 87, 26, 0.88);
    /* Rides & Treks Primary theme with opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.rt-insta-type-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    z-index: 3;
    pointer-events: none;
    transition: background 0.3s ease;
}

.rt-insta-metrics {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    transform: translateY(10px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rt-insta-metric {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rt-insta-metric i {
    font-size: 0.95rem;
}

.rt-insta-card:hover .rt-insta-img {
    transform: scale(1.08);
}

.rt-insta-card:hover .rt-insta-overlay {
    opacity: 1;
}

.rt-insta-card:hover .rt-insta-metrics {
    transform: translateY(0);
}

.rt-insta-card:hover .rt-insta-type-badge {
    background: var(--rt-primary);
}

/* === PREMIUM CTA STRIPE SECTION === */
.rt-cta-stripe-section {
    background: radial-gradient(circle at center, rgba(232, 87, 26, 0.12) 0%, #1C1C1E 100%), #1C1C1E;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.rt-cta-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.rt-cta-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.rt-cta-trust-row {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.rt-cta-trust-row span {
    display: inline-flex;
    align-items: center;
}

.rt-cta-trust-row .text-primary {
    color: var(--rt-primary) !important;
}

.rt-cta-trust-row .trust-divider {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 767px) {
    .rt-cta-heading {
        font-size: 1.8rem;
    }

    .rt-cta-desc {
        font-size: 0.95rem;
    }
}

/* === TESTIMONIAL AVATAR ICON === */
.rt-avatar-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rt-primary) 0%, #e55a2b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(232, 87, 26, 0.35);
    flex-shrink: 0;
}

.rt-avatar-icon i {
    font-size: 1.3rem;
    color: #ffffff;
}

/* === MOBILE HOMEPAGE CAROUSELS OPTIMIZATION === */
@media (max-width: 767.98px) {
    .rt-homepage-slider {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-behavior: smooth !important;
        scroll-padding-left: 20px !important;
        scroll-padding-right: 20px !important;
        padding-bottom: 24px !important;
        margin-left: -20px !important;
        margin-right: -20px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        scrollbar-width: none !important;
        align-items: stretch !important;
        /* Keeps equal card heights */
    }

    .rt-homepage-slider::-webkit-scrollbar {
        display: none !important;
    }

    .rt-homepage-slider>[class*="col-"] {
        flex: 0 0 83% !important;
        /* ~1.2 cards visible per screen width */
        max-width: 83% !important;
        scroll-snap-align: start !important;
        scroll-snap-stop: always !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
        display: flex !important;
    }

    /* Compact Premium Card Styling on Mobile */
    .rt-homepage-slider .rt-tour-card {
        width: 100% !important;
        height: 100% !important;
        border-radius: 16px !important;
        display: flex !important;
        flex-direction: column !important;
        transform: none !important;
        /* Disable hover transition translate */
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05) !important;
    }

    .rt-homepage-slider .rt-tour-card:hover {
        transform: none !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05) !important;
        border-color: #EAEAEA !important;
        /* Keep same border color on mobile hover */
    }

    .rt-homepage-slider .rt-tour-card .card-img-wrapper {
        height: 140px !important;
        border-top-left-radius: 16px !important;
        border-top-right-radius: 16px !important;
    }

    .rt-homepage-slider .rt-tour-card .card-body {
        padding: 12px !important;
        display: flex !important;
        flex-direction: column !important;
        flex-grow: 1 !important;
    }

    /* Hide description paragraph */
    .rt-homepage-slider .rt-tour-card .card-body p.text-muted,
    .rt-homepage-slider .rt-tour-card .card-body p.small,
    .rt-homepage-slider .rt-tour-card .card-body p {
        display: none !important;
    }

    /* Keep important info: Duration in meta and Price */
    .rt-homepage-slider .rt-tour-card .rt-tour-meta>span:not(:first-child) {
        display: none !important;
        /* Hide other meta like group size/location to avoid clutter */
    }

    .rt-homepage-slider .rt-tour-card .rt-tour-meta {
        margin-bottom: 6px !important;
        gap: 0 !important;
    }

    /* Equal title container heights */
    .rt-homepage-slider .rt-tour-card .card-body h5 {
        font-size: 0.95rem !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        height: 2.6em !important;
    }

    .rt-homepage-slider .rt-tour-card .card-body .d-flex.align-items-center.justify-content-between {
        margin-top: auto !important;
    }

    .rt-homepage-slider .rt-tour-card .rt-tour-price {
        font-size: 1.05rem !important;
    }

    .rt-homepage-slider .rt-tour-card .rt-tour-price small {
        font-size: 0.65rem !important;
    }

    .rt-homepage-slider .rt-tour-card .rt-btn-book {
        padding: 6px 14px !important;
        font-size: 0.75rem !important;
    }

    .rt-homepage-slider .rt-tour-card .rt-tour-badge {
        font-size: 0.6rem !important;
        padding: 2px 6px !important;
        top: 8px !important;
        left: 8px !important;
    }

    /* === COMPACT LISTING PAGES CARDS === */
    #toursGrid,
    #intlToursGrid {
        margin-left: 0 !important;
        margin-right: 0 !important;
        row-gap: 16px !important;
        /* Premium vertical space between rows */
    }

    #toursGrid>[class*="col-"],
    #intlToursGrid>[class*="col-"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        display: flex !important;
        /* Ensures equal heights */
    }

    #toursGrid .rt-tour-card,
    #intlToursGrid .rt-tour-card {
        display: flex !important;
        flex-direction: row !important;
        /* horizontal card layout */
        height: 135px !important;
        width: 100% !important;
        border-radius: 14px !important;
        overflow: hidden !important;
        border: 1px solid #EAEAEA !important;
        background: #fff !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
        transform: none !important;
    }

    #toursGrid .rt-tour-card:hover,
    #intlToursGrid .rt-tour-card:hover {
        transform: none !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
        border-color: #EAEAEA !important;
    }

    #toursGrid .rt-tour-card .card-img-wrapper,
    #intlToursGrid .rt-tour-card .card-img-wrapper {
        width: 36% !important;
        height: 100% !important;
        border-radius: 0 !important;
        flex-shrink: 0 !important;
    }

    #toursGrid .rt-tour-card .card-img-wrapper img,
    #intlToursGrid .rt-tour-card .card-img-wrapper img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    #toursGrid .rt-tour-card .card-body,
    #intlToursGrid .rt-tour-card .card-body {
        width: 64% !important;
        padding: 12px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        flex: 1 1 auto !important;
    }

    #toursGrid .rt-tour-card .card-body>.d-flex.justify-content-between.align-items-start,
    #intlToursGrid .rt-tour-card .card-body>.d-flex.justify-content-between.align-items-start,
    #toursGrid .rt-tour-card .card-body>.d-flex.flex-wrap.gap-1,
    #intlToursGrid .rt-tour-card .card-body>.d-flex.flex-wrap.gap-1 {
        display: none !important;
    }

    #toursGrid .rt-tour-card .card-body p:not(.rt-tour-price),
    #intlToursGrid .rt-tour-card .card-body p:not(.rt-tour-price) {
        display: none !important;
    }

    #toursGrid .rt-tour-card .card-img-wrapper .rt-difficulty-badge,
    #intlToursGrid .rt-tour-card .card-img-wrapper .rt-difficulty-badge,
    #toursGrid .rt-tour-card .card-img-wrapper div[style*="position:absolute"],
    #intlToursGrid .rt-tour-card .card-img-wrapper div[style*="position:absolute"] {
        display: none !important;
    }

    #toursGrid .rt-tour-card .card-img-wrapper .rt-tour-badge,
    #intlToursGrid .rt-tour-card .card-img-wrapper .rt-tour-badge {
        font-size: 0.55rem !important;
        padding: 2px 5px !important;
        top: 6px !important;
        left: 6px !important;
        border-radius: 4px !important;
    }

    #toursGrid .rt-tour-card .rt-tour-meta>span:not(:first-child),
    #intlToursGrid .rt-tour-card .rt-tour-meta>span:not(:first-child) {
        display: none !important;
    }

    #toursGrid .rt-tour-card .rt-tour-meta,
    #intlToursGrid .rt-tour-card .rt-tour-meta {
        margin-bottom: 4px !important;
        gap: 0 !important;
    }

    #toursGrid .rt-tour-card .rt-tour-meta>span:first-child,
    #intlToursGrid .rt-tour-card .rt-tour-meta>span:first-child {
        font-size: 0.72rem !important;
        font-weight: 600 !important;
        color: var(--rt-primary) !important;
    }

    #toursGrid .rt-tour-card .card-body .card-title,
    #intlToursGrid .rt-tour-card .card-body .card-title {
        font-size: 0.8rem !important;
        line-height: 1.25 !important;
        margin-bottom: 4px !important;
        font-weight: 700 !important;
        color: var(--rt-dark) !important;
        display: block !important;
        overflow: visible !important;
        height: auto !important;
    }

    #toursGrid .rt-tour-card .card-body .d-flex.align-items-center.justify-content-between,
    #intlToursGrid .rt-tour-card .card-body .d-flex.align-items-center.justify-content-between {
        margin-top: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    #toursGrid .rt-tour-price,
    #intlToursGrid .rt-tour-price {
        font-size: 1.05rem !important;
        font-weight: 700 !important;
        color: var(--rt-primary) !important;
        line-height: 1 !important;
    }

    #toursGrid .rt-tour-price small,
    #intlToursGrid .rt-tour-price small {
        font-size: 0.6rem !important;
        color: #777 !important;
        display: block !important;
        margin-top: 2px !important;
        font-weight: 400 !important;
    }

    #toursGrid .rt-btn-book,
    #intlToursGrid .rt-btn-book {
        padding: 6px 8px !important;
        font-size: 0.72rem !important;
        font-weight: 600 !important;
        border-radius: 30px !important;
        white-space: nowrap !important;
        text-align: center !important;
        flex-shrink: 0 !important;
        min-width: 105px !important;
    }

    #toursGrid .rt-rating,
    #intlToursGrid .rt-rating {
        display: none !important;
    }
}

/* Highlights Stats Strip (Shared & Premium) */
.rt-highlight-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    display: block;
}

.rt-highlight-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    display: block;
}

.rt-highlight-strip .rt-highlight-num,
.rt-intl-highlight .rt-highlight-num {
    color: #E8571A;
    /* var(--rt-primary) */
}

/* Mobile Hero & Highlights Optimization */
@media (max-width: 767px) {
    .rt-breadcrumb-section {
        padding-top: 100px !important;
        padding-bottom: 30px !important;
        min-height: auto !important;
    }

    .rt-breadcrumb-section h1 {
        font-size: 1.8rem !important;
        margin-bottom: 8px !important;
    }

    .rt-breadcrumb-section p {
        font-size: 0.9rem !important;
        margin-bottom: 15px !important;
        line-height: 1.4 !important;
    }

    .rt-breadcrumb {
        font-size: 0.8rem !important;
    }

    .rt-breadcrumb li {
        font-size: 0.8rem !important;
    }

    .rt-highlight-strip,
    .rt-intl-highlight {
        padding: 25px 0 !important;
        background: linear-gradient(135deg, #0D1B2A 0%, #E8571A 100%) !important;
    }

    .rt-highlight-strip .rt-highlight-num,
    .rt-intl-highlight .rt-highlight-num {
        font-size: 1.6rem !important;
        color: #E8571A !important;
    }

    .rt-highlight-strip .rt-highlight-label,
    .rt-intl-highlight .rt-highlight-label {
        font-size: 0.72rem !important;
        letter-spacing: 0.8px !important;
    }

    /* WhatsApp Mobile CTA Compact adjustments */
    .rt-whatsapp-section {
        padding: 30px 0 !important;
    }

    .rt-whatsapp-section .mb-4 {
        margin-bottom: 0.8rem !important;
    }

    .rt-whatsapp-section i.fab.fa-whatsapp {
        font-size: 2.2rem !important;
    }

    .rt-whatsapp-section h2 {
        font-size: 1.45rem !important;
        margin-bottom: 8px !important;
    }

    .rt-whatsapp-section p {
        font-size: 0.9rem !important;
        margin-bottom: 12px !important;
    }

    .rt-whatsapp-btn {
        padding: 10px 24px !important;
        font-size: 0.95rem !important;
        gap: 8px !important;
    }

    .rt-whatsapp-btn i {
        font-size: 1.1rem !important;
    }

    .rt-whatsapp-section p.mt-4 {
        margin-top: 12px !important;
        font-size: 0.82rem !important;
    }
}

/* ============================================================
   PACKAGE DETAIL PAGE – RESPONSIVE OVERRIDES
   Tour Overview Grid + Itinerary Accordion + General Cleanup
   ============================================================ */

/* --- TABLET (768px – 1024px) --- */
@media (max-width: 991.98px) {

    /* Overview Grid: 2 columns on tablet */
    .rt-overview-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    /* Reduce overview card padding on tablet */
    .rt-overview-card {
        padding: 20px !important;
    }

    /* Package hero compact on tablet */
    .rt-pkg-hero {
        min-height: 400px !important;
        padding-bottom: 35px !important;
    }

    .rt-pkg-title {
        font-size: clamp(1.6rem, 4vw, 2.4rem) !important;
    }

    /* Itinerary body padding reduce */
    .rt-itinerary-body {
        padding: 18px !important;
    }
}

/* --- MOBILE (max-width: 767px) --- */
@media (max-width: 767.98px) {

    /* Overview Grid: 2 columns on mobile */
    .rt-overview-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    /* Smaller overview icon on mobile */
    .rt-overview-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 0.95rem !important;
        border-radius: 10px !important;
    }

    /* Tighter overview item spacing */
    .rt-overview-item {
        gap: 10px !important;
    }

    .rt-overview-label {
        font-size: 0.65rem !important;
        letter-spacing: 0.3px !important;
    }

    .rt-overview-value {
        font-size: 0.8rem !important;
    }

    /* Overview card reduced padding */
    .rt-overview-card {
        padding: 16px !important;
        border-radius: 12px !important;
    }

    /* Package hero compact */
    .rt-pkg-hero {
        min-height: 320px !important;
        padding-bottom: 28px !important;
    }

    .rt-pkg-title {
        font-size: 1.5rem !important;
        line-height: 1.15 !important;
        margin-bottom: 10px !important;
    }

    .rt-pkg-tag {
        font-size: 0.65rem !important;
        padding: 4px 12px !important;
        margin-bottom: 8px !important;
    }

    .rt-pkg-meta-item {
        font-size: 0.78rem !important;
        margin-right: 14px !important;
        margin-bottom: 4px !important;
    }

    /* === ITINERARY ACCORDION MOBILE REDESIGN === */

    /* Accordion item tighter */
    .rt-itinerary-accordion .accordion-item {
        border-radius: 10px !important;
        margin-bottom: 8px !important;
    }

    /* Accordion button: reduce padding, let inner div flex-wrap */
    .rt-itinerary-accordion .accordion-button {
        padding: 12px 14px !important;
        padding-right: 36px !important;
        /* space for the bootstrap arrow */
        font-size: 0.85rem !important;
        align-items: flex-start !important;
    }

    /* The inner wrapper div: stack day pill on top of title */
    .rt-itinerary-accordion .accordion-button>div {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 4px !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    /* Day pill: inline block, no margin-right needed when stacked */
    .rt-itinerary-accordion .rt-day-pill {
        margin-right: 0 !important;
        font-size: 0.68rem !important;
        padding: 2px 8px !important;
        flex-shrink: 0 !important;
    }

    /* Title span: wrap cleanly, full width */
    .rt-itinerary-accordion .accordion-button>div>span:last-child {
        display: block !important;
        width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        line-height: 1.35 !important;
        font-size: 0.82rem !important;
    }

    /* Bootstrap accordion arrow: keep vertically centered */
    .rt-itinerary-accordion .accordion-button::after {
        position: absolute !important;
        right: 12px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        flex-shrink: 0 !important;
        width: 14px !important;
        height: 14px !important;
        background-size: 14px !important;
    }

    /* Override Bootstrap's rotate transform for non-collapsed state */
    .rt-itinerary-accordion .accordion-button:not(.collapsed)::after {
        transform: translateY(-50%) rotate(-180deg) !important;
    }

    /* Itinerary body: tighter padding */
    .rt-itinerary-body {
        padding: 14px 16px !important;
        font-size: 0.82rem !important;
        line-height: 1.6 !important;
    }

    /* Section headings inside overview cards */
    .rt-overview-card>h5 {
        font-size: 1rem !important;
        margin-bottom: 12px !important;
    }

    /* Main content area reduced padding */
    main.py-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    /* Booking widget compact on mobile */
    .rt-booking-widget {
        padding: 20px !important;
        border-radius: 16px !important;
    }

    .rt-booking-amount {
        font-size: 1.5rem !important;
    }

    /* Highlights items compact */
    .rt-highlight-item {
        font-size: 0.84rem !important;
        margin-bottom: 10px !important;
    }

    /* Carry cards compact */
    .rt-carry-card {
        padding: 14px !important;
    }

    .rt-carry-title {
        font-size: 0.85rem !important;
    }

    .rt-carry-list li {
        font-size: 0.8rem !important;
    }

    /* FAQ accordion compact */
    .rt-faq-card .accordion-button {
        font-size: 0.84rem !important;
        padding: 12px 14px !important;
    }

    .rt-faq-card .accordion-body {
        padding: 12px 14px !important;
        font-size: 0.82rem !important;
    }

    /* Know Before You Go list compact */
    .rt-overview-card ul.ps-3 li {
        font-size: 0.8rem !important;
    }
}

/* --- SMALL MOBILE (max-width: 380px, e.g. iPhone SE) --- */
@media (max-width: 380px) {

    /* Overview Grid: single column on very small screens */
    .rt-overview-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .rt-overview-item {
        gap: 8px !important;
    }

    .rt-overview-icon {
        width: 34px !important;
        height: 34px !important;
        font-size: 0.85rem !important;
    }

    .rt-overview-value {
        font-size: 0.76rem !important;
    }

    .rt-overview-label {
        font-size: 0.6rem !important;
    }

    /* Accordion even more compact */
    .rt-itinerary-accordion .accordion-button {
        padding: 10px 12px !important;
        padding-right: 32px !important;
        font-size: 0.8rem !important;
    }

    .rt-itinerary-accordion .accordion-button>div>span:last-child {
        font-size: 0.78rem !important;
    }

    .rt-pkg-title {
        font-size: 1.3rem !important;
    }

    .rt-pkg-hero {
        min-height: 280px !important;
    }
}

/* Specific overrides to allow javascript hide/show to work in conjunction with flex grids */
#toursGrid>.tour-hidden,
#intlToursGrid>.tour-hidden {
    display: none !important;
}

/* Prevent footer bottom text from overlapping/touching floating WhatsApp button on mobile */
@media (max-width: 767.98px) {
    .rt-footer-bottom {
        padding-bottom: 95px !important;
    }

    .rt-footer-bottom>div.d-flex {
        align-items: center !important;
        text-align: center !important;
        padding-right: 0 !important;
    }
}