/* ==========================================================================
   Rovic Tours — Custom Styles (Bootstrap 5.3 Override & Extensions)
   ========================================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
    --rt-dark: #1a1a2e;
    --rt-dark-2: #16213e;
    --rt-gold: #c9a84c;
    --rt-gold-light: #e0ca82;
    --rt-green: #25d366;
    --rt-body-bg: #f9f9f9;
    --rt-white: #ffffff;
    --rt-text: #333333;
    --rt-text-light: #666666;
    --rt-border: #e5e5e5;
    --rt-shadow: 0 4px 24px rgba(0, 0, 0, .08);
    --rt-shadow-lg: 0 8px 40px rgba(0, 0, 0, .12);
    --rt-radius: 12px;
    --rt-transition: all .3s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --rt-light: #f5f0e8;
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    /* clip doesn't create a scroll container, sticky works */
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--rt-text);
    background: var(--rt-body-bg);
    line-height: 1.7;
    overflow-x: clip;
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--rt-dark);
}

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

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

/* ---------- Section Headings ---------- */
.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem);
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--rt-gold);
    border-radius: 2px;
    transition: width .6s ease .15s;
}

.section-heading.visible h2::after {
    width: 60px;
}

.section-heading p {
    color: var(--rt-text-light);
    font-size: 1.05rem;
    max-width: 680px;
    margin: 18px auto 0;
}

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--rt-dark);
    color: #fff;
    padding: 8px 0;
    font-size: .85rem;
    letter-spacing: .3px;
    margin-bottom: 0;
}

.top-bar a {
    color: rgba(255, 255, 255, .85);
}

.top-bar a:hover {
    color: var(--rt-gold);
}

.top-bar .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    margin-left: 6px;
    font-size: .85rem;
    transition: var(--rt-transition);
}

.top-bar .social-icons a:hover {
    transform: translateY(-2px);
}

.top-bar .social-icons a[aria-label="Facebook"]:hover {
    background: #1877f2;
    color: #fff;
}

.top-bar .social-icons a[aria-label="Instagram"]:hover {
    background: #e4405f;
    color: #fff;
}

.top-bar .social-icons a[aria-label="X / Twitter"]:hover {
    background: #000;
    color: #fff;
}

.top-bar .social-icons a[aria-label="YouTube"]:hover {
    background: #ff0000;
    color: #fff;
}

.top-bar .social-icons a[aria-label="TikTok"]:hover {
    background: #010101;
    color: #fff;
}

.top-bar .social-icons a[aria-label="TripAdvisor"]:hover {
    background: #34e0a1;
    color: #000;
}

/* ---------- Navbar ---------- */
.main-navbar {
    background: var(--rt-white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
    padding: 0;
    transition: var(--rt-transition);
    z-index: 1030;
    border-bottom: 2px solid var(--rt-gold);
}

.main-navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
}

.brand-logo {
    height: 90px;
    width: auto;
}

.main-navbar .nav-link {
    font-family: var(--font-body);
    font-weight: bold;
    font-size: .9rem;
    color: var(--rt-dark) !important;
    padding: 20px 16px !important;
    letter-spacing: .3px;
    position: relative;
    text-transform: uppercase;
}

.main-navbar .nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--rt-gold);
    transform: scaleX(0);
    transition: transform .3s ease;
}

.main-navbar .nav-link:not(.dropdown-toggle):hover::after,
.main-navbar .nav-link:not(.dropdown-toggle).active::after {
    transform: scaleX(1);
}

/* Custom gold chevron replacing Bootstrap's border-triangle caret */
.main-navbar .dropdown-toggle::after {
    display: inline-block;
    content: '';
    width: 8px;
    height: 8px;
    border: none;
    border-right: 2px solid var(--rt-gold);
    border-bottom: 2px solid var(--rt-gold);
    transform: rotate(45deg) translateY(-2px);
    transition: transform .3s ease;
    margin-left: 7px;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Chevron flips up when dropdown is open */
.main-navbar .dropdown-toggle.show::after {
    transform: rotate(-135deg) translateY(2px);
}

/* Tint the parent link gold when its dropdown is open */
.main-navbar .dropdown-toggle.show {
    color: var(--rt-gold) !important;
}

.main-navbar .dropdown-menu {
    border: none;
    border-top: 3px solid var(--rt-gold);
    border-radius: 0 0 var(--rt-radius) var(--rt-radius);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .13);
    padding: 8px 0 12px;
    min-width: 240px;
    animation: fadeInDown .25s ease;
}

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

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

.main-navbar .dropdown-item {
    padding: 9px 20px 9px 14px;
    font-size: .88rem;
    font-weight: 400;
    color: var(--rt-text);
    transition: var(--rt-transition);
    border-left: 3px solid transparent;
}

.main-navbar .dropdown-item:hover {
    background: linear-gradient(90deg, rgba(201, 168, 76, .08), transparent);
    color: var(--rt-gold);
    border-left-color: var(--rt-gold);
    padding-left: 18px;
}

