@import url("https://fonts.googleapis.com/css2?family=Reddit+Sans:wght@400;500;600&family=Rhodium+Libre:wght@400&family=Parisienne:wght@400&family=Readex+Pro:wght@400&family=Lato:wght@400&display=swap");

:root {
    /* Colors */
    --color-primary: #010101;
    --color-secondary: #3d3d3d;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray-light: #d9d9d9;
    --color-gray: #bfbfbf;
    --color-gray-dark: #5b5b5b;
    --color-muted: #797979;
    --color-accent: #4a90e2;

    /* Typography */
    --font-rhodium: "Rhodium Libre", Helvetica, serif;
    --font-reddit: "Reddit Sans", Helvetica, sans-serif;
    --font-parisienne: "Parisienne", Helvetica, cursive;
    --font-lato: "Lato", Helvetica, sans-serif;
    --font-readex: "Readex Pro", Helvetica, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: clip;
}

a {
    text-decoration: none;
}

button:focus-visible {
    outline: 2px solid #4a90e2 !important;
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---------- Mobile Hygiene & Overflow Fixes ---------- */
html,
body {
    overflow-x: clip;
    width: 100%;
    position: relative;
}

/* ============================================
   Desktop container scaling (1400px Figma design)
   ============================================ */
@media (min-width: 992px) {

    body>.banner-wrapper .container,
    body>header .container,
    body>nav .container,
    body>section .container,
    body>footer .container {
        max-width: 1400px !important;
        width: 100% !important;
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }
}

@media (min-width: 992px) and (max-width: 1400px) {

    body>.banner-wrapper,
    body>header,
    body>section,
    body>footer {
        zoom: 0.88;
        transform-origin: top center;
    }
}

@media (min-width: 992px) and (max-width: 1300px) {

    body>.banner-wrapper,
    body>header,
    body>section,
    body>footer {
        zoom: 0.82;
    }
}



/* ============================================================
   Silver Fern Luxury Tours — Custom Styles (Bootstrap 5 base)
   ============================================================ */

/* ---------- Typography ---------- */
.font-rhodium {
    font-family: var(--font-rhodium);
}

.font-reddit {
    font-family: var(--font-reddit);
}

.font-parisienne {
    font-family: var(--font-parisienne);
}

.font-lato {
    font-family: var(--font-lato);
}

.font-readex {
    font-family: var(--font-readex);
}

/* ---------- Colours ---------- */
.color-muted {
    color: var(--color-gray-dark);
}

.color-light {
    color: var(--color-muted);
}

/* ---------- Section labels ---------- */
.section-label {
    font-family: var(--font-reddit);
    font-weight: 600;
    font-size: 18px;
    color: var(--color-gray-dark);
    letter-spacing: 0.8px;
}

/* ---------- Section headings ---------- */
.section-heading {
    font-family: var(--font-rhodium);
    font-weight: 400;
    font-size: 45px;
    color: var(--color-black);
    line-height: 1.15;
}

.section-heading-white {
    color: var(--color-white);
}

/* ---------- Leaf / ornament image beside headings ---------- */
.heading-ornament {
    width: 99px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
    /* Changes the image color to black (rgba(1,1,1,1)) */
    filter: brightness(0);
}

/* White version for dark sections */
.section-heading-white+.heading-ornament {
    filter: brightness(0) invert(1);
}

/* ==============================
   NAVBAR
   ============================== */
.site-nav {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-top: 14px;
    padding-bottom: 14px;
}

.site-nav .navbar-brand img {
    width: 227px;
    height: 153px;
    object-fit: cover;
}

.site-nav .nav-link {
    font-family: var(--font-reddit);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-white) !important;
    padding-left: 12px;
    padding-right: 12px;
    transition: all 0.3s ease;
    opacity: 0.85;
}

.site-nav .nav-link:hover,
.site-nav .current-menu-item>.nav-link {
    opacity: 1;
    color: var(--color-white) !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.site-nav .nav-item {
    display: flex;
    align-items: center;
    position: relative;
}

/* --- Dropdown / Sub-menu --- */
.site-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px 0;
    margin-top: 15px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.site-nav .sub-menu .nav-item {
    display: block;
    width: 100%;
}

.site-nav .sub-menu .nav-link {
    padding: 10px 25px !important;
    font-size: 14px;
    display: block;
    width: 100%;
}

.site-nav .sub-menu .nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Show on hover (Desktop) */
@media (min-width: 992px) {
    .site-nav .menu-item-has-children:hover>.sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-nav .menu-item-has-children::after {
        content: '▾';
        font-size: 16px;
        margin-left: 8px;
        color: var(--color-white);
        opacity: 0.6;
        transition: transform 0.3s ease;
        display: inline-block;
        line-height: 1;
    }

    .site-nav .menu-item-has-children:hover::after {
        transform: rotate(180deg);
        opacity: 1;
    }


    .site-nav .nav-item:not(:last-child)::after {
        content: "|";
        color: var(--color-white);
        opacity: 0.4;
        font-weight: 300;
        user-select: none;
        pointer-events: none;
        margin-left: 4px;
    }
}


.btn-booknow {
    font-family: var(--font-reddit);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1.76px;
    color: var(--color-black) !important;
    background: var(--color-gray-light);
    border: none;
    padding: 15px 50px 15px 50px;
    box-shadow: 0 4px 320px rgba(0, 0, 0, .25);
    white-space: nowrap;
}

.btn-booknow:hover {
    background: var(--color-gray);
}

/* --- Custom Hamburger --- */
.navbar-toggler {
    padding: 8px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-white);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hamburger Animation to X */
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ==============================
   HERO
   ============================== */
.banner {
    position: relative;
    min-height: 770px;
    background-color: var(--color-primary);
    overflow: hidden;
    padding-top: 180px;
    padding-bottom: 60px;
}

.banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(106.6deg, #000000 26.11%, rgba(102, 102, 102, 0) 99.41%);
    z-index: 1;
    pointer-events: none;
}

.banner .banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .85;
}

/* --- Banner right: pill images + cloud --- */
.banner-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-cloud {
    position: absolute;
    height: auto;
    z-index: 20;
    pointer-events: none;
    opacity: 1;
}

.banner-cloud--top {
    top: -30px;
    left: 45%;
    transform: translateX(-50%);
    width: 200px;
}

.banner-cloud--left {
    top: 50%;
    left: -18px;
    transform: translateY(-50%);
    width: 150px;
    z-index: 21;
    rotate: -88deg;
}

.banner-cloud--bottom {
    bottom: -19px;
    left: 30%;
    transform: translateX(-50%);
    width: 180px;
    rotate: 180deg;
}


.banner-pills {
    display: flex;
    align-items: flex-end;
    gap: 18px;
    position: relative;
    z-index: 3;
}

.banner-pill {
    border: 7px solid #fff;
    border-radius: 100px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.banner-pill--left {
    width: 180px;
    height: 320px;
}

.banner-pill--center {
    width: 200px;
    height: 400px;
    margin-bottom: 40px;
}

.banner-pill--right {
    width: 180px;
    height: 320px;
}

.banner .banner-content {
    position: relative;
    z-index: 2;
}

.banner .banner-content .row {
    align-items: center;
}

.banner-luxury-text {
    font-family: var(--font-parisienne);
    font-weight: 400;
    font-size: 70px;
    letter-spacing: 0.96px;
    background: linear-gradient(129deg, var(--color-white) 0%, var(--color-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    display: inline-block;
    margin-left: 16px;
    padding-bottom: 15px;
    vertical-align: middle;
}

.banner h1 {
    font-family: var(--font-rhodium);
    font-weight: 400;
    font-size: 45px;
    color: var(--color-white);
    line-height: 1.2;
}

.banner .banner-sub {
    font-family: var(--font-reddit);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-white);
    line-height: 2.34;
    max-width: 486px;
}

.btn-explore {
    font-family: var(--font-reddit);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1.76px;
    color: var(--color-white) !important;
    background: linear-gradient(90deg, var(--color-muted) 0%, var(--color-secondary) 100%);
    border: none;
    padding: 11.20px 32px;
    box-shadow: 0 4px 320px rgba(0, 0, 0, .25);
}

.btn-explore:hover {
    background: linear-gradient(90deg, #6a6a6a 0%, #2a2a2a 100%);
}

/* --- Car overlapping hero ↔ about --- */
.banner-car-wrap {
    position: relative;
    height: 0;
    z-index: 10;
    pointer-events: none;
}

.banner-car {
    position: absolute;
    right: -23px;
    top: 0;
    width: 696px;
    height: 658px;
    object-fit: contain;
    transform: translateY(-65%) scaleX(-1) translateX(100vw);
    /* Start completely out of screen */
    opacity: 1;

}

@media (max-width: 1199px) {
    .banner-car {
        width: 500px;
        height: auto;
    }
}

@media (max-width: 991px) {
    .banner-car {
        width: 450px;
        height: auto;
        right: -20px;
    }
}

@media (max-width: 767px) {
    .banner-car {
        width: 360px;
        height: auto;
        right: -15px;
    }
}

@media (max-width: 480px) {
    .banner-car {
        width: 300px;
        height: auto;
        right: -10px;
    }
}

/* ==============================
   ABOUT
   ============================== */
.about {
    position: relative;
    overflow: hidden;
    padding-top: 5.5rem !important;
}


.about-deco-right {
    position: absolute;
    right: -405px;
    top: -80px;
    width: 788px;
    height: 392px;
    opacity: 0.39;
    z-index: 0;
    pointer-events: none;
    object-fit: contain;
}

.about-deco-below {
    position: absolute;
    right: 18%;
    bottom: -70px;
    width: 323px;
    height: 274px;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
    transform: scaleX(-1) rotate(151.84deg);
    object-fit: contain;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about .about-img-wrap {
    position: relative;
}

.about .about-img-main {
    width: 100%;
    height: 523px;
    object-fit: cover;
    border-radius: 4px;
}

.about .about-deco {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 280px;
    height: auto;
    pointer-events: none;
}

.about-tagline {
    font-family: var(--font-reddit);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.8px;
    color: var(--color-gray-dark);
}

.about-body p {
    font-family: var(--font-reddit);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-muted);
    line-height: 2.01;
}

.btn-book-with-us {
    font-family: var(--font-reddit);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1.76px;
    color: var(--color-white) !important;
    background: linear-gradient(90deg, var(--color-muted) 0%, var(--color-secondary) 100%);
    border: none;
    padding: 12px 40px;
    box-shadow: 0 4px 320px rgba(0, 0, 0, .25);
}

.btn-book-with-us:hover {
    background: linear-gradient(90deg, #6a6a6a 0%, #2a2a2a 100%);
}

/* ==============================
   SIGNATURE JOURNEYS
   ============================== */
.journeys {}

.journey-swiper {
    padding: 20px 0;
    margin: -20px 0;
}

.journey-nav-btn {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgba(26, 23, 21, 0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.journey-nav-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #1a1715;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.journey-nav-btn::after {
    content: none !important;
}

.journey-nav-btn svg {
    width: 20px;
    height: 20px;
    color: #1a1715;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.journey-nav-btn:hover svg {
    color: #fff;
}

.journey-nav-btn:hover::before {
    opacity: 1;
}

.journey-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px !important;
    position: static !important;
    width: 100% !important;
}

.journey-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(26, 23, 21, 0.2) !important;
    opacity: 1 !important;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none !important;
}

.journey-pagination .swiper-pagination-bullet-active {
    background: #c5a880 !important;
    width: 24px !important;
    border-radius: 4px !important;
}

.journey-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.journey-card img.journey-img {
    width: 100%;
    height: 428px;
    object-fit: cover;
    display: block;
}

.journey-card .journey-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(1, 1, 1, .86) 100%);
}

.journey-card .journey-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px 16px;
}

.journey-card h3 {
    font-family: var(--font-rhodium);
    font-weight: 400;
    font-size: 26px;
    color: var(--color-white);
    margin-bottom: 5.60px;
}

.journey-card p {
    font-family: var(--font-reddit);
    font-weight: 500;
    font-size: 16px;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.journey-pill-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}

.journey-card .journey-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 40px 40px 0 0;
    width: 131px;
    height: 17px;
    color: var(--color-black);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.journey-card:hover .journey-body {
    transform: translateY(-10px);
}

.journey-card:hover .journey-pill {
    height: 17px;
    background: #c5a059;
    color: #fff;
}

/* ==============================
   DESTINATIONS
   ============================== */
.destinations {

    background-color: var(--color-black);
    position: relative;
    overflow: hidden;
}

.destinations .dest-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .55;
}

.destinations .dest-content {
    position: relative;
    z-index: 2;
}

.destinations .dest-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 4px 4px 0 0;
}

/* destination carousel nav buttons */
.dest-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.dest-nav-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-white);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.dest-nav-btn svg {
    width: 20px;
    height: 20px;
    color: #fff;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.dest-nav-btn:hover svg {
    color: #c5a059;
}

.dest-nav-btn:hover::before {
    opacity: 1;
}

/* Custom CSS Arrow */
.dest-nav-btn::after {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.dest-nav-btn[aria-label*="Next"]::after {
    transform: rotate(45deg);
    margin-right: 4px;
}

.dest-nav-btn[aria-label*="Previous"]::after {
    transform: rotate(-135deg);
    margin-left: 4px;
}

.dest-nav-btn:hover::after {
    border-color: var(--color-black);
}

.dest-nav-btn[aria-label*="Next"]:hover::after {
    transform: rotate(45deg) translateX(2px);
}

.dest-nav-btn[aria-label*="Previous"]:hover::after {
    transform: rotate(-135deg) translateX(2px);
}

/* Hide original empty images */
.dest-nav-btn img {
    display: none;
}

/* destination card (package info panel) */
.dest-package-card {
    background: var(--color-black);
    border: 1px solid rgba(80, 80, 80, .78);
    border-radius: 4px;
    color: var(--color-white);
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.dest-card-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: 'Rhodium Libre', serif;
    font-size: 32px;
    color: #c5a880;
    line-height: 1;
    z-index: 2;
    opacity: 0.85;
}

.dest-package-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    color: #c5a880 !important;
    border: 1px solid #c5a880 !important;
    padding: 12px 28px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
}

