/* ======================================================
   BAUNDULE CUSTOM UI
   Professional Rebuild
====================================================== */

@import url('branding.css');

/* ======================================================
   1. GLOBAL
====================================================== */
html {
    scroll-behavior: smooth;
}

* {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

/* ======================================================
   BAUNDULE NAVBAR SYSTEM (FINAL PRODUCTION READY)
====================================================== */

/* ================= Z-INDEX SYSTEM ================= */
.site-header { z-index: 1000; }
.offcanvas-backdrop { z-index: 1990 !important; }
.baundule-offcanvas { z-index: 2000 !important; }


/* ======================================================
   HEADER
====================================================== */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    transition: all 0.35s ease;
}

.site-header.is-scrolled {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    padding: 4px 0;
}


/* ======================================================
   NAVBAR
====================================================== */
.modern-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
}


/* ======================================================
   LOGO
====================================================== */
.logo-image {
    height: 70px;
    transition: all 0.3s ease;
}

.logo-dark { display: none !important; }

.site-header.is-scrolled .logo-light { display: none !important; }

.site-header.is-scrolled .logo-dark {
    display: block !important;
    height: 58px;
}


/* ======================================================
   NAV LINKS
====================================================== */
.nav-pill-group {
    display: flex;
    align-items: center;
    gap: 26px;
}

.modern-nav-link {
    position: relative;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 16px !important;
    color: rgba(255,255,255,0.88);
    transition: all 0.25s ease;
    text-decoration: none;
}

.site-header.is-scrolled .modern-nav-link {
    color: #1a1a1a;
}

/* HOVER */
.modern-nav-link:hover {
    color: var(--bs-primary);
}

/* ACTIVE */
.modern-nav-link.active {
    color: var(--bs-primary) !important;
}

/* UNDERLINE */
.modern-nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--bs-primary);
    transform: translateX(-50%);
    transition: 0.3s;
    opacity: 0;
}

.modern-nav-link:hover::after,
.modern-nav-link.active::after {
    width: 40%;
    opacity: 1;
}


/* ======================================================
   TOGGLER
====================================================== */
.custom-toggler {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    border: none;
}

.toggler-line {
    width: 18px;
    height: 2px;
    background: #fff;
}

.site-header.is-scrolled .toggler-line {
    background: #111;
}


/* ======================================================
   MEGA MENU (JS + HOVER HYBRID)
====================================================== */

.mega-dropdown {
    position: relative;
}

/* PANEL */
.mega-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(12px) scale(0.98);

    width: min(1120px, calc(100vw - 32px));
    padding: 20px;

    border-radius: 22px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(14px);

    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.06);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    z-index: 1100;

    transition: 
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}

/* SHOW (IMPORTANT FIX) */
.mega-dropdown:hover > .mega-menu,
.mega-dropdown.open > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
}


/* GRID */
.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


/* CARD */
.mega-item {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.mega-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(0,0,0,0.10);
    border-color: rgba(245,196,0,0.3);
}

/* IMAGE */
.mega-item img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.mega-item:hover img {
    transform: scale(1.05);
}

/* OVERLAY */
.mega-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.05));
}

/* TEXT */
.mega-item span {
    position: absolute;
    bottom: 34px;
    left: 14px;
    right: 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    z-index: 2;
}

.mega-item small {
    position: absolute;
    bottom: 12px;
    left: 14px;
    right: 14px;
    font-size: 12px;
    color: rgba(255,255,255,0.9);
    z-index: 2;
}

/* EMPTY */
.mega-empty {
    padding: 30px;
    border-radius: 16px;
    background: #faf7ef;
    border: 1px dashed rgba(0,0,0,0.1);
    text-align: center;
}


/* ======================================================
   OFFCANVAS
====================================================== */

.baundule-offcanvas {
    width: 380px !important;
    background: linear-gradient(180deg,#fff,#faf7ef);
    box-shadow: -20px 0 60px rgba(0,0,0,0.15);
}

/* HEADER */
.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
}

.offcanvas-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.offcanvas-brand img {
    height: 42px;
}