.main-navbar .navbar-brand img {
    height: 90px;
}

/* ---------- Hero Carousel ---------- */
.hero-carousel {
    position: relative;
    padding: 0;
    margin: 0;
}

.hero-carousel .carousel-item {
    height: 85vh;
    min-height: 550px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-carousel .carousel-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 46, .35) 0%, rgba(26, 26, 46, .72) 100%);
}

.hero-carousel .carousel-caption {
    bottom: 25%;
    text-align: left;
    max-width: 650px;
}

.hero-carousel .carousel-caption h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 4vw + 0.5rem, 3.2rem);
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, .4);
    margin-bottom: 16px;
    line-height: 1.15;
}

.hero-carousel .carousel-caption p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 28px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, .3);
}

.hero-carousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .5);
    background: transparent;
    opacity: 1;
    margin: 0 6px;
}

.hero-carousel .carousel-indicators .active {
    background: var(--rt-gold);
    border-color: var(--rt-gold);
}

/* ---------- Buttons ---------- */
.btn-gold {
    background: var(--rt-gold);
    color: var(--rt-dark);
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    font-size: .95rem;
    border-radius: 50px;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: var(--rt-transition);
}

.btn-gold:hover {
    background: var(--rt-gold-light);
    color: var(--rt-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, .4);
}

.btn-dark-custom {
    background: var(--rt-dark);
    color: #fff;
    border: none;
    padding: 14px 36px;
    font-weight: 600;
    font-size: .95rem;
    border-radius: 50px;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: var(--rt-transition);
}

.btn-dark-custom:hover {
    background: var(--rt-dark-2);
    color: var(--rt-gold);
    transform: translateY(-2px);
    box-shadow: var(--rt-shadow-lg);
}

.btn-outline-gold {
    border: 2px solid var(--rt-gold);
    color: var(--rt-gold);
    background: transparent;
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    transition: var(--rt-transition);
}

.btn-outline-gold:hover {
    background: var(--rt-gold);
    color: var(--rt-dark);
}

/* ---------- Intro Section ---------- */
.intro-section {
    background: var(--rt-white);
}

.intro-section h2 {
    font-size: clamp(1.4rem, 2vw + 0.9rem, 2.2rem);
    line-height: 1.3;
}

.intro-section .intro-img {
    border-radius: var(--rt-radius);
    box-shadow: var(--rt-shadow-lg);
    object-fit: cover;
    width: 100%;
    height: 420px;
}

/* ---------- Destination Cards ---------- */
.destination-card {
    position: relative;
    border-radius: var(--rt-radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--rt-shadow);
    transition: var(--rt-transition);
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--rt-shadow-lg);
}

.destination-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform .5s ease;
}

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

.destination-card .card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .75));
    color: #fff;
    padding: 40px 20px 18px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    transition: padding-bottom .3s ease, background .3s ease;
}

.destination-card:hover .card-label {
    background: linear-gradient(transparent, rgba(26, 26, 46, .88));
    padding-bottom: 24px;
}

/* ---------- Accommodation Section ---------- */
.accommodation-section {
    background: var(--rt-white);
}

.accommodation-section .accom-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--rt-radius);
    box-shadow: var(--rt-shadow-lg);
}

/* ---------- Safari Package Cards ---------- */
.package-card {
    background: var(--rt-white);
    border-radius: var(--rt-radius);
    overflow: hidden;
    box-shadow: var(--rt-shadow);
    transition: var(--rt-transition);
    border: none;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--rt-shadow-lg);
}

.package-card .card-img-top {
    height: 240px;
    object-fit: cover;
    transition: transform .5s ease;
}

.package-card:hover .card-img-top {
    transform: scale(1.05);
}

.package-card .img-wrapper {
    overflow: hidden;
    position: relative;
}

.package-card .img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, .38);
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
}

.package-card:hover .img-wrapper::after {
    opacity: 1;
}

.package-card .price-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--rt-gold);
    color: var(--rt-dark);
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: .85rem;
}

.package-card .card-body {
    padding: 20px;
}

.package-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.package-card .card-text {
    font-size: .88rem;
    color: var(--rt-text-light);
}

.package-card .card-footer {
    background: transparent;
    border-top: 1px solid var(--rt-border);
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-card .duration {
    font-size: .82rem;
    color: var(--rt-text-light);
}

.package-card .duration i {
    color: var(--rt-gold);
    margin-right: 4px;
}

/* ---------- Fly-In Section ---------- */
.flyin-section {
    background: var(--rt-white);
}

.flyin-section .flyin-list li {
    padding: 6px 0;
    font-size: .95rem;
}

.flyin-section .flyin-list a {
    color: var(--rt-dark);
    font-weight: 500;
    font-style: italic;
}

.flyin-section .flyin-list a:hover {
    color: var(--rt-gold);
}

/* ---------- Why Us Cards ---------- */
.why-card {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid var(--rt-border);
    border-radius: var(--rt-radius);
    transition: var(--rt-transition);
    background: var(--rt-white);
}

.why-card:hover {
    border-color: var(--rt-gold);
    box-shadow: var(--rt-shadow);
    transform: translateY(-6px);
}

.why-card .icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--rt-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: var(--rt-transition);
}