.dest-package-btn:hover {
    background: #c5a880 !important;
    color: #1a1715 !important;
    border-color: #c5a880 !important;
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3) !important;
    transform: translateY(-2px) !important;
}

.dest-package-body {
    padding: 35px 30px;
}

.dest-package-card h3 {
    font-family: var(--font-rhodium);
    font-weight: 400;
    font-size: 32px;
    color: var(--color-white);
    margin-bottom: 8px;
}

.dest-package-card .pkg-nights {
    font-family: var(--font-reddit);
    font-weight: 500;
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.dest-package-card .pkg-divider {
    border-color: rgba(255, 255, 255, .1);
    margin: 18px 0;
    opacity: 1;
}

.dest-package-card .pkg-desc {
    font-family: var(--font-reddit);
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.6;
    margin-bottom: 30px;
    min-height: 52px;
    /* Ensure alignment if text varies */
}

.dest-package-card .pkg-price {
    font-family: var(--font-reddit);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, .8);
}

.pkg-amenity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.pkg-amenity img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.pkg-amenity span {
    font-family: var(--font-reddit);
    font-weight: 400;
    font-size: 14px;
    color: var(--color-white);
    text-align: center;
}

.btn-pkg-book {
    font-family: var(--font-reddit);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1.2px;
    color: var(--color-white) !important;
    background: linear-gradient(180deg, #707070 0%, #404040 100%);
    border: none;
    padding: 14px 40px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-pkg-book:hover {
    background: linear-gradient(180deg, #808080 0%, #505050 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ==============================
   WHY CHOOSE US
   ============================== */
.why-us {
    position: relative;
    overflow: hidden;
}

.why-deco-left {
    position: absolute;
    left: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
}

.why-deco-right {
    position: absolute;
    right: -100px;
    top: -50px;
    width: 578px;
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
    height: 301px;
    object-fit: contain;
}

.why-us .container {
    position: relative;
    z-index: 1;
}

.why-card {
    text-align: center;
    padding: 16px 8px;
}

.why-card img {
    width: 81px;
    height: 81px;
    margin-bottom: 24px;
}

.why-card h3 {
    font-family: var(--font-rhodium);
    font-weight: 400;
    font-size: 22px;
    color: var(--color-black);
    margin-bottom: 12px;
}

.why-card p {
    font-family: var(--font-reddit);
    font-weight: 500;
    font-size: 16px;
    color: var(--color-gray-dark);
    line-height: 1.67;
}

.why-card-col {
    position: relative;
}

.why-arrow {
    position: absolute;
    top: 40px;
    right: -40px;
    width: 80px;
    z-index: 10;
    pointer-events: none;
}

@media (max-width: 991px) {
    .why-arrow {
        display: none;
    }
}

/* ==============================
   GALLERY — video preview
   ============================== */
.gallery-video {}

.gallery-video-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-video-wrap .gallery-hero {
    width: 100%;
    height: 472px;
    object-fit: cover;
    display: block;
}

.gallery-video-wrap .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(1, 1, 1, .21);
}

.btn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--color-white);
    color: var(--color-black);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.btn-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--color-gray-light);
}

.play-icon-triangle {
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid currentColor;
    margin-left: 5px;
    /* Nudge for visual weight balance */
}

/* Styling for the pause icon state when video is playing */
.btn-play.playing .play-icon-triangle {
    display: none;
}

.btn-play.playing::before,
.btn-play.playing::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 22px;
    background: currentColor;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 2px;
}

.btn-play.playing::before {
    left: calc(50% - 7px);
}

.btn-play.playing::after {
    left: calc(50% + 1px);
}

/* Video Overlay Player */
.video-player-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-player-overlay.active {
    display: flex;
    opacity: 1;
}

.video-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
}

.video-container video {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.btn-close-video {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
}

.btn-close-video:hover {
    color: var(--color-gray-light);
}

/* ==============================
   GALLERY — photo grid
   ============================== */
.gallery-grid {}

.gallery-thumb {
    width: 100%;
    height: 215px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.gallery-feature {
    width: 100%;
    height: 448px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.gallery-feature-wrap {
    position: relative;
}

/* Play button refinements */
.gallery-feature-wrap .btn-play {
    width: 65px;
    height: 65px;
    background: rgba(0, 0, 0, 0.85);
    color: var(--color-white);
    /* Ensures triangle is white */
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-feature-wrap .btn-play:hover {
    background: var(--color-white);
    color: var(--color-black);
    transform: translate(-50%, -50%) scale(1.1);
}

.gallery-feature-wrap .btn-play img {
    display: none;
}

/* ==============================
   TESTIMONIALS
   ============================== */
.testimonials {}

.testi-card {
    position: relative;
    padding: 40px 30px;
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.testi-stars {
    display: flex;
    gap: 4px;
}

.testi-stars svg {
    width: 20px;
    height: 20px;
    fill: #000;
}

.google-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.testi-quote {
    font-family: "Readex Pro", sans-serif;
    font-weight: 400;
    font-size: 180px;
    color: var(--color-black);
    line-height: 1;
    opacity: 1;
    position: absolute;
    bottom: 70px;
    right: 40px;
}

.testi-text {
    font-family: var(--font-reddit);
    font-weight: 500;
    font-size: 19px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 420px;
}

.testi-name {
    font-family: var(--font-reddit);
    font-weight: 700;
    font-size: 16px;
    color: #1b1c1c;
    letter-spacing: 0.5px;
}

.testi-role {
    font-family: var(--font-reddit);
    font-weight: 400;
    font-size: 15px;
    color: #888;
    letter-spacing: 0.5px;
}

.testi-divider {
    width: 1px;
    background: #d4d4d4;
    min-height: 280px;
    align-self: center;
    position: relative;
}

.testi-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -1px;
    transform: translateY(-50%);
    width: 3px;
    height: 80px;
    background: #000;
}

/* ==============================
   BLOGS
   ============================== */
.blogs .blog-card {
    border: none;
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Flowing Border Animation */
.blogs .blog-card::after {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #c5a059, #f9f7f2, #c5a059, #f9f7f2);
    background-size: 400% 400%;
    z-index: -1;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blogs .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.2);
}

.blogs .blog-card:hover::after {
    opacity: 1;
    animation: borderFlow 3s ease infinite;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.blogs .blog-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 15px;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-reddit);
    font-weight: 500;
    font-size: 14px;
    color: #444;
}

.blog-meta-item svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.blog-card h3 {
    font-family: var(--font-reddit);
    font-weight: 700;
    font-size: 22px;
    color: #000;
    margin-bottom: 12px;
}

.blog-card p {
    font-family: var(--font-reddit);
    font-weight: 400;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-read-more {
    font-family: var(--font-reddit);
    font-weight: 600;
    font-size: 20px;
    color: #000 !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    transform: translateX(5px);
}

.blog-read-more svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

.blog-read-more img {
    width: 28px;
    height: 28px;
}

/* ==============================
   TOUR SEARCH BAR
   ============================== */
.tour-search {
    position: relative;
    overflow: hidden;
}

.tour-search .search-bg {
    width: 100%;
    height: 300px;
    /* Increased for better visual presence */
    object-fit: cover;
    display: block;
}

.tour-search .search-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    /* Darken for text readability */
    display: flex;
    align-items: center;
}

.search-form-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
    /* Align inputs and button at bottom */
    width: 100%;
}

.search-field-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-label {
    font-family: var(--font-reddit);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--color-white);
    text-transform: uppercase;
}

.search-field {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    height: 55px;
    background: #e0e0e0;
    /* Light gray from image */
    border: none;
    border-radius: 2px;
    padding: 0 15px;
    font-family: var(--font-reddit);
    font-size: 16px;
    color: #333;
}

.search-field::placeholder {
    color: #888;
}

.search-field:focus {
    outline: none;
    background: #fff;
}

.search-action {
    flex: 0 0 auto;
}

.btn-search {
    height: 55px;
    background: #e0e0e0;
    border: none;
    border-radius: 2px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-reddit);
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 1.5px;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

@media (max-width: 991px) {
    .tour-search .search-bg {
        height: auto;
        min-height: 500px;
    }

    .search-form-wrap {
        padding: 40px 0;
    }

    .search-field-group {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 767px) {
    .search-form-wrap {
        display: block !important;
    }

    .search-field-group {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px !important;
    }

    .search-field {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    .search-action {
        width: 100% !important;
    }

    .btn-search {
        width: 100% !important;
        justify-content: center;
    }
}

/* ==============================
   FOOTER
   ============================== */
.site-footer {
    background: #000;
    padding: 80px 0 30px;
    color: #fff;
}

.site-footer .footer-logo {
    width: 260px;
    height: 318px;
    object-fit: cover;
    margin-bottom: -28px;
    margin-top: -46px;
    display: block;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-left: 50px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 168, 128, 0.3);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-icon:hover {
    transform: translateY(-5px);
    background: #c5a880 !important;
    border-color: #c5a880;
    color: #121212 !important;
    box-shadow: 0 10px 20px rgba(197, 168, 128, 0.25);
}

.social-icon svg {
    transition: all 0.35s ease;
}

.site-footer .footer-col-title {
    font-family: var(--font-rhodium);
    font-weight: 400;
    font-size: 26px;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-reddit);
    font-weight: 400;
    font-size: 16px;
    color: #fff !important;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-link::before {
    content: '';
    width: 6px;
    height: 6px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: var(--color-gray-light) !important;
    padding-left: 5px;
}

.footer-link:hover::before {
    transform: rotate(45deg) scale(1.2);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon-circle {
    width: 38px;
    height: 38px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-circle svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    stroke-width: 1.5;
}

.footer-contact-info {
    font-family: var(--font-reddit);
    font-weight: 400;
    font-size: 15px;
    color: #fff;
    line-height: 1.5;
}

.footer-contact-info a {
    color: #fff !important;
    text-decoration: none;
}

.footer-socials img {
    width: 40px;
    height: 40px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, .18);
    margin: 32px 0 16px;
}

.footer-copy {
    font-family: var(--font-lato);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.96px;
    color: var(--color-white);
    text-align: center;
}

/* ==============================
   FOCUS / A11Y
   ============================== */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-accent) !important;
    outline-offset: 2px;
}


/* ================================================================
   RESPONSIVE — TABLET LANDSCAPE (max-width: 1199px)
   ================================================================ */
@media (max-width: 1199px) {

    /* --- Hero Banner --- */
    .banner {
        padding-top: 160px;
        min-height: 650px;
    }

    .banner h1 {
        font-size: 38px;
    }

    .banner-luxury-text {
        font-size: 55px;
    }

    /* --- Pills --- */
    .banner-pill--left,
    .banner-pill--right {
        width: 150px;
        height: 260px;
    }

    .banner-pill--center {
        width: 170px;
        height: 340px;
        margin-bottom: 30px;
    }

    .banner-pills {
        gap: 14px;
    }

    .banner-cloud--top {
        width: 160px;
    }

    .banner-cloud--left {
        width: 120px;
    }

    .banner-cloud--bottom {
        width: 140px;
    }

    /* --- Section Headings --- */
    .section-heading {
        font-size: 38px;
    }

    /* --- About --- */
    .about .about-img-main {
        height: 420px;
    }

    .about-deco-right {
        width: 500px;
        height: 260px;
        right: -300px;
    }

    /* --- Destinations --- */
    .dest-package-card h3 {
        font-size: 26px;
    }

    /* --- Footer --- */
    .site-footer .footer-logo {
        width: 200px;
        height: auto;
    }

    .footer-socials {
        margin-left: 30px;
    }
}


/* ================================================================
   RESPONSIVE — TABLET PORTRAIT (max-width: 991px)
   ================================================================ */