/* CLOSE */
.offcanvas .btn-close {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
    background-image: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offcanvas .btn-close::before {
    content: "✕";
    font-size: 14px;
}

/* NAV */
.offcanvas-nav-list .nav-link {
    font-size: 17px;
    font-weight: 600;
    padding: 14px;
    border-radius: 12px;
    color: #111;
    transition: 0.25s;
}

.offcanvas-nav-list .nav-link:hover {
    background: rgba(245,196,0,0.12);
    transform: translateX(6px);
}

/* USER */
.offcanvas-user {
    padding: 12px;
    border-radius: 12px;
    background: rgba(0,0,0,0.04);
}


/* ======================================================
   DISABLE HEADER INTERACTION WHEN OFFCANVAS OPEN
====================================================== */
body.offcanvas-open .site-header {
    pointer-events: none;
}


/* ======================================================
   RESPONSIVE
====================================================== */

/* TABLET */
@media (max-width: 991px) {

    .nav-pill-group { display: none; }

    .logo-image { height: 48px; }

    .mega-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mega-item img {
        height: 160px;
    }
}

/* MOBILE */
@media (max-width: 575px) {

    .baundule-offcanvas {
        width: 100% !important;
    }

    .mega-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        margin-top: 10px;
    }

    .mega-dropdown.open .mega-menu {
        display: block;
    }

    .mega-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mega-item img {
        height: 180px;
    }
}


/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    .mega-menu,
    .mega-item,
    .mega-item img {
        transition: none !important;
    }
}
/* ======================================================
   5. HERO
====================================================== */
.hero-section{
    position:relative;
    min-height:100vh;
    overflow:hidden;
    background:#050505;
}

.hero-video-layer{
    position:absolute;
    inset:0;
    z-index:1;
}

.hero-fallback-image,
.hero-bg-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-fallback-image{
    z-index:1;
    opacity:1;
    transform:scale(1.04);
    filter:brightness(.72) saturate(1.08) contrast(1.04);
    transition:opacity .9s ease, transform 6s ease;
}

.hero-bg-video{
    z-index:2;
    opacity:0;
    transition:opacity 1.2s ease;
    pointer-events:none;
    object-position:center center;
}

.hero-section.is-ready .hero-bg-video{
    opacity:1;
}

.hero-section.is-ready .hero-fallback-image{
    opacity:0;
    visibility:hidden;
}

.hero-top-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:180px;
    z-index:3;
    pointer-events:none;
    background:linear-gradient(
        to bottom,
        rgba(0,0,0,.82) 0%,
        rgba(0,0,0,.58) 34%,
        rgba(0,0,0,.22) 68%,
        rgba(0,0,0,0) 100%
    );
}

@media (max-width: 991px){
    .hero-top-overlay{
        height:140px;
        background:linear-gradient(
            to bottom,
            rgba(0,0,0,.86) 0%,
            rgba(0,0,0,.62) 38%,
            rgba(0,0,0,.20) 72%,
            rgba(0,0,0,0) 100%
        );
    }
}

@media (prefers-reduced-motion: reduce){
    .hero-bg-video{
        display:none;
    }

    .hero-fallback-image{
        opacity:1 !important;
        visibility:visible !important;
        transform:none;
    }
}

/* ======================================================
   6. CONTENT COMPONENTS
====================================================== */
/* ======================================================
   BAUNDULE EXPERIENCES SECTION
   Brand matched to enterprise design system
====================================================== */

.experiences-section {
    position: relative;
    padding: var(--space-24) 0;
    background: var(--color-bg);
}

.experiences-wrap {
    position: relative;
}

.experiences-head {
    margin-bottom: var(--space-12);
}

.experiences-title {
    font-size: clamp(2rem, 1.4rem + 2vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-4);
    color: var(--bs-secondary);
}

.experiences-subtitle {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    max-width: 58ch;
}

.experiences-intro-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.mini-label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.experience-feature-card,
.experience-small-card,
.experience-wide-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border) !important;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition-smooth),
        box-shadow var(--transition-smooth),
        border-color var(--transition-fast);
}