.why-card:hover .icon-wrap {
    background: var(--rt-gold);
}

.why-card .icon-wrap i {
    font-size: 1.8rem;
    color: #fff;
}

.why-card h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
}

/* ---------- Trust Section ---------- */
.trust-section {
    background: var(--rt-white);
}

.trust-section p {
    max-width: 860px;
    margin: 0 auto;
    line-height: 1.9;
    color: var(--rt-text-light);
}

/* ---------- Testimonial Section ---------- */
.testimonial-section {
    background: var(--rt-body-bg);
}

.testimonial-card {
    background: var(--rt-white);
    border-radius: var(--rt-radius);
    padding: 32px;
    box-shadow: var(--rt-shadow);
    position: relative;
    border: none;
}

.testimonial-card .quote-icon {
    font-size: 2.5rem;
    color: var(--rt-gold);
    margin-bottom: 12px;
    line-height: 1;
}

.testimonial-card p {
    font-size: .95rem;
    color: var(--rt-text-light);
    font-style: italic;
    line-height: 1.8;
}

.testimonial-card .reviewer {
    display: flex;
    align-items: center;
    margin-top: 18px;
}

.testimonial-card .reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--rt-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rt-dark);
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 14px;
}

.testimonial-card .reviewer-name {
    font-weight: 600;
    font-size: .95rem;
}

.testimonial-card .reviewer-source {
    font-size: .8rem;
    color: var(--rt-text-light);
}

.testimonial-card .stars {
    color: #f5a623;
    font-size: .9rem;
}

/* ---------- Partners ---------- */
.partners-section {
    background: var(--rt-white);
    padding: 50px 0;
}

.partners-section img {
    height: 50px;
    opacity: .55;
    filter: grayscale(100%);
    transition: var(--rt-transition);
}

.partners-section img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--rt-dark);
    color: rgba(255, 255, 255, .8);
    padding: 60px 0 0;
}

.site-footer h5 {
    font-family: var(--font-heading);
    color: var(--rt-gold);
    font-size: 1.15rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.site-footer a {
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
    display: block;
    padding: 4px 0;
}

.site-footer a:hover {
    color: var(--rt-gold);
    padding-left: 4px;
}

.site-footer .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    margin-right: 8px;
    padding: 0;
    transition: var(--rt-transition);
}

.site-footer .footer-social a:hover {
    background: var(--rt-gold);
    color: var(--rt-dark);
    transform: translateY(-3px);
}

.site-footer .footer-social a[aria-label="Facebook"]:hover {
    background: #1877f2;
    color: #fff;
}

.site-footer .footer-social a[aria-label="Instagram"]:hover {
    background: #e4405f;
    color: #fff;
}

.site-footer .footer-social a[aria-label="X"]:hover,
.site-footer .footer-social a[aria-label="X / Twitter"]:hover {
    background: #000;
    color: #fff;
}

.site-footer .footer-social a[aria-label="YouTube"]:hover {
    background: #ff0000;
    color: #fff;
}

.site-footer .footer-social a[aria-label="TikTok"]:hover {
    background: #010101;
    color: #fff;
}

.site-footer .footer-bottom {
    background: rgba(0, 0, 0, .2);
    margin-top: 40px;
    padding: 18px 0;
    text-align: center;
    font-size: .85rem;
}

.site-footer .payment-icons img {
    height: 28px;
    margin: 0 6px;
    opacity: .8;
}

/* ---------- Footer background image overlay ---------- */
.site-footer.has-bg {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding-bottom: 0;
    min-height: 645px;
    display: flex;
    flex-direction: column;
}

.site-footer.has-bg > .container {
    margin-top: auto;
    padding-bottom: 60px;
}

.site-footer.has-bg > .footer-bottom {
    margin-top: auto;
}

.site-footer.has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 20, 0.88);
    z-index: 0;
}

.site-footer.has-bg .container,
.site-footer.has-bg .footer-bottom {
    position: relative;
    z-index: 1;
}

/* ---------- Error Pages ---------- */
.error-page {
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--rt-dark) 0%, var(--rt-dark-2) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    text-align: center;
}

.error-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.10;
}

/* Noise texture overlay */
.error-page::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(201,168,76,.08) 0%, transparent 70%);
    pointer-events: none;
}

.error-code {
    font-family: var(--font-heading);
    font-size: clamp(7rem, 20vw, 15rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--rt-gold) 0%, var(--rt-gold-light) 50%, var(--rt-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: error-float 5s ease-in-out infinite;
    position: relative;
    z-index: 2;
    letter-spacing: -4px;
}

@keyframes error-float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-14px); }
}