@media (max-width: 991px) {

    /* --- Navbar & Mobile Menu --- */
    .site-nav .navbar-brand img {
        width: 160px;
        height: auto;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #000;
        z-index: 2000;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
        transform: translateX(100%);
        visibility: hidden;
    }

    .navbar-collapse.show {
        transform: translateX(0);
        visibility: visible;
    }

    .mobile-menu-wrapper {
        display: flex;
        flex-direction: column;
        height: 100%;
        padding: 30px 40px 60px;
        background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
        position: relative;
        overflow-y: auto;
    }

    /* Watermark Fern */
    .mobile-menu-wrapper::before {
        content: '';
        position: absolute;
        bottom: 10%;
        right: -10%;
        width: 100%;
        height: 80%;
        background-image: url('../images/leaf.webp');
        background-repeat: no-repeat;
        background-position: right bottom;
        background-size: contain;
        opacity: 0.05;
        filter: brightness(0) invert(1);
        pointer-events: none;
        z-index: 0;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 60px;
        z-index: 1;
    }

    .btn-close-menu {
        background: transparent;
        border: none;
        color: #fff;
        font-size: 45px;
        line-height: 1;
        padding: 0;
        transition: transform 0.3s ease;
    }

    .btn-close-menu:hover {
        transform: rotate(90deg);
    }

    .mobile-menu-body {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        z-index: 1;
    }

    .navbar-nav .nav-item {
        margin-bottom: 25px;
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .navbar-collapse.show .nav-item {
        opacity: 1;
        transform: translateX(0);
    }

    /* Staggered link animations */
    .navbar-collapse.show .nav-item:nth-child(1) {
        transition-delay: 0.2s;
    }

    .navbar-collapse.show .nav-item:nth-child(2) {
        transition-delay: 0.3s;
    }

    .navbar-collapse.show .nav-item:nth-child(3) {
        transition-delay: 0.4s;
    }

    .navbar-collapse.show .nav-item:nth-child(4) {
        transition-delay: 0.5s;
    }

    .navbar-collapse.show .nav-item:nth-child(5) {
        transition-delay: 0.6s;
    }

    .site-nav .nav-link {
        font-family: var(--font-rhodium) !important;
        font-size: 26px !important;
        font-weight: 400 !important;
        color: #fff !important;
        text-transform: capitalize !important;
        padding: 0 !important;
        display: inline-block;
        letter-spacing: 0;
        position: relative;
    }

    .site-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background: rgba(255, 255, 255, 0.3);
        transition: width 0.3s ease;
    }

    .site-nav .nav-link:hover::after {
        width: 100%;
    }

    .mobile-menu-footer {
        margin-top: 40px;
        padding-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1;
    }

    .mobile-contact-info {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
    }

    .mobile-contact-link {
        color: rgba(255, 255, 255, 0.6);
        font-family: var(--font-reddit);
        font-size: 16px;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .mobile-contact-link:hover {
        color: #fff;
    }

    .mobile-social-links .social-label {
        color: rgba(255, 255, 255, 0.3);
        font-family: var(--font-reddit);
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .navbar-nav .menu-item-has-children::after {
        content: '→';
        font-size: 20px;
        color: #fff;
        opacity: 0.3;
        margin-left: 15px;
        vertical-align: middle;
        transition: opacity 0.3s ease;
    }

    /* Sub-menu Overlay (Drill-down panel) */
    .sub-menu-overlay {
        position: fixed;
        inset: 0;
        background: #000;
        z-index: 2100;
        display: flex;
        flex-direction: column;
        padding: 30px 40px;
        transform: translateX(100%);
        transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
        visibility: hidden;
    }

    .sub-menu-overlay.active {
        transform: translateX(0);
        visibility: visible;
    }

    .sub-menu-overlay .navbar-nav {
        margin-top: 60px;
    }

    .sub-menu-overlay .nav-link {
        font-size: 32px !important;
        opacity: 0.8;
    }

    .btn-back-menu {
        background: transparent;
        border: none;
        color: #fff;
        font-family: var(--font-reddit);
        font-size: 14px;
        letter-spacing: 2px;
        display: flex;
        align-items: center;
        gap: 10px;
        opacity: 0.5;
        padding: 0;
        text-align: left;
    }

    .btn-back-menu::before {
        content: '←';
        font-size: 18px;
    }

    /* Mobile Sub-menu */
    .navbar-nav .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        backdrop-filter: none;
        box-shadow: none;
        padding: 10px 0;
        margin: 5px 0 20px 0;
        width: 100%;
        text-align: center;
        display: none;
        border-radius: 8px;
    }

    .navbar-nav .menu-item-has-children.active-mobile-sub>.sub-menu {
        display: block;
    }

    .navbar-nav .sub-menu .nav-link {
        font-size: 18px !important;
        opacity: 0.7;
        text-transform: none;
        letter-spacing: 1px;
    }

    .btn-booknow {
        margin-top: 40px;
        margin-left: 0 !important;
        padding: 15px 60px;
    }

    /* --- Hero Banner --- */
    .banner {
        padding-top: 150px;
        padding-bottom: 50px;
        min-height: auto;
        text-align: center;
    }

    .banner h1 {
        font-size: 34px;
    }

    .banner-luxury-text {
        font-size: 48px;
    }

    .banner .banner-sub {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    /* --- Pills — center below text on tablet --- */
    .banner-right {
        margin-top: 40px;
        justify-content: center;
    }

    .banner-pill--left,
    .banner-pill--right {
        width: 130px;
        height: 220px;
    }

    .banner-pill--center {
        width: 150px;
        height: 290px;
        margin-bottom: 25px;
    }

    .banner-pills {
        gap: 12px;
    }

    .banner-cloud--top {
        width: 130px;
        top: -20px;
    }

    .banner-cloud--left {
        width: 100px;
    }

    .banner-cloud--bottom {
        width: 120px;
        bottom: -10px;
    }

    /* --- About --- */
    .about {
        padding-top: 3rem !important;
    }

    .about .about-img-main {
        height: 350px;
        margin-bottom: 30px;
    }

    .about-deco-right,
    .about-deco-below {
        display: none;
    }

    .about-tagline {
        font-size: 16px;
    }

    .about-body p {
        font-size: 15px;
        line-height: 1.8;
    }

    /* --- Section Headings --- */
    .section-heading {
        font-size: 32px;
    }

    .heading-ornament {
        width: 70px;
        height: 36px;
    }

    /* --- Signature Journeys --- */
    .journey-card img.journey-img {
        height: 350px;
    }

    .journey-card h3 {
        font-size: 24px;
    }

    /* --- Destinations --- */
    .destinations .dest-img {
        height: 280px;
    }

    .dest-package-body {
        padding: 25px 20px;
    }

    .dest-package-card h3 {
        font-size: 24px;
    }

    .dest-package-card .pkg-desc {
        font-size: 14px;
        min-height: auto;
    }

    /* --- Why Choose Us --- */
    .why-deco-left,
    .why-deco-right {
        display: none;
    }

    .why-card img {
        width: 65px;
        height: 65px;
    }

    .why-card h3 {
        font-size: 18px;
    }

    .why-card p {
        font-size: 14px;
    }

    /* --- Gallery --- */
    .gallery-video-wrap img.gallery-hero {
        height: 320px;
    }

    .gallery-feature {
        height: 320px;
    }

    .gallery-thumb {
        height: 180px;
    }

    /* --- Testimonials --- */
    .testi-divider {
        display: none;
    }

    .testi-card {
        padding: 30px 20px;
    }

    .testi-text {
        font-size: 16px;
        max-width: 100%;
    }

    .testi-quote {
        font-size: 70px;
        right: 20px;
        bottom: 40px;
    }

    /* --- Blogs --- */
    .blogs .blog-img {
        height: 200px;
    }

    .blog-card h3 {
        font-size: 19px;
    }

    /* --- Footer --- */
    .site-footer {
        padding: 50px 0 25px;
        text-align: center;
    }

    .site-footer .footer-logo {
        width: 180px;
        height: auto;
        margin: 0 auto 20px;
    }

    .footer-socials {
        justify-content: center;
        margin-left: 0;
        margin-bottom: 30px;
    }

    .site-footer .footer-col-title {
        font-size: 22px;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .footer-link {
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
        text-align: left;
    }
}


/* ================================================================
   RESPONSIVE — MOBILE LANDSCAPE (max-width: 767px)
   ================================================================ */
@media (max-width: 767px) {

    /* --- Navbar --- */
    .site-nav .navbar-brand img {
        width: 120px;
        height: auto;
    }

    /* --- Hero Banner --- */
    .banner {
        padding-top: 100px;
        padding-bottom: 35px;
    }

    .banner h1 {
        font-size: 28px;
    }

    .banner-luxury-text {
        font-size: 42px;
        margin-left: 10px;
    }

    .banner .banner-sub {
        font-size: 14px;
        line-height: 1.8;
    }

    .btn-explore {
        font-size: 15px;
        padding: 10px 24px;
    }

    /* --- Pills — smaller on mobile landscape --- */
    .banner-pill--left,
    .banner-pill--right {
        width: 110px;
        height: 190px;
    }

    .banner-pill--center {
        width: 130px;
        height: 250px;
        margin-bottom: 20px;
    }

    .banner-pills {
        gap: 10px;
    }

    .banner-pill {
        border-width: 5px;
    }

    .banner-cloud--top {
        width: 110px;
        top: -15px;
    }

    .banner-cloud--left {
        width: 80px;
    }

    .banner-cloud--bottom {
        width: 100px;
    }

    /* --- Section Headings --- */
    .section-heading {
        font-size: 26px;
    }

    .section-label {
        font-size: 15px;
    }

    .heading-ornament {
        width: 55px;
        height: 28px;
    }

    /* --- About --- */
    .about .about-img-main {
        height: 280px;
    }

    .about-tagline {
        font-size: 14px;
    }

    .about-body p {
        font-size: 14px;
        line-height: 1.7;
    }

    .btn-book-with-us {
        font-size: 15px;
        padding: 10px 30px;
    }

    /* --- Journeys --- */
    .journey-card img.journey-img {
        height: 340px;
    }

    .journey-card-logo {
        width: 150px !important;
        top: 30px !important;
    }

    .journey-card h3 {
        font-size: 22px;
    }

    .journey-card p {
        font-size: 14px;
    }

    /* --- Destinations --- */
    .destinations .dest-img {
        height: 240px;
    }

    .dest-package-card h3 {
        font-size: 22px;
    }

    .btn-pkg-book {
        font-size: 14px;
        padding: 12px 28px;
    }

    /* --- Why Choose Us --- */
    .why-card {
        padding: 12px 6px;
    }

    .why-card img {
        width: 55px;
        height: 55px;
        margin-bottom: 16px;
    }

    .why-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .why-card p {
        font-size: 13px;
    }

    /* --- Gallery --- */
    .gallery-video-wrap img.gallery-hero {
        height: 220px;
    }

    .gallery-feature {
        height: 260px;
    }

    .gallery-thumb {
        height: 150px;
    }

    .btn-play {
        width: 50px;
        height: 50px;
    }

    /* --- Testimonials --- */
    .testi-card {
        padding: 25px 15px;
    }

    .testi-text {
        font-size: 15px;
    }

    .testi-quote {
        font-size: 50px;
        right: 15px;
        bottom: 30px;
    }

    .testi-name {
        font-size: 15px;
    }

    .testi-role {
        font-size: 13px;
    }

    /* --- Blogs --- */
    .blogs .blog-img {
        height: 180px;
    }

    .blog-card h3 {
        font-size: 17px;
    }

    .blog-card p {
        font-size: 14px;
    }

    .blog-read-more {
        font-size: 17px;
    }

    /* --- Footer --- */
    .site-footer .footer-col-title {
        font-size: 20px;
    }

    .footer-link {
        font-size: 14px;
    }

    .footer-contact-info {
        font-size: 13px;
    }

    .contact-icon-circle {
        width: 34px;
        height: 34px;
    }

    .contact-icon-circle svg {
        width: 16px;
        height: 16px;
    }
}


/* ================================================================
   RESPONSIVE — MOBILE PORTRAIT (max-width: 575px)
   ================================================================ */
@media (max-width: 575px) {

    /* --- Navbar --- */
    .site-nav .navbar-brand img {
        width: 100px;
        height: auto;
    }

    .btn-booknow {
        font-size: 13px;
        padding: 10px 24px;
    }

    /* --- Hero Banner --- */
    .banner {
        padding-top: 90px;
        padding-bottom: 25px;
    }

    .banner h1 {
        font-size: 24px;
    }

    .banner-luxury-text {
        font-size: 36px;
        margin-left: 8px;
        padding-bottom: 8px;
    }

    .banner .banner-sub {
        font-size: 13px;
        line-height: 1.7;
    }

    .btn-explore {
        font-size: 14px;
        padding: 9px 20px;
        letter-spacing: 1px;
    }

    /* --- Pills — compact stack on small mobile --- */
    .banner-pill--left,
    .banner-pill--right {
        width: 90px;
        height: 160px;
    }

    .banner-pill--center {
        width: 105px;
        height: 210px;
        margin-bottom: 15px;
    }

    .banner-pills {
        gap: 8px;
    }

    .banner-pill {
        border-width: 4px;
        border-radius: 60px;
    }

    .banner-cloud--top {
        width: 90px;
        top: -10px;
    }

    .banner-cloud--left {
        width: 60px;
    }

    .banner-cloud--bottom {
        width: 80px;
        bottom: -5px;
    }

    /* --- Section Headings --- */
    .section-heading {
        font-size: 22px;
    }

    .section-label {
        font-size: 14px;
    }

    .heading-ornament {
        width: 42px;
        height: 22px;
    }

    /* --- About --- */
    .about {
        padding-top: 4rem !important;
    }

    .about .about-img-main {
        height: 220px;
    }

    .about-tagline {
        font-size: 13px;
        letter-spacing: 0.4px;
    }

    .about-body p {
        font-size: 13px;
    }

    .btn-book-with-us {
        font-size: 14px;
        padding: 9px 24px;
        letter-spacing: 1px;
    }

    /* --- Journeys --- */
    .journey-card img.journey-img {
        height: 360px;
    }

    .journey-card-logo {
        width: 130px !important;
        top: 25px !important;
    }

    .journey-card h3 {
        font-size: 20px;
    }

    .journey-card p {
        font-size: 13px;
    }

    /* --- Destinations --- */
    .destinations .dest-img {
        height: 200px;
    }

    .dest-package-body {
        padding: 20px 16px;
    }

    .dest-package-card h3 {
        font-size: 20px;
    }

    .dest-package-card .pkg-desc {
        font-size: 13px;
    }

    .dest-package-card .pkg-price {
        font-size: 15px;
    }

    .btn-pkg-book {
        font-size: 13px;
        padding: 10px 20px;
    }

    .pkg-amenity img {
        width: 34px;
        height: 34px;
    }

    .pkg-amenity span {
        font-size: 12px;
    }

    .dest-nav-btn {
        width: 40px;
        height: 40px;
    }

    .dest-nav-btn::after {
        width: 10px;
        height: 10px;
    }

    /* --- Why Choose Us --- */
    .why-card img {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .why-card h3 {
        font-size: 15px;
    }

    .why-card p {
        font-size: 12px;
        line-height: 1.5;
    }

    /* --- Gallery --- */
    .gallery-video-wrap img.gallery-hero {
        height: 180px;
    }

    .gallery-feature {
        height: 200px;
    }

    .gallery-thumb {
        height: 120px;
    }

    .btn-play {
        width: 44px;
        height: 44px;
    }

    /* --- Testimonials --- */
    .testi-card {
        padding: 20px 12px;
    }

    .testi-header {
        gap: 10px;
        margin-bottom: 18px;
    }

    .testi-stars svg {
        width: 16px;
        height: 16px;
    }

    .google-logo {
        width: 24px;
        height: 24px;
    }

    .testi-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .testi-quote {
        font-size: 40px;
        right: 10px;
        bottom: 20px;
    }

    .testi-name {
        font-size: 14px;
    }

    .testi-role {
        font-size: 12px;
    }

    /* --- Blogs --- */
    .blogs .blog-img {
        height: 160px;
    }

    .blog-meta {
        gap: 16px;
    }

    .blog-meta-item {
        font-size: 12px;
        gap: 6px;
    }

    .blog-meta-item svg {
        width: 16px;
        height: 16px;
    }

    .blog-card h3 {
        font-size: 16px;
    }

    .blog-card p {
        font-size: 13px;
        line-height: 1.5;
    }

    .blog-read-more {
        font-size: 15px;
    }

    /* --- Tour Search --- */
    .tour-search .search-bg {
        min-height: 400px;
    }

    .search-label {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .search-field {
        height: 48px;
        font-size: 16px !important;
    }

    .btn-search {
        height: 48px;
        font-size: 15px;
    }

    /* --- Footer --- */
    .site-footer {
        padding: 40px 0 20px;
    }

    .site-footer .footer-logo {
        width: 150px;
    }

    .site-footer .footer-col-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-link {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .footer-contact-info {
        font-size: 12px;
    }

    .footer-contact-item {
        margin-bottom: 15px;
    }

    .contact-icon-circle {
        width: 30px;
        height: 30px;
    }

    .contact-icon-circle svg {
        width: 14px;
        height: 14px;
    }

    .footer-divider {
        margin: 20px 0 12px;
    }

    .footer-copy {
        font-size: 12px;
    }
}

/* ============================================================
   INTERNAL PAGE STYLES (Banner, Breadcrumbs, etc.)
   ============================================================ */

.internal-banner {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: var(--color-white);
    overflow: hidden;
    background-color: var(--color-black);
}

.internal-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(106.6deg, #000000 26.11%, rgba(102, 102, 102, 0) 99.41%);
    z-index: 1;
    pointer-events: none;
}

.internal-banner .banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.internal-banner .container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.internal-banner h1 {
    font-family: var(--font-rhodium);
    font-size: 64px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

/* Breadcrumbs */
.breadcrumb-wrap {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    font-family: var(--font-reddit);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.breadcrumb-wrap a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.breadcrumb-wrap a:hover {
    color: var(--color-white);
}

.breadcrumb-wrap .separator {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-wrap .current {
    color: var(--color-white);
}

/* Enhanced About Section for About Page */
.about-premium {
    padding: 100px 0;
    background: #fafafa;
    overflow: visible !important;
}

.about-premium .section-heading {
    margin-bottom: 30px;
}

.about-premium .about-body p {
    font-size: 18px;
    color: var(--color-gray-dark);
    margin-bottom: 25px;
}

.about-premium .about-img-wrap {
    position: -webkit-sticky;
    position: sticky;
    top: 150px;
    padding-right: 20px;
    padding-bottom: 20px;
    z-index: 5;
    align-self: flex-start;
}

.about-premium .col-lg-6 {
    display: block;
}

.about-premium .about-img-wrap::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--color-gray-light);
    z-index: -1;
    border-radius: 4px;
}

/* Values/Mission Section */
.values-section {
    padding: 100px 0;
    background: var(--color-white);
}

.value-card {
    text-align: center;
    padding: 40px;
    border-radius: 8px;
    background: #fff;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--color-gray-light);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    border-radius: 50%;
    color: var(--color-primary);
}

.value-icon svg {
    width: 35px;
    height: 35px;
}

.value-card h3 {
    font-family: var(--font-rhodium);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--color-black);
}

.value-card p {
    font-family: var(--font-reddit);
    color: var(--color-muted);
    line-height: 1.6;
}

/* Quote/Callout Section */
.about-callout {
    padding: 120px 0;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    color: var(--color-white);
    text-align: center;
}

.about-callout::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.about-callout .container {
    position: relative;
    z-index: 1;
}

.about-callout h2 {
    font-family: var(--font-rhodium);
    font-size: 48px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.about-callout .btn-explore {
    padding: 15px 45px;
}

/* ============================================================
   DESTINATIONS PAGE — LUXURY ATLAS (ALTERNATING)
============================================================ */

/* --- Dark Editorial Banner --- */
.atlas-dark-banner {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    background: #000;
}

.adb-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.atlas-dark-banner-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(106.6deg, #000000 26.11%, rgba(102, 102, 102, 0) 99.41%);
    z-index: 1;
}

.atlas-dark-banner-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.adb-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.adb-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-reddit);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 35px;
}

.adb-breadcrumb a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s;
}

.adb-breadcrumb a:hover {
    color: #c5a059;
}

.adb-breadcrumb .sep {
    color: rgba(255, 255, 255, 0.15);
}

.adb-breadcrumb .curr {
    color: #c5a059;
    font-weight: 600;
}

.adb-gold-line {
    width: 50px;
    height: 2px;
    background: #c5a059;
    margin-bottom: 30px;
}

.adb-title {
    font-size: 72px;
    line-height: 1;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.adb-lead {
    font-family: var(--font-reddit);
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 500px;
    margin-bottom: 50px;
}

.adb-stats-row {
    display: flex;
    gap: 50px;
}

.adb-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.adb-stat .num {
    font-size: 36px;
    color: #c5a059;
    line-height: 1;
}

.adb-stat .lab {
    font-family: var(--font-reddit);
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
}

/* Preview card stack */
.adb-preview-stack {
    position: relative;
    height: 450px;
    z-index: 2;
}

.adb-preview-card {
    position: absolute;
    width: 220px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.adb-preview-card:hover {
    transform: translateY(-10px) !important;
}

.adb-preview-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.adb-preview-card span {
    display: block;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    font-family: var(--font-reddit);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
}

.adb-preview-1 {
    top: 0;
    left: 0;
    transform: rotate(-3deg);
    z-index: 3;
}

.adb-preview-2 {
    top: 40px;
    left: 180px;
    transform: rotate(2deg);
    z-index: 2;
}

.adb-preview-3 {
    top: 100px;
    left: 60px;
    transform: rotate(-1deg);
    z-index: 1;
}


/* --- Parallax Collection --- */
.atlas-collection {
    background: #000;
}

.atlas-section {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.atlas-bg-parallax {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

/* Vignette gradient alternates based on section */
.atlas-overlay-vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
    z-index: 2;
}

.atlas-section--reversed .atlas-overlay-vignette {
    background: linear-gradient(to left, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
}

.atlas-glass-card {
    position: relative;
    z-index: 3;
    max-width: 520px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

.atlas-region {
    font-family: var(--font-reddit);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 5px;
    color: #c5a059;
    margin-bottom: 15px;
    display: block;
}

.atlas-glass-card h2 {
    font-size: 56px;
    margin-bottom: 10px;
}

.atlas-tagline {
    font-family: var(--font-reddit);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0.6;
    margin-bottom: 30px;
}

.atlas-info-bar {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-item .val {
    font-family: var(--font-rhodium);
    font-size: 26px;
    color: #fff;
}

.info-item .lab {
    font-family: var(--font-reddit);
    font-size: 9px;
    letter-spacing: 1.5px;
    opacity: 0.5;
    text-transform: uppercase;
    margin-top: 5px;
}

.info-sep {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.atlas-desc {
    font-family: var(--font-reddit);
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 40px;
}

.atlas-btn-premium {
    display: inline-block;
    padding: 16px 45px;
    background: #c5a059;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-reddit);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.atlas-btn-premium:hover {
    background: #fff;
    color: #111;
    transform: translateY(-5px);
}

/* --- Why Choose (Clean White) --- */
.atlas-why-choose {
    padding: 140px 0;
    background: #fff;
}

.atlas-accent-label {
    font-family: var(--font-reddit);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 5px;
    color: #c5a059;
    margin-bottom: 25px;
    display: block;
}

.atlas-heading-large {
    font-size: 56px;
    line-height: 1.1;
    color: #111;
    margin-bottom: 30px;
}

.atlas-text-muted {
    font-family: var(--font-reddit);
    font-size: 16px;
    line-height: 1.8;
    color: #777;
    margin-bottom: 40px;
}

.atlas-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.atlas-check-list li {
    font-family: var(--font-reddit);
    font-weight: 600;
    font-size: 15px;
    color: #111;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.atlas-check-list li::before {
    content: '→';
    color: #c5a059;
    font-weight: bold;
}

.atlas-img-collage {
    position: relative;
    padding: 40px;
}

.img-main {
    width: 100%;
    height: 600px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    box-shadow: 30px 30px 80px rgba(0, 0, 0, 0.1);
}

.img-accent-frame {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    border: 1px solid #c5a059;
    z-index: 1;
}

/* --- Final CTA --- */
.atlas-cta {
    padding: 0 0 100px;
    background: #fff;
}

.atlas-cta-inner {
    background: #111;
    padding: 140px 60px;
    position: relative;
}

.btn-atlas-gold {
    display: inline-block;
    padding: 20px 60px;
    background: transparent;
    border: 1px solid #c5a059;
    color: #c5a059;
    font-family: var(--font-reddit);
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.4s;
}

.btn-atlas-gold:hover {
    background: #c5a059;
    color: #fff;
}

/* --- Atlas Responsive --- */
@media (max-width: 991px) {
    .atlas-dark-banner {
        padding: 120px 0 80px;
    }

    .adb-title {
        font-size: 48px;
    }

    .adb-stats-row {
        gap: 30px;
    }

    .adb-stat .num {
        font-size: 28px;
    }

    .atlas-section {
        height: auto;
        padding: 100px 0;
    }

    .atlas-bg-parallax {
        background-attachment: scroll;
    }

    .atlas-glass-card {
        margin: 0 20px;
        padding: 40px 30px;
    }

    .atlas-glass-card h2 {
        font-size: 38px;
    }

    .atlas-heading-large {
        font-size: 38px;
    }

    .img-main {
        height: 400px;
    }

    .atlas-overlay-vignette,
    .atlas-section--reversed .atlas-overlay-vignette {
        background: rgba(0, 0, 0, 0.7);
    }
}

/* ============================================================
   SINGLE DESTINATION — PREMIUM DETAIL PAGE
============================================================ */

.single-dest {
    background: #fff;
}

/* --- Stats Bar (below banner) --- */
.dest-stats-bar {
    background: #111;
    border-bottom: 3px solid #c5a059;
}

.stats-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 25px 0;
}

.stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-num {
    font-size: 22px;
    color: #c5a059;
    line-height: 1.2;
}

.stat-lbl {
    font-family: var(--font-reddit);
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.15);
}

.stat-cta {
    display: inline-block;
    padding: 12px 35px;
    background: #c5a059;
    color: #fff;
    font-family: var(--font-reddit);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.stat-cta:hover {
    background: #fff;
    color: #111;
}

/* --- Overview Section --- */
.dest-overview {
    padding: 100px 0;
    background: #fff;
}

.overview-img-frame {
    position: relative;
    overflow: hidden;
}

.overview-img-frame img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.img-accent-corner {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 120px;
    height: 120px;
    border-right: 4px solid #c5a059;
    border-bottom: 4px solid #c5a059;
    pointer-events: none;
}

.overview-content .section-label {
    margin-bottom: 10px;
}

.overview-content .section-heading {
    margin-bottom: 30px;
}

.overview-body {
    font-family: var(--font-reddit);
    font-size: 16px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 40px;
}

.overview-body p {
    margin-bottom: 15px;
}

.overview-includes {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.inc-label {
    font-family: var(--font-reddit);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    color: #111;
    text-transform: uppercase;
}

.overview-includes span:not(.inc-label) {
    font-family: var(--font-reddit);
    font-size: 13px;
    color: #c5a059;
    padding: 6px 16px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- Highlights Section --- */
.dest-highlights {
    padding: 100px 0;
    background: #f8f7f5;
}

.highlight-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.highlight-img {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.highlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.highlight-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.highlight-body {
    padding: 30px;
}

.highlight-body h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #111;
}

.highlight-body p {
    font-family: var(--font-reddit);
    font-size: 15px;
    line-height: 1.7;
    color: #777;
    margin: 0;
}

/* --- Itinerary Section --- */
.dest-itinerary {
    padding: 100px 0;
    background: #fff;
}

.itinerary-sticky-header {
    position: sticky;
    top: 120px;
}

.itinerary-sticky-header .section-heading {
    margin-bottom: 20px;
}

.iti-subtitle {
    font-family: var(--font-reddit);
    font-size: 16px;
    line-height: 1.7;
    color: #777;
}

.timeline-track {
    position: relative;
    padding-left: 50px;
}

.timeline-track::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e8e8e8;
}

.timeline-item {
    position: relative;
    padding-bottom: 50px;
    margin-bottom: 10px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -50px;
    top: 0;
    width: 38px;
    height: 38px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-marker span {
    font-size: 14px;
    color: #c5a059;
}

.timeline-content h3 {
    font-size: 26px;
    color: #111;
    margin-bottom: 12px;
}

.timeline-content p {
    font-family: var(--font-reddit);
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 18px;
}

.timeline-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.timeline-bullets li {
    font-family: var(--font-reddit);
    font-size: 14px;
    color: #c5a059;
    padding-left: 20px;
    position: relative;
}

.timeline-bullets li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #c5a059;
}

/* --- The Stay Section --- */
.dest-stay {
    background: #111;
}

.stay-image {
    height: 100%;
    min-height: 550px;
}

.stay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stay-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    color: #fff;
}

.stay-desc {
    font-family: var(--font-reddit);
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.stay-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stay-features li {
    font-family: var(--font-reddit);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 12px;
}

/* --- Booking / Inclusions Section --- */
.dest-booking {
    padding: 100px 0;
    background: #fff;
}

.inclusion-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 50px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.inclusion-list li {
    font-family: var(--font-reddit);
    font-size: 16px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-callout {
    background: #f8f7f5;
    padding: 30px 40px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-from {
    font-family: var(--font-reddit);
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 42px;
    color: #111;
}

.price-per {
    font-family: var(--font-reddit);
    font-size: 13px;
    color: #999;
}

/* --- Enquiry Card --- */
.enquiry-card {
    background: #111;
    padding: 50px;
    color: #fff;
}

.enquiry-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.enquiry-card>p {
    font-family: var(--font-reddit);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 35px;
    line-height: 1.6;
}

.enquiry-form .form-group {
    margin-bottom: 20px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 15px 18px;
    color: #fff;
    font-family: var(--font-reddit);
    font-size: 14px;
    transition: border-color 0.3s;
    appearance: none;
    -webkit-appearance: none;
}

.enquiry-form select {
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    outline: none;
    border-color: #c5a059;
}

.btn-enquire {
    width: 100%;
    background: #c5a059;
    color: #fff;
    border: none;
    padding: 18px;
    font-family: var(--font-reddit);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-enquire:hover {
    background: #fff;
    color: #111;
}

/* --- Single Destination Responsive --- */
@media (max-width: 991px) {
    .stats-bar-inner {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px 0;
    }

    .stat-divider {
        display: none;
    }

    .stat-block {
        flex: 0 0 calc(50% - 20px);
    }

    .stat-cta {
        flex: 1 1 100%;
        text-align: center;
    }
}

/* --- Packages Page Styles --- */
.packages-main {
    background: #fff;
}

.packages-intro {
    padding: 100px 0 60px;
}

.intro-text {
    font-family: var(--font-reddit);
    font-size: 18px;
    color: #777;
    line-height: 1.8;
}

/* Collection Cards */
/* --- Package Cards Grid --- */
.pkg-cards-section {
    padding: 0 0 100px;
}

.pkg-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
}

.pkg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.pkg-card-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.pkg-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.pkg-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.pkg-card-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #c5a059;
    color: #fff;
    font-family: var(--font-reddit);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 2px;
    padding: 6px 16px;
    z-index: 2;
}

.pkg-card-body {
    padding: 30px;
}

.pkg-card-body h3 {
    font-size: 22px;
    color: #111;
    margin-bottom: 15px;
    line-height: 1.3;
}

.pkg-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.pcm-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-reddit);
    font-size: 13px;
    color: #777;
}

.pkg-card-desc {
    font-family: var(--font-reddit);
    font-size: 14px;
    line-height: 1.7;
    color: #999;
    margin-bottom: 20px;
}

.pkg-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

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

.price-from {
    font-family: var(--font-reddit);
    font-size: 10px;
    color: #aaa;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.price-amount {
    font-size: 26px;
    color: #111;
    line-height: 1.2;
}

.price-unit {
    font-family: var(--font-reddit);
    font-size: 11px;
    color: #aaa;
}

.pkg-card-link {
    font-family: var(--font-reddit);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    color: #c5a059;
    transition: 0.3s;
    align-self: flex-end;
}

.pkg-card:hover .pkg-card-link {
    color: #111;
}

@media (max-width: 767px) {
    .pkg-card-img {
        height: 200px;
    }

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

/* --- Bespoke Full CTA --- */
.bespoke-cta-full {
    position: relative;
    padding: 180px 0;
    overflow: hidden;
    background: #111;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-bg-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.cta-content-wrap {
    position: relative;
    z-index: 2;
    color: #fff;
}

.cta-label {
    font-family: var(--font-reddit);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 5px;
    color: #c5a059;
    margin-bottom: 25px;
    display: block;
}

.cta-content-wrap h2 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.cta-desc {
    font-family: var(--font-reddit);
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 50px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-gold-fill {
    display: inline-block;
    padding: 18px 45px;
    background: #c5a059;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-reddit);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    transition: 0.3s;
}

.btn-gold-fill:hover {
    background: #fff;
    color: #111;
}

/* --- Single Collection Styles --- */
.collection-main {
    background: #fff;
}

.collection-intro {
    padding: 120px 0;
}

.collection-body {
    font-family: var(--font-reddit);
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-top: 40px;
}

/* Editorial Spreads */
.collection-spread {
    border-top: 1px solid #eee;
}

.spread-img {
    height: 100%;
    min-height: 600px;
}

.spread-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.spread-content {
    padding: 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    background: #fff;
}

.spread-num {
    font-size: 80px;
    color: rgba(197, 160, 89, 0.08);
    line-height: 1;
    margin-bottom: -15px;
}

.spread-content h3 {
    font-size: 38px;
    margin-bottom: 25px;
}

.spread-desc {
    font-family: var(--font-reddit);
    font-size: 16px;
    line-height: 1.8;
    color: #777;
    margin-bottom: 40px;
}

.spread-facts {
    display: flex;
    gap: 40px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.s-fact {
    display: flex;
    flex-direction: column;
}

.s-fact .val {
    font-family: var(--font-rhodium);
    font-size: 24px;
    color: #111;
}

.s-fact .lbl {
    font-family: var(--font-reddit);
    font-size: 10px;
    letter-spacing: 2px;
    color: #aaa;
    margin-top: 5px;
}

.btn-spread-view {
    display: inline-block;
    padding: 16px 40px;
    border: 1px solid #111;
    color: #111;
    text-decoration: none;
    font-family: var(--font-reddit);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    transition: 0.3s;
    align-self: flex-start;
}

.btn-spread-view:hover {
    background: #111;
    color: #fff;
}

/* --- Single Package Detail (White Theme) --- */
.pkg-detail {
    background: #fff;
}

/* --- Single Package: Tour Operator Design --- */
.spkg {
    background: #fff;
}

/* At a Glance Bar */
.spkg-glance {
    background: #111;
    padding: 25px 0;
}

.glance-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.glance-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.glance-item strong {
    display: block;
    font-family: var(--font-reddit);
    font-size: 15px;
}

.glance-item span {
    display: block;
    font-family: var(--font-reddit);
    font-size: 10px;
    letter-spacing: 1px;
    color: #888;
    text-transform: uppercase;
}

.glance-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

/* Main Layout */
.spkg-main {
    padding: 60px 0 100px;
}

.spkg-left {
    padding-right: 40px;
}

/* Content Blocks */
.spkg-block {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #eee;
}

.spkg-block:last-child {
    border-bottom: none;
}

.spkg-block-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: #111;
    position: relative;
    padding-bottom: 15px;
}

.spkg-block-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #c5a059;
}

.spkg-body {
    font-family: var(--font-reddit);
    font-size: 16px;
    line-height: 1.9;
    color: #666;
}

/* Highlight Cards */
.spkg-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.spkg-hl-card {
    display: flex;
    gap: 25px;
    padding: 20px;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.spkg-hl-card:hover {
    border-color: #c5a059;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.hl-thumb {
    width: 160px;
    min-height: 120px;
    flex-shrink: 0;
    overflow: hidden;
}

.hl-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hl-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hl-info h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #111;
}

.hl-info p {
    font-family: var(--font-reddit);
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin: 0;
}

/* Accordion Itinerary */
.spkg-itinerary {
    display: flex;
    flex-direction: column;
}

.itin-day {
    border: 1px solid #eee;
    margin-bottom: -1px;
}

.itin-day.open .itin-day-body {
    display: block;
}

.itin-day.open .itin-toggle {
    transform: rotate(45deg);
}

.itin-day-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 25px;
    cursor: pointer;
    transition: background 0.2s;
}

.itin-day-head:hover {
    background: #fafafa;
}

.itin-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.itin-badge {
    background: #c5a059;
    color: #fff;
    font-size: 11px;
    padding: 5px 12px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.itin-left h4 {
    font-size: 17px;
    margin: 0;
    color: #111;
}

.itin-toggle {
    font-size: 22px;
    color: #c5a059;
    transition: transform 0.3s;
    font-weight: 300;
}

.itin-day-body {
    display: none;
    padding: 0 25px 25px 25px;
    border-top: 1px solid #eee;
}

.itin-day-body p {
    font-family: var(--font-reddit);
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    margin: 20px 0 15px;
}

.itin-day-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.itin-day-body ul li {
    font-family: var(--font-reddit);
    font-size: 13px;
    color: #555;
    padding: 6px 0 6px 18px;
    position: relative;
}

.itin-day-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 8px;
    height: 1px;
    background: #c5a059;
}

/* Accommodation */
.spkg-accom {
    display: flex;
    gap: 30px;
    border: 1px solid #eee;
}

.accom-image {
    width: 45%;
    flex-shrink: 0;
}

.accom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.accom-details {
    padding: 35px 35px 35px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.accom-details h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.accom-details p {
    font-family: var(--font-reddit);
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 20px;
}

.accom-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
}

.accom-details ul li {
    font-family: var(--font-reddit);
    font-size: 13px;
    color: #444;
    padding: 4px 0 4px 16px;
    position: relative;
}

.accom-details ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c5a059;
    font-size: 11px;
}

/* Inclusions Grid */
.spkg-inclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.inc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-reddit);
    font-size: 14px;
    color: #444;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.inc-icon {
    color: #c5a059;
    font-weight: 700;
}

/* ===== RIGHT SIDEBAR ===== */
.spkg-sidebar {
    position: sticky;
    top: 100px;
}

/* Form Card */
.spkg-form-card {
    background: #111;
    padding: 40px;
    color: #fff;
    margin-bottom: 25px;
}

.form-card-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fc-label {
    font-family: var(--font-reddit);
    font-size: 11px;
    letter-spacing: 2px;
    color: #888;
    text-transform: uppercase;
}

.fc-price {
    font-size: 42px;
    color: #c5a059;
    margin: 5px 0;
}

.fc-price small {
    font-size: 16px;
    color: #999;
}

.fc-per {
    font-family: var(--font-reddit);
    font-size: 12px;
    color: #666;
}

.sf-group {
    margin-bottom: 18px;
}

.sf-group label {
    display: block;
    font-family: var(--font-reddit);
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.sf-group input,
.sf-group select,
.sf-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 13px 15px;
    font-family: var(--font-reddit);
    font-size: 14px;
    outline: none;
    transition: border 0.3s;
}

.sf-group input::placeholder,
.sf-group textarea::placeholder {
    color: #555;
}

.sf-group input:focus,
.sf-group select:focus,
.sf-group textarea:focus {
    border-color: #c5a059;
}

.sf-group select {
    -webkit-appearance: none;
    appearance: none;
}

.sf-row {
    display: flex;
    gap: 15px;
}

.sf-half {
    flex: 1;
}

.sf-submit {
    width: 100%;
    background: #c5a059;
    color: #fff;
    border: none;
    padding: 18px;
    font-family: var(--font-reddit);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 5px;
}

.sf-submit:hover {
    background: #fff;
    color: #111;
}

.form-note {
    font-family: var(--font-reddit);
    font-size: 11px;
    color: #666;
    text-align: center;
    margin-top: 18px;
    font-style: italic;
}

/* Info Card Below Form */
.spkg-info-card {
    border: 1px solid #eee;
    padding: 30px;
}

.spkg-info-card h4 {
    font-family: var(--font-rhodium);
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row span {
    font-family: var(--font-reddit);
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-row strong {
    font-family: var(--font-reddit);
    font-size: 13px;
    color: #111;
    font-weight: 500;
}

@media (max-width: 991px) {
    .glance-row {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: flex-start;
        padding: 0 10px;
    }

    .glance-divider {
        display: none;
    }

    .spkg-left {
        padding-right: 0;
    }

    .spkg-hl-card {
        flex-direction: column;
    }

    .hl-thumb {
        width: 100%;
        height: 180px;
    }

    .spkg-accom {
        flex-direction: column;
    }

    .accom-image {
        width: 100%;
        height: 250px;
    }

    .accom-details {
        padding: 25px;
    }

    .accom-details ul {
        columns: 1;
    }

    .spkg-inclusions-grid {
        grid-template-columns: 1fr;
    }

    .spkg-sidebar {
        position: static;
        margin-top: 40px;
    }

    .spkg-form-card {
        padding: 30px;
    }

    .sf-row {
        flex-direction: column;
        gap: 0;
    }
}



/* Custom CTA */
.custom-journey-cta {
    padding: 120px 0;
}

.custom-cta-card {
    background: #111;
    color: #fff;
    padding: 80px;
    position: relative;
    overflow: hidden;
}

.custom-cta-card h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

.custom-cta-card p {
    font-family: var(--font-reddit);
    font-size: 16px;
    opacity: 0.7;
    margin-bottom: 40px;
}

.btn-white-outline {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-reddit);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    transition: 0.3s;
}

.btn-white-outline:hover {
    background: #fff;
    color: #111;
}

.signature-mark span {
    font-size: 42px;
    color: #c5a059;
    display: block;
}

.signature-mark p {
    font-size: 12px;
    letter-spacing: 5px;
    margin: 0;
}

@media (max-width: 991px) {
    .package-passport-card {
        flex-direction: column;
    }

    .passport-img {
        height: 300px;
        flex: none;
    }

    .passport-stats {
        left: 20px;
    }

    .custom-cta-card {
        padding: 40px;
    }

    .custom-cta-card h2 {
        font-size: 32px;
    }
}

/* --- Signature Pillars Section --- */
.atlas-pillars {
    padding: 120px 0;
    background: #fff;
    border-top: 1px solid #eee;
}

.pillars-title {
    font-size: 56px;
    margin-bottom: 20px;
}

.pillars-wrapper {
    margin-top: 60px;
}

.pillar-item {
    border-right: 1px solid #eee;
}

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

.pillar-inner {
    padding: 0 40px;
    text-align: center;
}

.pillar-num {
    font-size: 80px;
    line-height: 1;
    color: rgba(197, 160, 89, 0.1);
    margin-bottom: -40px;
    position: relative;
    z-index: 1;
}

.pillar-img-frame {
    width: 140px;
    height: 200px;
    margin: 0 auto 30px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pillar-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pillar-inner h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #111;
}

.pillar-inner p {
    font-family: var(--font-reddit);
    font-size: 15px;
    line-height: 1.8;
    color: #777;
    margin: 0;
}

@media (max-width: 991px) {
    .atlas-pillars {
        padding: 60px 0;
    }

    .pillar-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 60px;
        margin-bottom: 60px;
    }

    .pillar-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .pillar-inner {
        padding: 0;
    }

    .pillars-title {
        font-size: 38px;
    }
}

/* --- Tour Essentials Section --- */
.tour-essentials {
    padding: 60px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.essentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.essential-item {
    display: flex;
    gap: 15px;
}

.ess-icon {
    flex-shrink: 0;
    margin-top: 5px;
}

.ess-info {
    display: flex;
    flex-direction: column;
}

.ess-label {
    font-family: var(--font-reddit);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 5px;
}

.ess-val {
    font-family: var(--font-reddit);
    font-size: 14px;
    line-height: 1.6;
    color: #111;
}

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

@media (max-width: 767px) {
    .tour-essentials {
        padding: 40px 0;
    }

    .essentials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .dest-overview {
        padding: 60px 0;
    }

    .overview-img-frame img {
        height: 350px;
    }

    .overview-img-frame {
        margin-bottom: 40px;
    }

    .img-accent-corner {
        display: none;
    }

    .dest-highlights {
        padding: 60px 0;
    }

    .dest-itinerary {
        padding: 60px 0;
    }

    .itinerary-sticky-header {
        position: static;
        margin-bottom: 40px;
    }

    .stay-content {
        padding: 40px 20px;
    }

    .stay-image {
        min-height: 350px;
    }

    .dest-booking {
        padding: 60px 0;
    }

    .enquiry-card {
        padding: 30px 20px;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .price-callout {
        flex-wrap: wrap;
    }
}

/* --- Luxury Transfers Section --- */
.dest-transfers {
    padding: 120px 0;
    background: #fff;
    border-top: 1px solid #eee;
}

.transfer-image-stack {
    position: relative;
}

.transfer-image-stack img {
    border-radius: 2px;
}

.transfer-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: #c5a059;
    color: #fff;
    padding: 20px 30px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}

.transfer-badge span {
    font-size: 14px;
    letter-spacing: 3px;
}

.transfer-intro {
    font-family: var(--font-reddit);
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
}

.transfer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.transfer-list li {
    font-family: var(--font-reddit);
    font-size: 14px;
    color: #111;
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.transfer-list li::before {
    content: '';
    width: 2px;
    height: 15px;
    background: #c5a059;
}

.transfer-footer p {
    font-family: var(--font-reddit);
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.btn-transfer {
    display: inline-block;
    padding: 15px 40px;
    background: #111;
    color: #fff;
    font-family: var(--font-reddit);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-transfer:hover {
    background: #c5a059;
    color: #fff;
}

@media (max-width: 991px) {
    .dest-transfers {
        padding: 60px 0;
    }

    .transfer-image-stack {
        margin-bottom: 50px;
    }

    .transfer-list {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   SINGLE POST SIDEBAR & HERO LAYOUT
   ============================================================ */

.editorial-banner {
    position: relative;
    padding: 220px 0 100px;
    /* Increased top padding for large header */
    background: #000;
    overflow: hidden;
}

.eb-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.eb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    /* Slightly darker for text readability */
}

.eb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #000 40%, transparent);
    z-index: 2;
}

.eb-content {
    position: relative;
    z-index: 10;
    /* Ensure content is on top */
    max-width: 850px;
}

.eb-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    color: #c5a059;
    margin-bottom: 15px;
    font-weight: 700;
}

.eb-content h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.eb-breadcrumb {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.eb-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.eb-breadcrumb .sep {
    margin: 0 10px;
}

/* Meta Strip */
.post-meta-strip {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
    font-family: var(--font-reddit);
}

.meta-item svg {
    width: 18px;
    height: 18px;
    stroke: #c5a059;
    stroke-width: 2;
    fill: none;
}

.meta-item a {
    color: #c5a059;
    text-decoration: none;
}

.post-featured-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 5px solid #c5a059;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.entry-content-detailed {
    font-family: var(--font-reddit);
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.entry-content-detailed h2,
.entry-content-detailed h3 {
    font-family: var(--font-rhodium);
    margin: 40px 0 20px;
    color: #111;
}

.entry-content-detailed p {
    margin-bottom: 25px;
}

/* Inline Nav */
.post-inline-nav .nav-btn {
    display: inline-block;
    padding: 30px;
    background: #fcfcfc;
    border: 1px solid #eee;
    text-decoration: none;
    transition: all 0.3s;
}

.post-inline-nav .nav-btn:hover {
    border-color: #c5a059;
    background: #fff;
}

.nav-dir {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    color: #c5a059;
    margin-bottom: 5px;
    font-weight: 700;
}

.nav-title {
    font-family: var(--font-rhodium);
    font-size: 18px;
    color: #111;
}

/* Sidebar Widgets */
.ps-widget {
    margin-bottom: 50px;
}

.ps-widget-title {
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.ps-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #c5a059;
}

.ps-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.ps-post-thumb img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.ps-post-info h5 {
    font-size: 15px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.ps-post-info h5 a {
    color: #111;
    text-decoration: none;
    transition: color 0.3s;
}

.ps-post-info h5 a:hover {
    color: #c5a059;
}

.ps-post-info .date {
    font-size: 12px;
    color: #999;
}

/* CTA Box */
.cta-box {
    background: #0d3b66;
    /* Deep blue from reference or keep brand? I'll use a deep charcoal/blue */
    background: linear-gradient(135deg, #0a2e4d 0%, #111 100%);
    padding: 50px 40px;
    color: #fff;
    text-align: center;
    border-radius: 4px;
}

.cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 50%;
}

.cta-icon svg {
    width: 30px;
    height: 30px;
    stroke: #fff;
    stroke-width: 1.5;
    fill: none;
}

.cta-box h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #111;
    padding: 15px 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: #c5a059;
    color: #fff;
}

.cta-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

@media (max-width: 991px) {
    .eb-content h1 {
        font-size: 32px;
    }
}

/* ============================================================
   PREMIUM ANIMATION FRAMEWORK
   ============================================================ */

/* Reveal on Scroll Initial State */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Specific Staggering / Variations */
.journey-card.reveal-on-scroll,
.why-card.reveal-on-scroll {
    transition-duration: 1.2s;
}

.blog-card.reveal-on-scroll {
    transition-duration: 0.8s;
}

/* Card Tilt Transition */
.journey-card,
.dest-package-card,
.blog-card {
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
}

/* Parallax Smoothness */
.banner-bg,
.dest-bg,
.about-deco-right,
.about-deco-below {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Floating Animation Helper */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.banner-car {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Smooth Scroll Helper */
html {
    scroll-behavior: smooth;
}

/* ============================================================


/* --- Premium Mask Reveal Animation --- */
.reveal-mask {
    clip-path: inset(100% 0 0 0);
    transition: clip-path 1.2s cubic-bezier(0.19, 1, 0.22, 1), opacity 1.2s ease;
    opacity: 0;
}

.reveal-mask.revealed {
    clip-path: inset(0 0 0 0);
    opacity: 1;
}

.banner-content h1.reveal-mask {
    transition-delay: 0.2s;
}

.banner-sub.reveal-mask {
    transition-delay: 0.5s;
}

/* --- JS Ready Fallbacks (Prevent Blank Screen) --- */
.reveal-on-scroll,
.reveal-mask {
    opacity: 1;
    /* Visible by default */
}

.js-ready .reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
}

.js-ready .reveal-mask {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
}

.js-ready .reveal-on-scroll.revealed,
.js-ready .reveal-mask.revealed {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
}

/* --- Testimonials Swiper Customization --- */
.testimonials-swiper {
    padding-bottom: 60px !important;
}

.testi-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid #c5a059;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.testi-pagination .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 6px;
    background: #c5a059;
    opacity: 1;
}

.testi-card {
    transition: all 0.4s ease;
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.swiper-slide-active .testi-card {
    border-color: rgba(197, 160, 89, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* --- Unique Vertical Testimonials Styling --- */
.testimonials-swiper {
    height: 450px;
    /* Fixed height for vertical sliding */
    overflow: hidden;
}

.testi-divider {
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s ease;
    transform-origin: center;
    background-color: #000;
    /* Ensure it is black as requested */
}

/* The "Movable" effect for the divider */
.testi-divider.moving {
    transform: scaleY(0) translateY(-100%);
    opacity: 0;
}

/* Rapidly return and wipe in */
.testi-divider {
    animation: none;
}

@keyframes dividerWipe {
    0% {
        transform: scaleY(0) translateY(100%);
        opacity: 0;
    }

    100% {
        transform: scaleY(1) translateY(0);
        opacity: 1;
    }
}

/* Ensure slides fill height */
.testimonials-swiper .swiper-slide {
    height: 100% !important;
    display: flex;
    align-items: center;
}

.testi-card {
    height: 100%;
}

@media (max-width: 767px) {
    .testimonials-swiper {
        height: 800px;
        /* More height for stacked mobile slides */
    }
}

/* --- Refined Vertical Testimonials & Movable Divider --- */
.testimonials-swiper {
    height: 500px;
    overflow: hidden;
    position: relative;
}

.testi-divider {
    height: 100px;
    width: 1px;
    background-color: #000 !important;
    /* Bold black divider as requested */
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s ease;
    transform-origin: bottom;
}

/* Shutter effect: divider moves up and fades */
.testi-divider.moving {
    transform: translateY(-100%) scaleY(0);
    opacity: 0;
}

.swiper-slide {
    display: flex;
    align-items: center;
    height: 100% !important;
}

.testi-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 767px) {
    .testimonials-swiper {
        height: auto !important;
        min-height: 0 !important;
        padding-bottom: 40px !important;
    }

    .testimonials-swiper .swiper-slide {
        height: auto !important;
        display: block !important;
    }

    .testi-card {
        height: auto !important;
        margin-bottom: 20px !important;
    }

    .testi-divider {
        display: none !important;
        /* Hide on mobile to prevent layout issues */
    }
}

/* --- Testimonial Card Polish --- */
.testi-card {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.swiper-slide-active .testi-card {
    border: none !important;
    box-shadow: none !important;
}

/* --- Premium Booking Modal --- */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.booking-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.modal-content-wrap {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
    transform: translateY(50px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.booking-modal.active .modal-content-wrap {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 40px;
    color: #333;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: transform 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
    color: #c5a059;
}

.modal-inner {
    display: flex;
    min-height: 600px;
}

.modal-left {
    flex: 0 0 40%;
    position: relative;
}

.modal-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-left-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    color: #fff;
}

.overlay-text h3 {
    font-family: 'Rhodium Libre', serif;
    font-size: 28px;
    color: #c5a059;
    margin-bottom: 10px;
}

.modal-right {
    flex: 1;
    padding: 60px;
    background: #fff;
}

.form-header {
    margin-bottom: 40px;
}

.form-header .form-label {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    color: #c5a059;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-header h2 {
    font-family: 'Rhodium Libre', serif;
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.form-header p {
    color: #666;
    font-size: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
    font-size: 15px;
    color: #1a1a1a;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c5a059;
}

.btn-submit-enquiry {
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-submit-enquiry:hover {
    background: #c5a059;
    color: #fff;
}

@media (max-width: 768px) {
    .modal-inner {
        flex-direction: column;
    }

    .modal-right {
        padding: 40px 20px;
    }

    .form-header h2 {
        font-size: 28px;
    }
}

/* --- Refined & Compact Booking Modal --- */
.modal-content-wrap {
    max-width: 800px;
    /* Reduced from 1000px */
}

.modal-inner {
    min-height: 500px;
    /* Reduced from 600px */
}

.modal-right {
    padding: 40px;
    /* Reduced from 60px */
}

.form-header {
    margin-bottom: 25px;
    /* Reduced from 40px */
}

.form-header h2 {
    font-size: 28px;
    /* Reduced from 36px */
    margin-bottom: 8px;
}

.form-header p {
    font-size: 14px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-size: 11px;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 8px 0;
    font-size: 14px;
}

.btn-submit-enquiry {
    padding: 14px;
    /* Reduced from 18px */
    font-size: 14px;
}

.modal-left-overlay {
    padding: 30px;
}

.overlay-text h3 {
    font-size: 24px;
}

.overlay-text p {
    font-size: 13px;
}

.modal-close {
    top: 15px;
    right: 15px;
    font-size: 32px;
}

/* ================================================
   DAY TOURS TEMPLATE STYLES
   ================================================ */

/* --- Banner --- */
.daytours-banner {
    height: 80vh;
    min-height: 600px;
}

.bg-light-premium {
    background-color: #f9f7f2;
}

/* --- Tour Cards --- */
.dt-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.dt-card:hover {
    transform: translateY(-10px);
}

.dt-img-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.dt-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.dt-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #c5a059;
    color: #fff;
    padding: 6px 15px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 2px;
}

.dt-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dt-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #c5a059;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.dt-meta .dot {
    width: 4px;
    height: 4px;
    background: #ddd;
    border-radius: 50%;
}

.dt-title {
    font-family: 'Rhodium Libre', serif;
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.dt-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.dt-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.dt-price {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.dt-price small {
    font-weight: 400;
    font-size: 12px;
    color: #999;
}

.dt-link {
    font-size: 12px;
    font-weight: 700;
    color: #c5a059;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dt-link:hover {
    color: #1a1a1a;
}

/* --- Experience Section --- */
.dt-feat-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.dt-feat-icon {
    font-size: 32px;
    font-weight: 200;
    color: #c5a059;
    font-family: 'Rhodium Libre', serif;
    line-height: 1;
    opacity: 0.5;
}

.dt-feat-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.dt-feat-text p {
    font-size: 15px;
    color: #666;
    margin-bottom: 0;
}

.dt-experience-gallery {
    position: relative;
    padding-right: 50px;
    padding-bottom: 50px;
}

.main-img-wrap {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 20px 20px 0 #f0ede6;
}

.main-img-wrap img {
    width: 100%;
    height: auto;
}

.floating-img-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    z-index: 2;
}

.floating-deco {
    width: 100%;
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.intro-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.lead-text {
    font-size: 20px;
    color: #444;
    line-height: 1.8;
}

/* ================================================
   ULTRA-PREMIUM DAY TOURS REDESIGN
   ================================================ */

.py-100 {
    padding: 100px 0;
}

.py-150 {
    padding: 150px 0;
}

.mt-lg-100 {
    margin-top: 100px;
}

.section-heading-lg {
    font-family: 'Rhodium Libre', serif;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.section-heading-lg.white {
    color: #fff;
}

.section-label.gold {
    color: #c5a059;
}

/* --- Hero --- */
.daytours-hero {
    height: 95vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: -1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
}

.hero-label {
    font-size: 14px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 700;
    color: #c5a059;
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-family: 'Rhodium Libre', serif;
    font-size: clamp(40px, 8vw, 90px);
    line-height: 1;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 22px);
    max-width: 650px;
    opacity: 0.9;
    font-weight: 300;
    margin-bottom: 50px;
}

.hero-scroll-indicator {
    display: flex;
    align-items: center;
    gap: 20px;
}

.scroll-line {
    width: 60px;
    height: 1px;
    background: #c5a059;
}

.scroll-text {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
}

/* --- Philosophy --- */
.img-frame {
    position: relative;
    padding: 20px;
    border: 1px solid #eee;
}

.img-frame img {
    width: 100%;
    height: auto;
}

.floating-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #1a1a1a;
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.badge-year {
    font-size: 10px;
    letter-spacing: 2px;
    opacity: 0.6;
}

.badge-val {
    font-size: 24px;
    font-weight: 700;
    color: #c5a059;
}

.dt-stat-num {
    display: block;
    font-size: 40px;
    font-family: 'Rhodium Libre', serif;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.dt-stat-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #c5a059;
}

/* --- Luxury Tour Grid --- */
.bg-dark-charcoal {
    background-color: #141414;
}

.luxury-tour-card {
    position: relative;
    transition: all 0.5s ease;
}

.ltc-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 30px;
}

.ltc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.ltc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.luxury-tour-card:hover .ltc-image img {
    transform: scale(1.1);
}

.luxury-tour-card:hover .ltc-overlay {
    opacity: 1;
}

.ltc-duration {
    font-size: 11px;
    letter-spacing: 3px;
    color: #c5a059;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.ltc-title {
    font-family: 'Rhodium Libre', serif;
    font-size: 32px;
    margin-bottom: 15px;
}

.ltc-desc {
    font-size: 15px;
    color: #999;
    line-height: 1.7;
    margin-bottom: 25px;
}

.ltc-price {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #fff;
    border-bottom: 1px solid #c5a059;
    padding-bottom: 5px;
}

/* --- CTA --- */
.dt-bespoke-cta {
    background-color: #f9f7f2;
}

.cta-title {
    font-family: 'Rhodium Libre', serif;
    font-size: 48px;
    color: #1a1a1a;
}

.btn-luxury-lg {
    background: #1a1a1a;
    color: #fff;
    padding: 20px 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    transition: all 0.3s ease;
}

.btn-luxury-lg:hover {
    background: #c5a059;
    color: #fff;
    transform: translateY(-5px);
}

.abstract-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* --- Adjusted Luxury Tour Card Image Size --- */
.ltc-image {
    height: 380px !important;
    /* Reduced from 500px for a more balanced look */
}

.luxury-tour-card {
    max-width: 550px;
    /* Constrain card width for better alignment */
    margin-left: auto;
    margin-right: auto;
}

/* --- Refined Luxury Tour Card Button --- */
.ltc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ltc-btn {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #c5a059;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #c5a059;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.ltc-btn:hover {
    background: #c5a059;
    color: #fff;
    transform: translateY(-2px);
}

.ltc-content {
    background: #1a1a1a;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: none;
}

/* ================================================
   PREMIUM CONTACT PAGE STYLES
   ================================================ */

.contact-info-wrap {
    padding-right: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: #f9f7f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5a059;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-detail-item:hover .detail-icon {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-5px);
}

.detail-text span {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 5px;
}

.detail-text a,
.detail-text p {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.detail-text a:hover {
    color: #c5a059;
}

.pill-label {
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
    color: #1a1a1a;
}

.social-pill {
    width: 45px;
    height: 45px;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.social-pill:hover {
    background: #c5a059;
    border-color: #c5a059;
    color: #fff;
}

/* --- Contact Form Card --- */
.contact-form-card {
    background: #fff;
    padding: 60px;
    border-radius: 4px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.premium-form .form-control,
.premium-form .form-select {
    border: none;
    border-bottom: 1px solid #eee;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    background: transparent;
    font-size: 15px;
    color: #1a1a1a;
}

.premium-form .form-floating label {
    padding-left: 0;
    color: #999;
    font-size: 14px;
}

.premium-form .form-control:focus,
.premium-form .form-select:focus {
    box-shadow: none;
    border-color: #c5a059;
}

.btn-premium-submit {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.4s ease;
    border-radius: 2px;
}

.btn-premium-submit:hover {
    background: #c5a059;
    color: #fff;
    transform: translateY(-5px);
}

/* --- Map Placeholder --- */
.map-placeholder {
    height: 500px;
    background: #f9f7f2 url('../images/tour-bg.webp') center/cover no-repeat;
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.map-overlay {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 60px;
    text-align: center;
    border-radius: 4px;
    max-width: 400px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.map-overlay h3 {
    font-family: 'Rhodium Libre', serif;
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .contact-form-card {
        padding: 40px 20px;
    }

    .contact-info-wrap {
        padding-right: 0;
        margin-bottom: 50px;
    }
}

/* --- Journey Card Logo Overlay --- */
.journey-card {
    position: relative;
}

.journey-card-logo {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 228px;
    /* Increased for a bolder luxury presence */
    opacity: 0.9;
    pointer-events: none;
    transition: all 0.4s ease;
}

.journey-card-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.journey-card:hover .journey-card-logo {
    transform: translateX(-50%) translateY(-5px);
    opacity: 1;
}

/* ==========================================================================
   LUXURY DAY TOURS OVERHAUL
   ========================================================================== */
.ldt-moment-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f1eeeb;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
    min-height: 220px;
    margin-bottom: 25px;
}

.ldt-moment-thumb {
    position: relative;
    align-self: stretch;
    height: 100%;
    min-height: 220px;
}

.ldt-moment-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ldt-moment-info {
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ldt-moment-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 26px;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 12px;
}

.ldt-moment-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 14.5px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

@media (max-width: 768px) {
    .ldt-moment-card {
        grid-template-columns: 1fr;
    }

    .ldt-moment-thumb {
        height: 240px;
        min-height: 240px;
    }

    .ldt-moment-info {
        padding: 30px 25px;
    }
}

/* ==========================================================================
   PREMIUM EDITORIAL INCLUSIONS & EXCLUSIONS REDESIGN
   ========================================================================== */
.ldt-editorial-col-label {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #4a8f60;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.ldt-editorial-col-label.label-excluded {
    color: #c95b5b;
}

.ldt-editorial-col-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 26px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.ldt-editorial-split-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.ldt-editorial-split-list li {
    font-family: 'Outfit', sans-serif;
    font-size: 14.5px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.ldt-editorial-split-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    top: 0;
    color: #c5a059;
    font-weight: 400;
}

.ldt-editorial-split-list.list-excluded li::before {
    color: #c95b5b;
}

/* ==========================================================================
   WPFORMS PREMIUM LUXURY STYLE OVERRIDES
   ========================================================================== */
.ldt-card .wpforms-container {
    padding: 35px 25px !important;
    margin: 0 !important;
}

.ldt-card .wpforms-form {
    margin: 0 !important;
}

.ldt-card .wpforms-field {
    padding: 0 !important;
    margin-bottom: 22px !important;
    clear: both !important;
}

.ldt-card .wpforms-field-label {
    font-family: 'Outfit', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    color: #888 !important;
    text-transform: uppercase !important;
    margin-bottom: 8px !important;
    display: block !important;
}

.ldt-card .wpforms-field input[type="text"],
.ldt-card .wpforms-field input[type="email"],
.ldt-card .wpforms-field input[type="tel"],
.ldt-card .wpforms-field select,
.ldt-card .wpforms-field textarea {
    width: 100% !important;
    background: #faf9f6 !important;
    border: 1px solid #eae7e2 !important;
    padding: 14px 18px !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 13.5px !important;
    color: #1a1a1a !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

.ldt-card .wpforms-field input:focus,
.ldt-card .wpforms-field select:focus,
.ldt-card .wpforms-field textarea:focus {
    outline: none !important;
    border-color: #c5a059 !important;
    background: #ffffff !important;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.05) !important;
}

.ldt-card .wpforms-submit {
    width: 100% !important;
    background: #111111 !important;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    letter-spacing: 3px !important;
    padding: 16px !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    margin-top: 10px !important;
    display: block !important;
}

.ldt-card .wpforms-submit:hover {
    background: #c5a059 !important;
    color: #ffffff !important;
}

.ldt-card .wpforms-field-hidden,
.ldt-card .wpforms-field-hidden-container {
    display: none !important;
}

.ldt-card .wpforms-field-name-row {
    margin-bottom: 10px !important;
}

.ldt-card .wpforms-field-name-row:last-child {
    margin-bottom: 0 !important;
}

/* ==========================================================================
   SINGLE DAY TOUR DETAIL PAGE PREMIUM LAYOUT STYLES
   ========================================================================== */
.ldt-font-sans {
    font-family: 'Outfit', sans-serif !important;
}

.ldt-font-editorial {
    font-family: 'Cormorant Garamond', serif !important;
}

/* --- Hero Showcase --- */
.ldt-hero {
    position: relative;
    height: 60vh;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    overflow: hidden;
}

.ldt-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.ldt-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(106.6deg, #000000 26.11%, rgba(102, 102, 102, 0) 99.41%);
    z-index: 2;
}

.ldt-hero-container {
    position: relative;
    z-index: 3;
}

.ldt-hero-label {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #c5a059;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.ldt-hero-title {
    font-size: clamp(34px, 5vw, 56px);
    color: #ffffff;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 25px;
}

/* --- Frosted Glass Metadata Strip --- */
.ldt-glass-bar {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 12px 28px;
    border-radius: 50px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ldt-glass-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 500;
}

.ldt-glass-item svg {
    color: #c5a059;
    flex-shrink: 0;
}

.ldt-glass-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .ldt-glass-bar {
        border-radius: 16px;
        padding: 15px 20px;
        gap: 15px;
        width: 100%;
    }

    .ldt-glass-divider {
        display: none;
    }

    .ldt-glass-item {
        width: 100%;
    }
}

/* --- Main Layout Sections --- */
.ldt-main-section {
    padding: 90px 0;
    background-color: #faf9f6;
}

.ldt-content-wrap {
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    border: 1px solid #f1eeeb;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.01);
}

@media (max-width: 768px) {
    .ldt-content-wrap {
        padding: 30px 20px;
    }
}

.ldt-section-header {
    margin-bottom: 25px;
}

.ldt-section-title {
    font-size: 32px;
    font-weight: 500;
    color: #111111;
    position: relative;
    padding-bottom: 12px;
}

.ldt-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #c5a059;
}

.ldt-lead-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
}

.ldt-lead-text p {
    margin-bottom: 20px;
}

/* --- Signature Moments List Styling --- */
.ldt-moment-list {
    padding-left: 20px;
    margin-top: 10px;
    list-style: none;
}

.ldt-moment-list li {
    position: relative;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.ldt-moment-list li::before {
    content: '•';
    position: absolute;
    left: -20px;
    color: #c5a059;
    font-size: 16px;
    line-height: 1;
    top: 1px;
}

/* --- Chronological Timeline --- */
.ldt-timeline-container {
    position: relative;
    padding-left: 35px;
    margin-top: 35px;
}

.ldt-timeline-container::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: #eae7e2;
}

.ldt-timeline-node {
    position: relative;
    margin-bottom: 35px;
    transition: all 0.3s ease;
}

.ldt-timeline-node:last-child {
    margin-bottom: 0;
}

.ldt-timeline-marker {
    position: absolute;
    left: -37px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #c5a059;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 2px #c5a059, 0 8px 16px rgba(197, 160, 89, 0.3);
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ldt-timeline-content {
    background: #ffffff;
    padding: 24px 30px;
    border-radius: 16px;
    border: 1px solid #f1eeeb;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.01);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ldt-timeline-node:hover .ldt-timeline-content {
    border-color: #c5a059;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    transform: translateX(6px);
}

.ldt-timeline-node:hover .ldt-timeline-marker {
    transform: scale(1.15);
    background: #111111;
    box-shadow: 0 0 0 2px #111111, 0 8px 16px rgba(17, 17, 17, 0.2);
}

.ldt-timeline-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.ldt-timeline-node-title {
    font-size: 20px;
    font-weight: 500;
    color: #111111;
    margin: 0;
}

.ldt-timeline-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    background: rgba(197, 160, 89, 0.08);
    color: #c5a059;
    padding: 6px 14px;
    border-radius: 30px;
    text-transform: uppercase;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.ldt-timeline-body {
    font-size: 14.5px;
    line-height: 1.7;
    color: #555;
}

/* --- Sidebar Concierge Cards --- */
.ldt-sidebar {
    position: sticky;
    top: 40px;
}

.ldt-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f1eeeb;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    margin-bottom: 30px;
    overflow: hidden;
}

.ldt-card-header {
    background: #111111;
    padding: 30px 25px;
    text-align: center;
    color: #ffffff;
}

.ldt-card-header span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    display: block;
    margin-bottom: 6px;
}

.ldt-card-price {
    font-size: 38px;
    color: #c5a059;
    font-weight: 500;
    margin-bottom: 4px;
}

.ldt-card-price small {
    font-size: 14px;
    opacity: 0.8;
}

.ldt-card-per {
    font-size: 12px;
    opacity: 0.8;
}

/* --- Luxury Add-ons UI Checkbox --- */
#ldt-luxury-addons-source {
    display: block;
    margin-top: 15px !important;
}

#ldt-luxury-addons-source .ldt-label-luxury {
    font-family: 'Outfit', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    color: #888 !important;
    text-transform: uppercase !important;
    margin-bottom: 12px !important;
    display: block !important;
}

#ldt-luxury-addons-source .ldt-check-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: 12px !important;
    margin-bottom: 24px !important;
}

#ldt-luxury-addons-source label.ldt-check-item {
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    padding: 14px 16px 14px 44px !important;
    background: #faf9f6 !important;
    border: 1px solid #eae7e2 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    font-size: 13px !important;
    color: #111111 !important;
    user-select: none !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    margin: 0 0 8px 0 !important;
    text-transform: none !important;
    font-family: 'Outfit', sans-serif !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

#ldt-luxury-addons-source label.ldt-check-item:last-child {
    margin-bottom: 0 !important;
}

#ldt-luxury-addons-source label.ldt-check-item input.ldt-luxury-addon-checkbox {
    position: absolute !important;
    opacity: 0 !important;
    display: none !important;
    /* Hide native checkbox completely */
}

#ldt-luxury-addons-source label.ldt-check-item .ldt-checkmark {
    position: absolute !important;
    left: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    height: 18px !important;
    width: 18px !important;
    background-color: #ffffff !important;
    border: 1px solid #dcdad6 !important;
    border-radius: 4px !important;
    transition: all 0.2s ease !important;
}

#ldt-luxury-addons-source label.ldt-check-item:hover {
    border-color: #c5a059 !important;
    background-color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.05) !important;
}

#ldt-luxury-addons-source label.ldt-check-item:hover .ldt-checkmark {
    border-color: #c5a059 !important;
}

/* Selected active card state */
#ldt-luxury-addons-source label.ldt-check-item.is-selected {
    background: rgba(197, 160, 89, 0.04) !important;
    border-color: #c5a059 !important;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.06) !important;
}

/* Show checkmark when input is checked */
#ldt-luxury-addons-source label.ldt-check-item input.ldt-luxury-addon-checkbox:checked~.ldt-checkmark {
    background-color: #c5a059 !important;
    border-color: #c5a059 !important;
}

#ldt-luxury-addons-source label.ldt-check-item .ldt-checkmark::after {
    content: "" !important;
    position: absolute !important;
    display: none !important;
}

#ldt-luxury-addons-source label.ldt-check-item input.ldt-luxury-addon-checkbox:checked~.ldt-checkmark::after {
    display: block !important;
}

#ldt-luxury-addons-source label.ldt-check-item .ldt-checkmark::after {
    left: 5.5px !important;
    top: 2.5px !important;
    width: 5px !important;
    height: 9px !important;
    border: solid white !important;
    border-width: 0 2px 2px 0 !important;
    transform: rotate(45deg) !important;
}

/* --- Tour Essentials list --- */
.ldt-essentials {
    padding: 35px 25px;
}

.ldt-essentials-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f1eeeb;
    gap: 15px;
}

.ldt-essentials-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ldt-essentials-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #888;
    text-transform: uppercase;
}

.ldt-essentials-val {
    font-size: 13.5px;
    font-weight: 600;
    color: #111111;
    text-align: right;
}

/* --- Hub Banner --- */
.ldt-hub-banner {
    position: relative;
    height: 55vh;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.ldt-hub-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.ldt-hub-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(106.6deg, #000000 26.11%, rgba(102, 102, 102, 0) 99.41%);
    z-index: 1;
}

.ldt-hub-banner-content {
    padding-bottom: 50px;
}

.ldt-hub-banner-content h1 {
    font-size: clamp(36px, 5vw, 56px);
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 400;
}

.ldt-hub-banner-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .ldt-hub-banner {
        height: 45vh;
        min-height: 320px;
    }

    .ldt-hub-banner-content {
        padding-bottom: 30px;
    }

    .ldt-hub-banner-content h1 {
        font-size: 32px;
    }
}

/* --- Hub Tour Cards --- */
.ldt-hub-card-wrap {
    height: 100%;
}

.ldt-hub-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f1eeeb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ldt-hub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border-color: #c5a059;
}