.experience-feature-card:hover,
.experience-small-card:hover,
.experience-wide-card:hover {
    border-color: rgba(245,196,0,0.24) !important;
}

.experience-feature-media,
.experience-small-media {
    position: relative;
    overflow: hidden;
    background: #e9e1d2;
}

.experience-feature-media {
    aspect-ratio: 16 / 11;
}

.experience-small-media {
    aspect-ratio: 4 / 3;
}

.experience-feature-media img,
.experience-small-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 900ms cubic-bezier(.22,1,.36,1), filter 400ms ease;
}

.experience-feature-card:hover .experience-feature-media img,
.experience-small-card:hover .experience-small-media img {
    transform: scale(1.05);
    filter: saturate(1.04);
}

.experience-feature-body {
    padding: var(--space-8);
}

.experience-small-body {
    padding: var(--space-6);
}

.experience-feature-body h3,
.experience-small-body h4,
.experience-wide-card h4 {
    font-family: var(--font-display);
    color: var(--bs-secondary);
    line-height: 1.15;
    margin-bottom: 12px;
}

.experience-feature-body h3 {
    font-size: clamp(1.5rem, 1.1rem + 0.8vw, 2.2rem);
}

.experience-small-body h4,
.experience-wide-card h4 {
    font-size: clamp(1.15rem, 1rem + 0.35vw, 1.5rem);
}

.experience-feature-body p,
.experience-small-body p,
.experience-wide-card p {
    color: var(--color-text-muted);
    margin-bottom: 0;
    max-width: 100%;
}

.experience-tag {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    background: var(--color-primary-soft);
    color: #7a5d00;
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.experience-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: var(--space-6);
}

.experience-pills span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: var(--radius-full);
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    color: var(--bs-secondary);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.experience-wide-card {
    padding: var(--space-8);
}

.experience-points {
    display: grid;
    gap: 14px;
}

.point-line {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-divider);
}

.point-line:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.point-line strong {
    min-width: 38px;
    color: var(--bs-primary);
    font-size: var(--text-sm);
    font-weight: 800;
    line-height: 1.2;
}

.point-line span {
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* subtle polish */
.experience-feature-card::after,
.experience-small-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0,0,0,0.04), transparent 35%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.experience-feature-card:hover::after,
.experience-small-card:hover::after {
    opacity: 1;
}

/* mobile */
@media (max-width: 991px) {
    .experiences-section {
        padding: var(--space-16) 0;
    }

    .experiences-head {
        margin-bottom: var(--space-8);
    }

    .experience-feature-body,
    .experience-wide-card {
        padding: var(--space-6);
    }
}

@media (max-width: 575px) {
    .experiences-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .experiences-intro-card,
    .experience-small-body,
    .experience-feature-body,
    .experience-wide-card {
        padding: var(--space-4);
    }

    .experience-pills {
        gap: 8px;
    }

    .experience-pills span,
    .experience-tag {
        letter-spacing: 0.08em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .experience-feature-card,
    .experience-small-card,
    .experience-wide-card,
    .experience-feature-media img,
    .experience-small-media img {
        transition: none !important;
        transform: none !important;
    }
}


/* ======================================================
    PREMIUM TOUR CAROUSEL - FINAL FULL MASTER
====================================================== */

.tour-packages-section {
    position: relative;
    padding: 110px 0;
    background: #111 url('../img/webs/hero-fallback.webp') center / cover no-repeat fixed;
    overflow: hidden;
}

/* DEEP DARK OVERLAY FOR TEXT VISIBILITY */
.tour-packages-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.85) 0%,   /* Dark top for white heading */
        rgba(0, 0, 0, 0.75) 50%, 
        rgba(0, 0, 0, 0.95) 100%   /* Deep dark bottom */
    );
    z-index: 0;
}

.tour-packages-section > * {
    position: relative;
    z-index: 2;
}

/* ================= HEADING ================= */
.tour-packages-section .section-heading {
    max-width: 760px;
    margin: 0 auto 64px;
    text-align: center;
}