.error-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--rt-gold), transparent);
    margin: 20px auto;
    position: relative;
    z-index: 2;
}

.error-page h1.error-title {
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    margin: 0 0 16px;
    position: relative;
    z-index: 2;
    letter-spacing: .5px;
}

.error-page p.error-msg {
    color: rgba(255, 255, 255, .60);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.error-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.btn-outline-gold {
    border: 2px solid var(--rt-gold);
    color: var(--rt-gold);
    padding: 12px 30px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: var(--rt-transition);
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-gold:hover {
    background: var(--rt-gold);
    color: var(--rt-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, .35);
}

/* ---------- Utility Classes ---------- */

.flyin-img {
    border-radius: var(--rt-radius);
    box-shadow: var(--rt-shadow-lg);
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.site-footer .footer-tagline {
    font-size: .85rem;
    color: rgba(255, 255, 255, .7);
}

.site-footer .footer-location {
    font-size: .9rem;
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--rt-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
    z-index: 9999;
    transition: var(--rt-transition);
    color: #fff;
    font-size: 1.8rem;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, .5);
    color: #fff;
}

.whatsapp-float .badge-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: #e74c3c;
    border-radius: 50%;
    border: 2px solid var(--rt-green);
}

/* ---------- Page Banner (Inner Pages) ---------- */
.page-banner {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 46, .6), rgba(26, 26, 46, .85));
}

.page-banner h1 {
    color: #fff;
    font-size: clamp(1.4rem, 2.5vw + 0.8rem, 2.8rem);
    font-weight: 800;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, .3);
}

.page-banner .breadcrumb {
    position: relative;
    z-index: 1;
}

.page-banner .breadcrumb-item a {
    color: var(--rt-gold);
}

.page-banner .breadcrumb-item.active {
    color: rgba(255, 255, 255, .7);
}

.page-banner .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}

/* ---------- Banner Slider (tour-detail page) ---------- */
.banner-slider {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.banner-slide-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 46, .55), rgba(26, 26, 46, .88));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    pointer-events: none;
}

.banner-overlay>div {
    pointer-events: all;
}

.banner-overlay h1 {
    color: #fff;
    font-size: clamp(1.4rem, 2.5vw + 0.8rem, 2.8rem);
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, .35);
    margin-bottom: .5rem;
}

.banner-overlay .breadcrumb-item a {
    color: var(--rt-gold);
    text-decoration: none;
}

.banner-overlay .breadcrumb-item a:hover {
    color: var(--rt-gold-light);
}

.banner-overlay .breadcrumb-item.active {
    color: rgba(255, 255, 255, .75);
}

.banner-overlay .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}

/* Ensure carousel controls sit above the overlay */
.banner-slider .carousel-control-prev,
.banner-slider .carousel-control-next {
    z-index: 6;
}

/* ---------- Tour Page Title Bar ---------- */
.page-title-bar {
    background: var(--rt-dark);
    color: #fff;
    padding: 22px 0;
    text-align: center;
}

.page-title-bar h1 {
    color: #fff;
    font-size: clamp(1.4rem, 2.5vw + 0.8rem, 2.8rem);
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, .35);
    margin-bottom: .4rem;
}

.page-title-bar .breadcrumb-item a {
    color: var(--rt-gold);
}

.page-title-bar .breadcrumb-item a:hover {
    color: var(--rt-gold-light);
}

.page-title-bar .breadcrumb-item.active {
    color: rgba(255, 255, 255, .75);
}

.page-title-bar .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}

/* ---------- Destination Detail ---------- */

/* Highlight cards (Why Visit grid) */
.dest-highlight-card {
    background: var(--rt-white);
    border-radius: var(--rt-radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--rt-shadow);
    transition: var(--rt-transition);
    border: 1px solid var(--rt-border);
    height: 100%;
}

.dest-highlight-card .dh-icon {
    width: 56px;
    height: 56px;
    background: var(--rt-gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.4rem;
    color: var(--rt-dark);
    transition: var(--rt-transition);
}

.dest-highlight-card h5 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.dest-highlight-card p {
    font-size: .88rem;
    color: var(--rt-text-light);
    margin: 0;
}

.dest-highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--rt-shadow-lg);
    border-color: var(--rt-gold);
}

.dest-highlight-card:hover .dh-icon {
    background: var(--rt-dark);
    color: var(--rt-gold);
}

/* Wildlife chips */
.wildlife-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--rt-border);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: .88rem;
    font-weight: 500;
    background: var(--rt-white);
    color: var(--rt-dark);
    transition: var(--rt-transition);
}

.wildlife-chip i {
    color: var(--rt-gold);
    font-size: 1rem;
}

.wildlife-chip:hover {
    border-color: var(--rt-gold);
    background: var(--rt-light);
    transform: translateY(-2px);
    box-shadow: var(--rt-shadow);
}