.ldt-hub-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

.ldt-hub-card:hover .ldt-hub-card-img img {
    transform: scale(1.06);
}

.ldt-hub-card-price-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #c5a059;
    color: #ffffff;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 4px;
    z-index: 2;
}

.ldt-hub-card-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ldt-hub-card-meta {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #c5a059;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.ldt-hub-card-title {
    font-size: 22px;
    color: #111111;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.3;
}

.ldt-hub-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ldt-hub-card-title a:hover {
    color: #c5a059;
}

.ldt-hub-card-desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}

/* --- Hub Symmetrical Layout Overrides --- */
.ldt-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.ldt-hub-featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f1eeeb;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
    margin-bottom: 45px;
}

.ldt-hub-featured-img {
    position: relative;
    min-height: 380px;
}

.ldt-hub-featured-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ldt-hub-featured-price-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #c5a059;
    color: #ffffff;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 4px;
    z-index: 2;
}

.ldt-hub-featured-info {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ldt-hub-featured-badge {
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
    color: #c5a059;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.ldt-hub-featured-title {
    font-size: 34px;
    color: #111111;
    font-weight: 500;
    margin-bottom: 15px;
}

.ldt-hub-featured-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.ldt-hub-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c5a059;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ldt-hub-card-link:hover {
    color: #111111;
}

@media (max-width: 992px) {
    .ldt-hub-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ldt-hub-featured-card {
        grid-template-columns: 1fr;
    }

    .ldt-hub-featured-img {
        height: 280px;
        min-height: 280px;
    }

    .ldt-hub-featured-info {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .ldt-hub-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Signature Moments Grid & Cards --- */
.ldt-moments-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 30px;
}

.ldt-moment-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f1eeeb;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.01);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ldt-moment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border-color: #c5a059;
}