.tour-packages-section .section-kicker {
    display: inline-block;
    color: #b88917;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.tour-packages-section .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 2rem + 2vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff; /* Changed to white for dark overlay */
    margin-bottom: 14px;
}

.tour-packages-section .section-subtitle {
    max-width: 620px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8); /* Changed to light grey for dark overlay */
}

/* ================= NAVIGATION (BOTTOM CENTERED) ================= */
.carousel-footer-controls {
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 15px;
    margin-top: 50px;
}

.ctrl-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctrl-btn:hover {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #000;
    transform: translateY(-2px);
}

/* ================= VIEWPORT & TRACK ================= */
.tour-viewport {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0 40px 0;
    margin: 0 -10px;
}

.tour-viewport::-webkit-scrollbar {
    display: none;
}

.tour-track {
    display: flex;
    gap: 28px;
    padding: 0 10px;
}

/* ================= PREMIUM CARD DESIGN (PERMANENT ELEVATION) ================= */
.tour-card {
    flex: 0 0 380px;
    max-width: 85vw;
    height: auto;
}

.tour-card-inner {
    background: var(--bs-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-smooth);
    border: 1px solid var(--color-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    
    /* HOVER STYLES ARE NOW DEFAULT */
    transform: translateY(-10px); 
    box-shadow: var(--shadow-lg);
    border-bottom: 4px solid var(--bs-primary);
}

/* SUBTLE EXTRA LIFT ON HOVER (Optional) */
.tour-card-inner:hover {
    transform: translateY(-15px); /* Moves up slightly more on hover */
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.tour-img-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #eee;
}

.tour-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* SCALE IS NOW DEFAULT */
    transform: scale(1.08); 
}

/* OPTIONAL: ZOOM BACK IN ON HOVER */
.tour-card:hover .tour-img-wrapper img {
    transform: scale(1.15);
}

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--bs-primary);
    color: var(--bs-secondary);
    padding: 5px 12px;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* CONTENT & TYPOGRAPHY */
.tour-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.location-tag {
    font-family: var(--font-body);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-faint);
    margin-bottom: 10px;
    display: block;
}

.tour-title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: var(--font-display);
    color: var(--bs-secondary);
}

/* FOOTER & PRICING */
.tour-footer {
    border-top: 1px solid var(--color-divider);
    padding-top: 20px;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.duration {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.price-label {
    display: block;
    font-size: 12px;
    color: var(--color-text-faint);
}

.price-value {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--bs-secondary);
}

/* CTA LINK */
.tour-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: var(--bs-secondary);
    font-size: 15px;
    transition: gap 0.3s ease;
}

.tour-link span {
    border-bottom: 1px solid transparent;
}

.tour-card:hover .tour-link {
    color: var(--bs-primary);
    gap: 12px;
}

.tour-card:hover .tour-link span {
    border-color: var(--bs-primary);
}

/* ================= MOBILE RESPONSIVENESS ================= */
@media (max-width: 991px) {
    .tour-packages-section .section-heading {
        flex-direction: column;
    }
    .carousel-footer-controls {
        display: none; /* Swipe is better on mobile */
    }
    .tour-card {
        flex: 0 0 300px;
    }
}

/* ================= EXPERIENCE SECTION REFINEMENT ================= */
.experience-section {
    padding: 120px 0;
    background-color: #ffffff !important;
    overflow: hidden;
}

/* BRANDING */
.experience-section .section-kicker {
    display: block;
    color: #b88917;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 15px;
}

.experience-section .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.1;
    color: #1a1a1a;
    font-weight: 700;
}

/* INTRO TEXT */
.experience-intro {
    padding-left: 30px;
    border-left: 2px solid #b88917;
}

.intro-text {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    max-width: 480px;
}

/* VIDEO UI */
.video-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #f0f0f0;
}

.video-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-trigger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: #ffffff;
    color: #b88917;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.play-trigger:hover {
    background: #b88917;
    color: #ffffff;
    transform: translate(-50%, -50%) scale(1.15);
}