/* Quick Facts sidebar card */
.dest-quick-facts {
    background: var(--rt-dark);
    color: #fff;
    border-radius: var(--rt-radius);
    padding: 28px;
    margin-bottom: 24px;
}

.dest-quick-facts h5 {
    color: var(--rt-gold);
    font-family: var(--font-heading);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.dest-quick-facts .fact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: .9rem;
}

.dest-quick-facts .fact-row+.fact-row {
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.dest-quick-facts .fact-label {
    color: rgba(255, 255, 255, .65);
    font-size: .85rem;
}

.dest-quick-facts .fact-value {
    font-weight: 600;
    color: #fff;
}

/* ---------- Tour Detail Page ---------- */
.tour-detail .tour-gallery img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--rt-radius);
}

.tour-detail .included-list,
.tour-detail .excluded-list {
    list-style: none;
    padding: 0;
}

.tour-detail .included-list li::before {
    content: '\f26a';
    font-family: 'bootstrap-icons';
    color: var(--rt-gold);
    margin-right: 10px;
    font-weight: 700;
}

.tour-detail .excluded-list li::before {
    content: '\f62a';
    font-family: 'bootstrap-icons';
    color: #dc3545;
    margin-right: 10px;
    font-weight: 700;
}

.tour-detail .included-list li,
.tour-detail .excluded-list li {
    padding: 6px 0;
    font-size: .93rem;
}

/* ---------- Photo Gallery Strip ---------- */
.gallery-wrap {
    position: relative;
}

.gallery-swiper .swiper-slide {
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    position: relative;
    /* anchor the absolutely-placed thumb */
}

.gallery-swiper .gallery-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.gallery-swiper .swiper-slide:hover .gallery-thumb {
    transform: scale(1.07);
}

/* Custom nav buttons */
.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
    --swiper-navigation-size: 16px;
    color: #fff;
    background: rgba(26, 26, 46, .65);
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.gallery-swiper .swiper-button-prev:hover,
.gallery-swiper .swiper-button-next:hover {
    background: var(--rt-gold);
}

/* Camera count badge */
.gallery-count-btn {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 10;
    background: rgba(26, 26, 46, .82);
    color: #fff;
    padding: 7px 16px;
    border-radius: 24px;
    font-size: .82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
    border: none;
    cursor: pointer;
    transition: background .3s;
}

.gallery-count-btn:hover {
    background: var(--rt-gold);
    color: var(--rt-dark);
}

/* Tour Sidebar — sticky scrollable wrapper */
.tour-sidebar {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--rt-gold) transparent;
}

.tour-sidebar::-webkit-scrollbar {
    width: 4px;
}

.tour-sidebar::-webkit-scrollbar-thumb {
    background: var(--rt-gold);
    border-radius: 2px;
}

/* Booking Sidebar */
.booking-sidebar {
    background: #f5f0e8;
    border-radius: var(--rt-radius);
    padding: 28px;
}

.booking-sidebar h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    border-left: 4px solid var(--rt-dark);
    padding-left: 12px;
    margin-bottom: 24px;
}

.booking-sidebar .btn-book {
    background: var(--rt-dark);
    color: #fff;
    width: 100%;
    padding: 14px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--rt-transition);
}

.booking-sidebar .btn-book:hover {
    background: var(--rt-dark-2);
    box-shadow: var(--rt-shadow);
}

/* Room Type Stepper Cards */
.rt-stepper-card {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 10px;
    transition: border-color .2s, background .2s;
    background: #fff;
}

.rt-stepper-card.has-rooms {
    border-color: var(--rt-gold);
    background: #fffbf0;
}

.rt-stepper-card .rt-name {
    font-weight: 600;
    font-size: .9rem;
}

.rt-stepper-card .rt-meta {
    font-size: .78rem;
    color: #666;
    flex: 1;
    padding-right: 8px;
}

.rt-stepper-card .rt-price {
    font-weight: 700;
    color: var(--rt-gold);
    font-size: .9rem;
    white-space: nowrap;
}

.rt-stepper-card .rt-count {
    width: 36px;
    text-align: center;
    border: none;
    font-weight: 700;
    background: transparent;
    font-size: .95rem;
}

.rt-stepper-card .rt-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: border-color .15s, color .15s;
}

.rt-stepper-card .rt-btn:hover {
    border-color: var(--rt-gold);
    color: var(--rt-gold);
}

/* ===== Sticky Bottom Booking Bar ===== */
.bbb {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    background: var(--rt-dark);
    color: #fff;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .28);
}

.bbb-inner {
    display: flex;
    align-items: center;
    min-height: 72px;
    padding: 10px 24px;
    gap: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.bbb-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, .15);
    margin: 0 16px;
    flex-shrink: 0;
}

/* Room steppers */
.bbb-rooms {
    display: flex;
    align-items: stretch;
    gap: 8px;
    flex-shrink: 0;
}

.bbb-stepper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    padding: 6px 12px;
    min-width: 90px;
    text-align: center;
    transition: border-color .2s, background .2s;
}