.ldt-moment-title {
    font-size: 24px;
    color: #111111;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 500;
}

.ldt-moment-thumb {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #faf9f6;
    width: 100%;
    height: 380px;
    min-height: 260px;
    margin-bottom: 24px;
}

.ldt-moment-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ldt-moment-card:hover .ldt-moment-thumb img {
    transform: scale(1.04);
}

.ldt-moment-info {
    width: 100%;
}

@media (max-width: 768px) {
    .ldt-moment-card {
        padding: 20px;
    }

    .ldt-moment-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .ldt-moment-thumb {
        height: 220px;
        min-height: 220px;
        margin-bottom: 18px;
    }
}

/* ============================================
   Tour Gallery Section (Swiper.js Redesign)
   ============================================ */
.ldt-gallery-section {
    position: relative;
    overflow: hidden;
}

.ldt-gallery-carousel-wrap {
    width: 100%;
    position: relative;
}

.ldt-gallery-swiper {
    width: 100%;
    padding: 10px 0 50px 0 !important;
}

/* Force left padding of the first slide to align with bootstrap container */
@media (min-width: 992px) {
    .ldt-gallery-swiper {
        padding-left: calc((100vw - 1400px) / 2 + 3rem) !important;
        padding-right: calc((100vw - 1400px) / 2 + 3rem) !important;
    }
}