/* TESTIMONIAL ITEMS */
.testimonial-item {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f0f0f0;
}

.testimonial-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.star-rating {
    margin-bottom: 15px;
}

.star-rating i {
    color: #b88917;
    font-size: 11px;
    margin-right: 3px;
}

.testimonial-item .quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 15px;
}

.testimonial-item .review {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.author {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author strong {
    color: #1a1a1a;
    font-weight: 800;
}

.author .location {
    color: #aaa;
}

/* UTILITY */
.shadow-premium {
    box-shadow: 0 40px 80px rgba(0,0,0,0.07);
}

/* MOBILE ADAPTATION */
@media (max-width: 991px) {
    .experience-intro {
        padding-left: 0;
        border-left: none;
        margin-top: 30px;
    }
}

/* ======================================================
   BAUNDULE CONSULTATION SECTION
====================================================== */
.consultation-section {
    position: relative;
}

.consultation-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(244,239,228,0.92));
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 24px 60px rgba(0,0,0,0.10);
}

.consultation-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top left, rgba(245,196,0,0.10), transparent 28%),
        radial-gradient(circle at bottom right, rgba(0,0,0,0.05), transparent 24%);
}

.consultation-info {
    position: relative;
    height: 100%;
    min-height: 100%;
    padding: 56px 42px;
    background:
        linear-gradient(180deg, #0b0b0b 0%, #111111 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.consultation-kicker {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 10px 16px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: rgba(245,196,0,0.14);
    border: 1px solid rgba(245,196,0,0.20);
    color: #f5c400;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.consultation-title {
    margin: 0 0 18px;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(2rem, 1.5rem + 1.8vw, 3.4rem);
    line-height: 1.05;
    max-width: 11ch;
}

.consultation-text {
    margin: 0 0 34px;
    color: rgba(255,255,255,0.74);
    max-width: 42ch;
    font-size: var(--text-sm);
    line-height: 1.8;
}

.consultation-points {
    display: grid;
    gap: 18px;
}

.consultation-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.consultation-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(245,196,0,0.10);
    color: #f5c400;
    box-shadow: inset 0 0 0 1px rgba(245,196,0,0.10);
}

.consultation-point-copy span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255,255,255,0.62);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.consultation-point-copy a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
}

.consultation-point-copy p {
    margin: 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    max-width: 100%;
}

.consultation-form-wrap {
    position: relative;
    height: 100%;
    padding: 56px 42px;
    background: rgba(255,255,255,0.88);
}

.consultation-form-head {
    margin-bottom: 28px;
}

.mini-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--bs-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.consultation-form-head h3 {
    margin-bottom: 10px;
    color: var(--bs-secondary);
    font-size: clamp(1.4rem, 1.15rem + .8vw, 2rem);
    line-height: 1.15;
}

.consultation-form-head p {
    margin: 0;
    max-width: 56ch;
    color: var(--color-text-muted);
    font-size: var(--text-sm);
}