.bbb-stepper.has-rooms {
    border-color: var(--rt-gold);
    background: rgba(201, 168, 76, .15);
}

.bbb-rt-label {
    font-size: .7rem;
    color: rgba(255, 255, 255, .65);
    text-transform: uppercase;
    letter-spacing: .05em;
    line-height: 1.2;
    margin-bottom: 1px;
}

.bbb-rt-price {
    font-size: .72rem;
    color: var(--rt-gold);
    font-weight: 600;
    margin-bottom: 4px;
}

.bbb-stepper-row {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Shared stepper button */
.bbb-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .3);
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
    transition: border-color .15s, color .15s;
}

.bbb-btn:hover {
    border-color: var(--rt-gold);
    color: var(--rt-gold);
}

.bbb-count {
    min-width: 22px;
    text-align: center;
    font-weight: 700;
    font-size: .95rem;
    color: #fff;
    display: inline-block;
    border: none;
    background: transparent;
}

/* Date inputs */
.bbb-dates {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.bbb-field {
    display: flex;
    flex-direction: column;
}

.bbb-label {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 3px;
    display: block;
}

.bbb-date-input {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 6px;
    color: #fff;
    font-size: .82rem;
    padding: 5px 8px;
    width: 128px;
    color-scheme: dark;
    transition: border-color .15s;
}

.bbb-date-input:focus {
    outline: none;
    border-color: var(--rt-gold);
}

/* Nights + guests */
.bbb-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
}

.bbb-guest-row {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* CTA column */
.bbb-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
}

.bbb-summary-col {
    text-align: right;
}

.bbb-summary-text {
    font-size: .72rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.2;
}

.bbb-total {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--rt-gold);
    line-height: 1.2;
}

.bbb-book-btn {
    background: var(--rt-gold);
    color: var(--rt-dark) !important;
    font-weight: 700;
    font-size: .88rem;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: opacity .2s;
    flex-shrink: 0;
}

.bbb-book-btn[aria-disabled="true"] {
    opacity: .35;
    pointer-events: none;
}

.bbb-book-btn:hover:not([aria-disabled="true"]) {
    opacity: .85;
}

.bbb-enquire-btn {
    color: rgba(255, 255, 255, .65);
    font-size: .8rem;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    padding: 8px 14px;
    flex-shrink: 0;
    transition: color .15s, border-color .15s;
}

.bbb-enquire-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .55);
}

/* Mobile: allow horizontal scroll in the bar */
@media (max-width: 767px) {
    .bbb-inner {
        padding: 8px 12px;
    }

    .bbb-date-input {
        width: 110px;
    }

    .bbb-divider {
        margin: 0 10px;
    }

    .bbb-book-btn {
        padding: 9px 14px;
        font-size: .82rem;
    }
}

/* Last Minute Deals */
.deals-sidebar {
    background: var(--rt-white);
    border-radius: var(--rt-radius);
    padding: 24px;
    box-shadow: var(--rt-shadow);
    margin-top: 24px;
}

.deals-sidebar .deal-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--rt-border);
}

.deals-sidebar .deal-item:last-child {
    border: none;
}

.deals-sidebar .deal-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.deals-sidebar .deal-title {
    font-weight: 600;
    font-size: .88rem;
    color: var(--rt-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.deals-sidebar .deal-title:hover {
    color: var(--rt-gold);
}

.deals-sidebar .deal-price {
    font-size: .82rem;
    color: var(--rt-text-light);
}

.deals-sidebar .deal-price strong {
    color: var(--rt-gold);
    font-weight: 700;
}

/* ---------- Itinerary Accordion ---------- */
.itinerary-accordion .accordion-item {
    border: 1px solid var(--rt-border);
    border-radius: var(--rt-radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.itinerary-accordion .accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--rt-dark);
    background: var(--rt-white);
    padding: 16px 24px;
    box-shadow: none;
}

.itinerary-accordion .accordion-button:not(.collapsed) {
    background: var(--rt-body-bg);
    color: var(--rt-dark);
}

.itinerary-accordion .accordion-button::after,
.faq-accordion .accordion-button::after {
    display: inline-block;
    content: '';
    width: 9px;
    height: 9px;
    border: none;
    border-right: 2px solid var(--rt-gold);
    border-bottom: 2px solid var(--rt-gold);
    transform: rotate(45deg) translateY(-3px);
    transition: transform .3s ease;
    background-image: none;
    flex-shrink: 0;
    margin-left: auto;
}

.itinerary-accordion .accordion-button:not(.collapsed)::after,
.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(-135deg) translateY(3px);
}

.itinerary-accordion .accordion-body {
    padding: 20px 24px;
    font-size: .93rem;
    line-height: 1.9;
    color: var(--rt-text-light);
}

/* ---------- Blog Cards ---------- */
.blog-card {
    background: var(--rt-white);
    border-radius: var(--rt-radius);
    overflow: hidden;
    box-shadow: var(--rt-shadow);
    transition: var(--rt-transition);
    border: none;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--rt-shadow-lg);
}