@media (max-width: 1400px) and (min-width: 992px) {
    .ldt-gallery-swiper {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }
}

@media (max-width: 991px) {
    .ldt-gallery-swiper {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}

.ldt-gallery-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1.6 / 1;
    background: #e1deda;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.ldt-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.ldt-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(1, 1, 1, 0.85) 0%, rgba(1, 1, 1, 0) 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    box-sizing: border-box;
}

.ldt-gallery-caption {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover States */
.ldt-gallery-card:hover .ldt-gallery-overlay {
    opacity: 1;
}

.ldt-gallery-card:hover .ldt-gallery-img {
    transform: scale(1.05);
}

.ldt-gallery-card:hover .ldt-gallery-caption {
    transform: translateY(0);
}

/* Custom Navigation Controls */
.ldt-swiper-prev,
.ldt-swiper-next {
    width: 46px;
    height: 46px;
    border: 1px solid #e1deda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #111111;
}

.ldt-swiper-prev:hover,
.ldt-swiper-next:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

.ldt-swiper-prev svg,
.ldt-swiper-next svg {
    display: block;
}

/* Mobile Pagination Bullets */
.ldt-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #bfbfbf;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.ldt-swiper-pagination .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 4px;
    background: #c5a880 !important;
    opacity: 1;
}