.consultation-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--bs-secondary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.consultation-control {
    width: 100%;
    min-height: 58px;
    padding: 16px 18px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    background: #f8f4ea;
    color: var(--color-text);
    font-size: 15px;
    line-height: 1.5;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.consultation-control::placeholder {
    color: #8e8a81;
}

.consultation-control:focus {
    outline: none;
    border-color: rgba(245,196,0,0.55);
    background: #fffdf8;
    box-shadow: 0 0 0 4px rgba(245,196,0,0.12);
}

.consultation-textarea {
    min-height: 150px;
    resize: vertical;
}

.consultation-submit {
    width: 100%;
    min-height: 58px;
    border: none;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.consultation-submit:hover {
    background: var(--bs-primary);
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(245,196,0,0.20);
}

.consultation-note {
    color: var(--color-text-muted);
    font-size: 13px;
    line-height: 1.7;
    max-width: 100%;
}

@media (max-width: 991px) {
    .consultation-info,
    .consultation-form-wrap {
        padding: 40px 28px;
    }

    .consultation-title {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .consultation-shell {
        border-radius: 22px;
    }

    .consultation-info,
    .consultation-form-wrap {
        padding: 28px 20px;
    }

    .consultation-point {
        padding: 16px;
    }

    .consultation-control,
    .consultation-submit {
        min-height: 54px;
    }
}

/* ======================================================
   7. FOOTER (FINAL CLEAN VERSION)
====================================================== */
.premium-footer {
    padding: 80px 0 30px;
    background: #0d1117 url('../img/webs/footer-world-map.png') no-repeat center;
    background-size: cover;
    color: #fff;
    font-family: 'Inter', sans-serif;
    position: relative;
}

/* OVERLAY (BALANCED) */
.premium-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.premium-footer .container {
    position: relative;
    z-index: 2;
}

/* LOGO */
.footer-logo {
    height: 62px;
    margin-bottom: 18px;
}

/* GRID */
.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 45px;
}

/* TAGLINE */
.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    margin-bottom: 18px;
    max-width: 350px;
}

/* ================= TRUST BADGE ================= */
/* TRUST BADGE - STACKED PROFESSIONAL */
.footer-trust {
    display: inline-flex;          /* keeps width tight to content */
    flex-direction: column;        /* stack vertically */
    align-items: flex-start;       /* left aligned */
    gap: 6px;
    margin: 16px 0 10px;
}

/* GOOGLE LOGO */
.google-logo {
    height: 46px;
    width: auto;
    display: block;
}

/* TEXT LINE */
.trust-inline {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    font-weight: 400;
    line-height: 1.2;
}

/* HIGHLIGHT RATING */
.trust-inline strong {
    color: #f4c400;
    font-weight: 600;
}
/* ================= LINKS ================= */
.footer-links h6,
.footer-contact h6 {
    color: #f4c400;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.2px;
}

/* LINK BASE */
.footer-links a {
    position: relative;
    display: block;
    margin-bottom: 12px;
    padding-left: 22px; /* space for arrow */
    font-size: 14px;
    text-decoration: none;
    color: rgba(255,255,255,0.65);
    transition: all 0.3s ease;
}

/* DOUBLE ARROW */
.footer-links a::before {
    content: "››"; /* double arrow */
    position: absolute;
    left: 0;
    top: 0;
    color: #f4c400;
    font-size: 13px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.footer-links a:hover {
    color: #fff;
    transform: translateX(6px);
}

/* ARROW ANIMATION */
.footer-links a:hover::before {
    transform: translateX(3px);
    opacity: 1;
}

/* ================= CONTACT ================= */
.footer-contact p {
    font-size: 14px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
    display: flex;
    gap: 10px;
}

.footer-contact i {
    color: #f4c400;
    min-width: 18px;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
}

.footer-contact a:hover {
    color: #fff;
}

/* ================= BUTTON ================= */
.footer-btn {
    background: #f4c400;
    color: #111 !important;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.footer-btn:hover {
    background: #ffd84d;
    transform: translateY(-2px);
}

/* ================= SOCIAL ================= */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #f4c400;
    color: #111;
    transform: translateY(-3px);
}

/* ================= DIVIDER ================= */
.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 40px 0 20px;
}

/* ================= BOTTOM ================= */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    flex-wrap: wrap;
    gap: 10px;
}

.footer-legal {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
}

.footer-legal a:hover {
    color: #fff;
}

/* CREDIT */
.footer-credit {
    color: rgba(255,255,255,0.5);
}

.footer-credit a {
    color: #f4c400;
    text-decoration: none;
}