.blog-card .card-img-top {
    height: 220px;
    object-fit: cover;
}

.blog-card .card-body {
    padding: 24px;
}

.blog-card .blog-date {
    font-size: .8rem;
    color: var(--rt-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.blog-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin: 10px 0;
}

.blog-card .card-text {
    font-size: .9rem;
    color: var(--rt-text-light);
}

/* ---------- Contact Form ---------- */
.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid var(--rt-border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: .93rem;
    transition: var(--rt-transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--rt-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, .15);
}

.contact-form textarea {
    min-height: 140px;
}

.contact-info-box {
    background: var(--rt-dark);
    color: #fff;
    border-radius: var(--rt-radius);
    padding: 40px;
}

.contact-info-box h5 {
    color: var(--rt-gold);
    font-family: var(--font-heading);
}

.contact-info-box i {
    color: var(--rt-gold);
    font-size: 1.2rem;
    margin-right: 10px;
}

/* ---------- Hotel Cards ---------- */
.hotel-card {
    background: var(--rt-white);
    border-radius: var(--rt-radius);
    overflow: hidden;
    box-shadow: var(--rt-shadow);
    transition: var(--rt-transition);
    border: none;
}

.hotel-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--rt-shadow-lg);
}

.hotel-card .card-img-top {
    height: 220px;
    object-fit: cover;
}

.hotel-card .location-badge {
    font-size: .8rem;
    color: var(--rt-gold);
    font-weight: 600;
}

.hotel-card .hotel-stars i {
    color: #f5a623;
    font-size: .78rem;
}

/* ---------- FAQ Accordion ---------- */
.faq-accordion .accordion-item {
    border: 1px solid var(--rt-border);
    border-radius: var(--rt-radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: .95rem;
    color: var(--rt-dark);
    background: var(--rt-white);
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--rt-body-bg);
    color: var(--rt-gold);
}

/* ---------- Scroll Animations ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .hero-carousel .carousel-item {
        height: 60vh;
        min-height: 400px;
    }

    section {
        padding: 60px 0;
    }

    .page-banner {
        height: 260px;
    }
}

/* Mobile offcanvas panel */
@media (max-width: 991.98px) {
    .main-navbar .offcanvas {
        background: var(--rt-dark);
        border-left: 3px solid var(--rt-gold);
    }

    .main-navbar .offcanvas-header {
        padding: 20px 24px;
        border-bottom: 1px solid rgba(201, 168, 76, .2);
    }

    .main-navbar .offcanvas-header .btn-close {
        filter: invert(1);
        opacity: .7;
    }

    .main-navbar .offcanvas-body {
        padding: 16px 24px 40px;
    }

    .main-navbar .offcanvas .navbar-nav {
        gap: 2px;
    }

    .main-navbar .offcanvas .nav-link {
        color: rgba(255, 255, 255, .85) !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
        font-size: .95rem;
    }

    .main-navbar .offcanvas .nav-link:hover,
    .main-navbar .offcanvas .nav-link.active {
        color: var(--rt-gold) !important;
    }

    /* Gold chevron on offcanvas dropdowns */
    .main-navbar .offcanvas .dropdown-toggle::after {
        border-right-color: rgba(255, 255, 255, .5);
        border-bottom-color: rgba(255, 255, 255, .5);
    }

    .main-navbar .offcanvas .dropdown-toggle.show::after {
        border-right-color: var(--rt-gold);
        border-bottom-color: var(--rt-gold);
    }

    .main-navbar .offcanvas .dropdown-menu {
        position: static !important;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 4px 0 8px 16px;
        animation: none;
        border-top: 1px solid rgba(201, 168, 76, .15);
        border-radius: 0;
    }

    .main-navbar .offcanvas .dropdown-item {
        color: rgba(255, 255, 255, .65);
        font-size: .85rem;
        padding: 7px 8px;
        border-left: none;
    }

    .main-navbar .offcanvas .dropdown-item:hover {
        color: var(--rt-gold);
        background: transparent;
        padding-left: 12px;
    }
}

@media (max-width: 767px) {
    .hero-carousel .carousel-item {
        height: 50vh;
        min-height: 340px;
    }

    .hero-carousel .carousel-caption {
        bottom: 15%;
    }

    .top-bar {
        display: none;
    }

    .destination-card img {
        height: 240px;
    }

    .package-card .card-img-top {
        height: 200px;
    }

    .tour-sidebar {
        position: static;
        max-height: none;
        overflow: visible;
        margin-top: 30px;
    }

    .page-banner {
        height: 200px;
    }

    .banner-slider {
        height: 200px;
    }

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

/* ---------- Back to Top ---------- */
#backToTop {
    position: fixed;
    bottom: 100px;
    right: 34px;
    width: 44px;
    height: 44px;
    background: var(--rt-dark);
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--rt-shadow);
    z-index: 9998;
    transition: var(--rt-transition);
}