/* ==============================
   ABOUT — Lead Quote, Gold Divider & Commitment Block
   ============================== */
.about-lead-quote {
    position: relative;
    padding-left: 20px;
    border-left: 3px solid #c5a880;
    margin-bottom: 24px;
}

.about-lead-quote p {
    font-size: 17px !important;
    font-style: italic;
    color: var(--color-secondary) !important;
    line-height: 1.9 !important;
}

.about-gold-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #c5a880, #e8d5b8);
    margin-bottom: 24px;
    border-radius: 2px;
}

.about-commitment-block {
    background: #faf9f6;
    border: 1px solid #f1eeeb;
    border-radius: 6px;
    padding: 24px 28px;
    margin: 28px 0;
}

.about-commitment-heading {
    font-family: var(--font-reddit);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-secondary);
    margin-bottom: 14px;
}

.about-commitment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-commitment-list li {
    font-family: var(--font-reddit);
    font-weight: 600;
    font-size: 15px;
    color: var(--color-muted);
    line-height: 1.6;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-commitment-list li+li {
    border-top: 1px solid #f1eeeb;
}

.commit-svg {
    width: 18px;
    height: 18px;
    color: #c5a880;
    flex-shrink: 0;
    display: inline-block;
}

/* ---------- About Clamp & Read More ---------- */
.about-clamp-wrap {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* Set to 3 lines. Change to 4 or 5 as needed */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-reddit);
    font-weight: 600;
    font-size: 15px;
    color: #c5a880 !important;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    color: var(--color-secondary) !important;
}