.footer-credit a:hover {
    text-decoration: underline;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .premium-footer {
        padding: 60px 0 25px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

/* ================= BACK TO TOP - VERTICAL EDITORIAL STYLE ================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px; /* Fixed width for vertical look */
    height: 56px; /* Taller height for stacking */
    background-color: #ffffff;
    color: #1a1a1a;
    border: 1px solid #e0e0e0;
    border-radius: 4px; /* Clean sharp corners for premium feel */
    display: flex;
    flex-direction: column; /* Stacks children vertically */
    align-items: center;
    justify-content: center;
    gap: 4px; /* Tight gap between icon and text */
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.back-to-top span {
    font-size: 10px; /* Smaller text for vertical layout */
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1;
}

.back-to-top i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* PREMIUM HOVER EFFECT */
.back-to-top:hover {
    background-color: #b88917; /* Brand Gold */
    color: #ffffff;
    border-color: #b88917;
    box-shadow: 0 12px 25px rgba(184, 137, 23, 0.25);
    transform: translateY(-5px);
}

.back-to-top:hover i {
    transform: translateY(-3px); /* Upward movement on hover */
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 56px;
    }
}

/* ================= TOUR DETAIL PAGE ================= */

.tour-detail-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: flex-end;
    padding: 180px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    isolation: isolate;
    overflow: hidden;
}

.tour-detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.42) 30%, rgba(0,0,0,0.76) 100%),
        linear-gradient(to right, rgba(0,0,0,0.28), rgba(0,0,0,0.08) 45%, rgba(0,0,0,0.28));
}

.tour-detail-hero .container {
    position: relative;
    z-index: 1;
}

.tour-detail-hero .badge-brand {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(245,196,0,0.92);
    color: #111 !important;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 18px;
    box-shadow: 0 10px 24px rgba(245,196,0,0.18);
}

.tour-detail-hero h1 {
    margin: 0 0 16px;
    max-width: 11ch;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 2rem + 3vw, 5.6rem);
    line-height: 0.98;
    font-weight: 600;
    text-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.tour-meta-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

.tour-meta-grid span {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.96);
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

/* ================= CONTENT AREA ================= */

.section {
    position: relative;
    padding: 70px 0;
    background: linear-gradient(to bottom, #f8f4ea 0%, #f6f1e7 100%);
}

/* itinerary block */
.itinerary-day {
    padding: 18px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.itinerary-day:first-child {
    border-top: 0;
    padding-top: 10px;
}

.itinerary-day strong {
    display: block;
    margin-bottom: 8px;
    color: #111;
    font-size: 1.05rem;
    font-weight: 700;
}

.itinerary-day p {
    margin: 0;
    color: #666;
    line-height: 1.75;
}

/* ================= SIDEBAR ================= */

.sticky-panel {
    position: sticky;
    top: 120px;
    padding: 30px !important;
}

.sticky-panel h3 {
    margin-bottom: 18px;
    font-size: clamp(1.6rem, 1.2rem + .8vw, 2.2rem);
}

.sticky-panel .btn-primary {
    min-height: 54px;
    border-radius: 999px;
    background: var(--bs-primary);
    color: #111;
    border: none;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 12px 28px rgba(245,196,0,0.22);
}

.sticky-panel .btn-primary:hover {
    background: #e0b400;
    color: #111;
    transform: translateY(-2px);
}

.tour-sidebar-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-highlights-card p,
.booking-meta p {
    margin-bottom: 10px;
}

.gallery-card {
    overflow: hidden;
}

.gallery-count {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(245,196,0,0.12);
    color: #111;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tour-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.tour-gallery-item {
    position: relative;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    background: #ddd;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.tour-gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.18), rgba(0,0,0,0.02));
    opacity: 0;
    transition: opacity .3s ease;
}

.tour-gallery-item:hover::after {
    opacity: 1;
}

.tour-gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.tour-gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .tour-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .tour-gallery-grid {
        grid-template-columns: 1fr;
    }

    .tour-gallery-item img {
        height: 220px;
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .tour-detail-hero {
        min-height: 68vh;
        padding: 150px 0 60px;
    }

    .tour-detail-hero h1 {
        max-width: 100%;
        font-size: clamp(2.4rem, 1.8rem + 3vw, 4rem);
    }

    .sticky-panel {
        position: relative;
        top: auto;
    }
}

@media (max-width: 575px) {
    .tour-detail-hero {
        min-height: 62vh;
        padding: 130px 0 44px;
    }

    .tour-meta-grid {
        gap: 10px;
    }

    .tour-meta-grid span {
        width: 100%;
        justify-content: center;
    }

}