#backToTop:hover {
    background: var(--rt-gold);
    color: var(--rt-dark);
    transform: translateY(-3px);
}

/* ---------- Stats Section (About Page) ---------- */
.stats-section {
    background: var(--rt-dark);
    color: #fff;
    padding: 60px 0;
}

.stats-section .stat-number {
    font-family: var(--font-heading);
    color: var(--rt-gold);
    font-size: clamp(1.8rem, 3vw + 0.8rem, 2.8rem);
    font-weight: 700;
}

.stats-section .stat-label {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .8);
}

/* ---------- Team Section (About Page) ---------- */
.team-section {
    background: var(--rt-light);
}

.team-card {
    background: var(--rt-white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    transition: var(--rt-transition);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rt-shadow);
}

.team-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid var(--rt-gold);
}

.team-card h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: .25rem;
}

/* ---------- About CTA Section ---------- */
.about-cta-section {
    background: linear-gradient(135deg, var(--rt-dark) 0%, #1a3a2a 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.about-cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw + 0.8rem, 2.5rem);
    color: #fff;
}

.about-cta-section p {
    max-width: 600px;
    margin: 1rem auto 1.5rem;
}

/* ---------- Why Card Icon Variant (About Page) ---------- */
.why-card .icon-wrap-plain {
    font-size: 3rem;
    color: var(--rt-gold);
    margin-bottom: 22px;
    display: block;
    transition: var(--rt-transition);
}

.why-card:hover .icon-wrap-plain {
    color: var(--rt-dark);
    transform: scale(1.1);
}

/* ---------- WhatsApp Button ---------- */
.btn-whatsapp {
    background: var(--rt-green);
    color: #fff;
    font-weight: 600;
    border: none;
    transition: var(--rt-transition);
}

.btn-whatsapp:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(37, 211, 102, .4);
}

/* ---------- FAQ CTA Box ---------- */
.faq-cta-box {
    background: var(--rt-light);
    border-radius: 1rem;
    padding: 40px 30px;
}

/* ---------- Tour Badges & Price ---------- */
.tour-badge {
    background: var(--rt-body-bg) !important;
    color: var(--rt-dark) !important;
    border: 1px solid var(--rt-border) !important;
    padding: .45rem .9rem;
    border-radius: 6px;
    font-size: .88rem;
    font-weight: 500;
}

.tour-badge i {
    color: var(--rt-gold);
}

.price-total {
    font-size: 1.2rem;
    color: var(--rt-gold);
    font-weight: 700;
}

/* ---------- Contact Info Text ---------- */
.contact-info-box p.info-text {
    font-size: .9rem;
    margin-bottom: .5rem;
}

/* ---------- Testimonial Carousel ---------- */
.testimonial-wrapper {
    position: relative;
    padding: 0 52px;
}

.testimonial-clip {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform .5s ease;
}

.testimonial-track .testimonial-slide {
    min-width: 100%;
    padding: 0 12px;
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--rt-gold);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: var(--rt-transition);
}

.testi-dot.active {
    background: var(--rt-gold);
}

.testi-prev,
.testi-next {
    position: absolute;
    top: calc(50% - 19px);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--rt-white);
    border: 2px solid var(--rt-gold);
    color: var(--rt-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--rt-transition);
    z-index: 10;
}

.testi-prev {
    left: 4px;
    z-index: 20;
}

.testi-next {
    right: 4px;
    z-index: 20;
}

.testi-prev:hover,
.testi-next:hover {
    background: var(--rt-gold);
    color: var(--rt-dark);
}

@media (max-width: 767px) {

    .testi-prev,
    .testi-next {
        display: none;
    }
}

@media (min-width: 768px) {
    .testimonial-track .testimonial-slide {
        min-width: 50%;
    }
}

@media (min-width: 992px) {
    .testimonial-track .testimonial-slide {
        min-width: 33.333%;
    }
}

/* ---------- XS Breakpoint (max-width: 575px) ---------- */
@media (max-width: 575px) {
    .hero-carousel .carousel-item {
        height: 55vh;
        min-height: 280px;
    }

    .hero-carousel .carousel-caption p {
        font-size: .85rem;
        margin-bottom: 16px;
    }

    .hero-carousel .carousel-caption .btn {
        padding: 8px 18px;
        font-size: .8rem;
    }

    .intro-section .intro-img {
        height: 240px;
    }

    .accommodation-section .accom-img {
        height: 220px;
    }

    .package-card .card-img-top {
        height: 180px;
    }

    .tour-detail .tour-gallery img {
        height: 240px;
    }

    .blog-card .card-img-top {
        height: 180px;
    }

    .why-card {
        padding: 28px 20px;
    }

    .page-banner {
        height: 170px;
    }

    .banner-slider {
        height: 170px;
    }

    .banner-slide-img {
        height: 170px;
    }

    .booking-sidebar {
        padding: 20px 16px;
    }
}