.btn-read-more svg {
    transition: transform 0.3s ease;
}

.btn-read-more:hover svg {
    transform: translate(3px, -3px);
}

/* ==========================================================================
   WPFORMS GLOBAL BOOKING MODAL LUXURY STYLE OVERRIDES
   ========================================================================== */
.booking-modal .modal-content-wrap {
    max-width: 800px !important;
    /* Restore split screen width */
    max-height: 90vh;
    overflow-y: auto;
}

.booking-modal .modal-right {
    padding: 40px !important;
}

.booking-modal .form-header {
    margin-bottom: 20px !important;
}

.booking-modal .form-header h2 {
    font-size: 26px !important;
    margin-bottom: 8px !important;
}

.booking-modal .form-header p {
    font-size: 13px !important;
    margin-bottom: 0 !important;
}

.booking-modal .wpforms-container {
    padding: 0 !important;
    margin: 0 !important;
}

.booking-modal .wpforms-form {
    margin: 0 !important;
}

.booking-modal .wpforms-field {
    padding: 0 !important;
    margin-bottom: 15px !important;
    clear: both !important;
    /* Keep default stack layout */
}

.booking-modal .wpforms-field-label {
    display: block !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin-bottom: 4px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.booking-modal .wpforms-field input[type="text"],
.booking-modal .wpforms-field input[type="email"],
.booking-modal .wpforms-field input[type="tel"],
.booking-modal .wpforms-field select,
.booking-modal .wpforms-field textarea {
    width: 100% !important;
    padding: 6px 0 !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid #ddd !important;
    font-size: 14px !important;
    color: #1a1a1a !important;
    transition: border-color 0.3s ease !important;
    border-radius: 0 !important;
    box-sizing: border-box !important;
}

.booking-modal .wpforms-field input:focus,
.booking-modal .wpforms-field select:focus,
.booking-modal .wpforms-field textarea:focus {
    outline: none !important;
    border-bottom-color: #c5a059 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.booking-modal .wpforms-submit-container {
    padding: 0 !important;
    margin-top: 15px !important;
}

.booking-modal .wpforms-submit {
    width: 100% !important;
    background: #1a1a1a !important;
    color: #fff !important;
    border: none !important;
    padding: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    font-family: 'Outfit', sans-serif !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.booking-modal .wpforms-submit:hover {
    background: #c5a059 !important;
    color: #fff !important;
}

.booking-modal .wpforms-field-hidden,
.booking-modal .wpforms-field-hidden-container {
    display: none !important;
}

/* Ensure modal is completely non-interactive and hidden when inactive */
.booking-modal {
    pointer-events: none !important;
    visibility: hidden !important;
}

.booking-modal.active {
    pointer-events: auto !important;
    visibility: visible !important;
}

.post-sidebar {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 120px !important;
    z-index: 10 !important;
}