:root {
    /* Color System */
    --valley-mist: #F7F2EB;
    --mountain-dusk: #252420;
    --dzong-gold: #A0845C;
    --bhutan-sand: #C9B99A;
    --white: #FFFFFF;

    /* Typography Fluid Scaling */
    /* Hero / H1: 52-60px / 40-48px / 32-36px */
    --h1-size: clamp(32px, 5vw, 60px);
    /* H2 Section titles: 36-42px / 28-32px / 24-28px */
    --h2-size: clamp(24px, 3.5vw, 42px);
    /* H3 Subheadings: 18-20px / 16-18px / 15-16px */
    --h3-size: clamp(15px, 1.8vw, 20px);
    /* Desktop/Tablet/Mobile: 13/12/11 */
    --body-size: clamp(11px, 1.2vw, 13px);
    --nav-size: 13px;
}

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: var(--body-size);
    color: var(--mountain-dusk);
    background-color: var(--valley-mist);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.1;
}

h3,
.nav-link,
.btn,
.eyebrow {
    font-family: 'Jost', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- Utilities --- */
.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-py {
    padding: 8rem 0;
}

@media (max-width: 768px) {
    .section-py {
        padding: 5rem 0;
    }
}

.text-gold {
    color: var(--dzong-gold);
}

.text-sand {
    color: var(--bhutan-sand);
}

.text-light {
    color: var(--valley-mist);
}

.text-white {
    color: var(--white);
}

.bg-dark {
    background-color: var(--mountain-dusk);
}

.bg-light {
    background-color: var(--valley-mist);
}

.btn {
    display: inline-block;
    font-size: var(--nav-size);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 1rem 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--dzong-gold);
    color: var(--valley-mist);
    border: 1px solid var(--dzong-gold);
}

.btn-primary:hover {
    background-color: var(--bhutan-sand);
    border-color: var(--bhutan-sand);
    color: var(--mountain-dusk);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--valley-mist);
    color: var(--valley-mist);
}

.btn-outline:hover {
    background-color: var(--valley-mist);
    color: var(--mountain-dusk);
}

/* Scroll Animations (Deactivated) */
.fade-in {
    opacity: 1;
    transform: none;
}

.fade-in.is-visible {
    opacity: 1;
    transform: none;
}

/* --- Header / Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.4s ease;
    padding: 1.5rem 0;
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background-color: rgba(37, 36, 32, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    /* Safari support */
    padding: 1rem 0;
    border-bottom: 1px solid rgba(247, 242, 235, 0.1);
}

.nav-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.logo {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.2em;
    color: var(--valley-mist);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.site-logo {
    height: 36px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: var(--nav-size);
    color: var(--valley-mist);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--dzong-gold);
    transition: width 0.3s ease;
}

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

.nav-menu:first-child {
    justify-content: flex-start;
}

.nav-menu:nth-child(3) {
    justify-content: flex-end;
}

.btn-book {
    padding: 0.5rem 1.5rem;
    border-radius: 0;
    margin-left: 1rem;
}

.header-socials {
    display: none !important;
}

.header-socials a {
    color: var(--valley-mist);
    width: 16px;
    height: 16px;
    display: flex;
    transition: opacity 0.3s;
}

.header-socials a:hover {
    opacity: 0.7;
}

.header-socials svg {
    fill: currentColor;
    width: 100%;
    height: 100%;
}

/* Mobile Menu Setup */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    cursor: pointer;
    z-index: 102;
}

.hamburger span {
    display: block;
    height: 1px;
    width: 100%;
    background-color: var(--valley-mist);
    transition: all 0.3s ease;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--valley-mist);
    z-index: 1001;
    /* Higher than header */
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    overflow-y: auto;
}

.mobile-overlay.active {
    transform: translateY(0);
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: 0.1s;
}

.mobile-overlay.active .mobile-menu-inner {
    opacity: 1;
    transform: translateY(0);
}

.mobile-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--mountain-dusk);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 10px;
    transition: opacity 0.3s;
    z-index: 1100;
}

.mobile-close:hover {
    opacity: 0.7;
}

.mobile-logo-wrap {
    margin-bottom: 2.5rem;
    width: 130px;
}

.mobile-logo-wrap img {
    width: 100%;
    height: auto;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin: 0;
    margin-bottom: 2.5rem;
    padding: 0;
    list-style: none;
}

.mobile-nav-link {
    font-family: 'Outfit', 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--mountain-dusk);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.3s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    opacity: 0.6;
}

.mobile-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 2rem;
    margin-top: 1rem;
}

.mobile-cta-wrap .btn-book {
    width: 100%;
    max-width: 240px;
    text-align: center;
    padding: 1rem 2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background-color: var(--mountain-dusk);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 0;
    margin-left: 0;
    margin-bottom: 1.5rem;
}

.mobile-socials {
    display: flex;
    gap: 2.5rem;
    margin-top: 1.5rem;
}

.mobile-socials a {
    color: var(--mountain-dusk);
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.mobile-socials a:hover {
    opacity: 0.6;
}

.mobile-socials svg {
    fill: currentColor;
    width: 100%;
    height: 100%;
}

@media (max-width: 900px) {
    .nav-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-menu {
        display: none;
    }

    .btn-book {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hamburger animation */
    .hamburger.active span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 8rem;
    color: var(--white);
    background-color: transparent;
}

/* Left-aligned Hero Layout */
.hero.hero-left {
    justify-content: flex-start;
}

/* Container inside hero-left: align with header's 5% padding grid */
.hero-left .container {
    text-align: left;
    max-width: 1440px;
    padding: 0 5%;
}

@media (max-width: 768px) {
    .hero-left .container {
        padding: 0 5%;
    }
}

/* ── Page Hero: Mixed-typography Title (e.g. "About Us", "Blogs") ── */
.page-hero-title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 1rem;
}

/* The italic serif word within the title (e.g. "Us", "Journal") */
.page-hero-title em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
}

/* ── Hero Breadcrumb ── */
.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.70);
}

.hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.70);
    text-decoration: none;
    transition: color 0.25s ease;
}

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

.breadcrumb-arrow {
    font-size: 10px;
    opacity: 0.5;
}

/* Container layout for left-hero pages (stacks title + breadcrumb) */
.hero-left .hero-content .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-color: var(--mountain-dusk);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    /* Start slightly zoomed in for Ken Burns effect */
    transition: opacity 2s ease-in-out, transform 8s linear;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.0);
    /* Zoom out slightly while fading in */
}



.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* Subtle dark overlay for legibility */
    z-index: -1;
}

.hero-content {
    text-align: center;
    width: 100%;
    color: var(--valley-mist);
}

.eyebrow {
    font-size: var(--body-size);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

.why-bhutan-title {
    font-size: var(--h2-size);
    margin: 0 auto;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.hero h1 {
    font-size: var(--h1-size);
    margin-bottom: 1.5rem;
    white-space: pre-line;
}

.hero p {
    color: var(--valley-mist);
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.hero-left p {
    margin-left: 0;
    margin-right: 0;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

@media (max-width: 600px) {
    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 250px;
    }
}

.scroll-down {
    display: none !important;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background-color: rgba(247, 242, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--dzong-gold);
    animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(200%);
    }
}

/* --- 1. Introduction Strip --- */
.intro-strip {
    background-color: var(--valley-mist);
    text-align: center;
    padding: 8rem 5% 3rem 5%;
    position: relative;
    color: var(--mountain-dusk);
}

.intro-logo {
    height: 70px;
    width: auto;
    margin-bottom: 2.5rem;
}

.intro-description {
    font-size: clamp(16px, 1.5vw, 18px);
    font-family: 'Lato', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* --- Gallery Auto-Slider --- */
.gallery-slider-section {
    width: 100%;
    overflow: hidden;
    background-color: var(--valley-mist);
    padding: 0rem 0 8rem;
}

.gallery-track-container {
    width: 100%;
    overflow: hidden;
    padding: 0;
    position: relative;
    /* Subtle side fade effect */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}



.gallery-track {
    display: flex;
    gap: 30px;
    padding: 2rem 0;
    width: max-content;
    will-change: transform;
}

.gallery-item {
    flex: 0 0 220px;
    /* Reduced image size */
    aspect-ratio: 3/4;
    /* Portrait */
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s ease;
    position: relative;
}

/* Alternating zig-zag pattern */
.gallery-item:nth-child(odd) {
    transform: translateY(30px);
}

.gallery-item:nth-child(even) {
    transform: translateY(-30px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(10%);
    opacity: 1;
    transition: all 0.8s ease;
}

.gallery-item:hover {
    z-index: 10;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}



@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 180px;
    }

    .gallery-track {
        gap: 20px;
    }
}

/* --- 2. Simple Screenshot-Inspired Grid --- */
.container-full {
    width: 100%;
    padding: 0;
    /* Forced full width, no side padding */
}

.simple-adventure-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: repeat(2, 450px);
    gap: 0;
    width: 100%;
    margin: 0 auto;
}

.adv-slot {
    position: relative;
    overflow: hidden;
    display: flex;
}

/* Layout Mapping */
.slot-tall {
    grid-row: span 2;
}

.slot-text {
    background-color: var(--valley-mist);
    padding: 6rem;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.slot-small {
    width: 100%;
    height: 100%;
}

.adv-img-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.adv-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

/* Light Dark Overlay */
.adv-card-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(37, 36, 32, 0.05) 0%,
            rgba(37, 36, 32, 0.45) 100%);
    z-index: 1;
    pointer-events: none;
    transition: background 0.5s ease;
}

/* Deepen overlay on hover for readability */
.adv-slot:hover .adv-card-overlay-dark {
    background: linear-gradient(to bottom,
            rgba(37, 36, 32, 0.15) 0%,
            rgba(37, 36, 32, 0.7) 100%);
}

.adv-slot:hover .adv-img-container img {
    transform: scale(1.05);
}

/* Minimal Text Overlay */
.adv-text-overlay {
    position: absolute;
    bottom: 3.5rem;
    left: 3.5rem;
    right: 3.5rem;
    color: var(--white);
    z-index: 2;
}

.adv-text-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1;
    transition: margin-bottom 0.4s ease;
}

/* Push title up on hover to make room for desc + btn */
.adv-slot:hover .adv-text-overlay h3 {
    margin-bottom: 0.8rem;
}

/* Hidden by default, revealed on hover */
.adv-short-desc {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.5;
    max-width: 90%;
    font-weight: 300;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}

.adv-slot:hover .adv-short-desc {
    opacity: 1;
    transform: translateY(0);
}

/* New Card CTA Button (Minimalist Line Style) */
.adv-card-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white);
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease 0.12s, transform 0.4s ease 0.12s, color 0.3s ease;
}

.adv-slot:hover .adv-card-btn {
    opacity: 1;
    transform: translateY(0);
}

.adv-card-btn::before {
    content: '';
    width: 30px;
    height: 1px;
    background-color: var(--white);
    display: block;
    transition: width 0.3s ease;
}

.adv-card-btn:hover {
    color: var(--bhutan-sand);
}

.adv-card-btn:hover::before {
    width: 50px;
    background-color: var(--bhutan-sand);
}

/* Dark variant for light backgrounds */
.adv-card-btn.is-dark {
    color: var(--mountain-dusk);
}

.adv-card-btn.is-dark::before {
    background-color: var(--mountain-dusk);
}

.adv-card-btn.is-dark:hover {
    color: var(--dzong-gold);
}

.adv-card-btn.is-dark:hover::before {
    background-color: var(--dzong-gold);
}

/* Keep text card CTA always visible (not affected by hover-hide) */
.adv-text-card .adv-card-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Center Text Card */
.adv-text-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--mountain-dusk);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.adv-text-card h2 em {
    font-style: italic;
}

.adv-text-card p {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    max-width: 100%;
}

/* Responsive */
@media (max-width: 1200px) {
    .simple-adventure-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .slot-tall {
        grid-row: span 1;
        grid-column: span 2;
        height: 500px;
    }

    .slot-text {
        grid-column: span 1;
        padding: 3rem;
    }

    .slot-small {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .simple-adventure-grid {
        grid-template-columns: 1fr;
    }

    .slot-tall,
    .slot-text,
    .slot-small {
        grid-column: span 1;
        height: auto;
        min-height: 350px;
    }

    .slot-text {
        order: -1;
    }

    /* On mobile, always show desc + CTA since no hover */
    .adv-short-desc,
    .adv-card-btn {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .adv-text-overlay h3 {
        margin-bottom: 0.8rem !important;
    }

    /* Keep intro at top */
}

/* --- 3. Experiences Section (New) --- */

.exp-new-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: flex-end;
    margin-bottom: 5rem;
}

.exp-main-title {
    font-size: var(--h2-size);
    line-height: 1.1;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: -0.01em;
    color: var(--mountain-dusk);
    margin-top: 1rem;
}

.exp-main-desc {
    font-size: var(--body-size);
    line-height: 1.8;
    color: var(--mountain-dusk);
    opacity: 0.8;
    max-width: 500px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.exp-cards-full {
    display: flex;
    width: 100%;
    height: 85vh;
    min-height: 700px;
    gap: 0;
    overflow: hidden;
}

.exp-card {
    position: relative;
    flex: 1;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--valley-mist);
    transition: flex 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.exp-card:hover {
    flex: 2.5;
}

.exp-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 1;
}

.exp-card:hover .exp-card-image {
    transform: scale(1.1);
}

.exp-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    align-items: flex-end;
    padding: 0;
    transition: all 0.6s ease;
    pointer-events: none;
    font-family: 'Jost', sans-serif;
}

.exp-card:hover .exp-card-overlay {
    background: transparent;
}




.exp-card-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 4rem;
    color: var(--white);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    background: transparent;
}

.exp-card:hover .exp-card-content {
    background: var(--valley-mist);
    color: var(--mountain-dusk);
    height: 50%;
    justify-content: center;
}

.exp-number {
    position: absolute;
    top: 4rem;
    left: 4rem;
    font-family: 'Jost', sans-serif;
    font-size: 8rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
    z-index: 10;
    transition: all 0.6s ease;
}

.exp-card:hover .exp-number {
    color: rgba(255, 255, 255, 0.3);
    transform: translateY(-10px);
}

.exp-card h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: clamp(24px, 3vw, 32px);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: inherit;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.exp-card:hover h3 {
    color: var(--mountain-dusk);
}

.exp-card p {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #555;
    max-width: 500px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

.exp-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

.btn-explore {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--mountain-dusk);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.3s;
    font-weight: 500;
    pointer-events: auto;
}

.btn-explore::before {
    content: '';
    width: 40px;
    height: 1px;
    background-color: var(--mountain-dusk);
}

.exp-card:hover .btn-explore {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .exp-new-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }

    .exp-main-desc {
        max-width: 100%;
    }

    .exp-cards-full {
        flex-direction: column;
        height: auto;
    }

    .exp-card {
        height: 500px;
        flex: none !important;
    }

    .exp-card-overlay {
        background: transparent !important;
    }

    .exp-card:hover {
        flex: none !important;
    }

    .exp-card-content {
        background: var(--valley-mist) !important;
        color: var(--mountain-dusk) !important;
        padding: 3rem 2rem;
        height: 50% !important;
        justify-content: center !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .exp-card h3,
    .exp-card p,
    .btn-explore {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
        color: inherit !important;
    }

    .btn-explore {
        color: var(--mountain-dusk) !important;
    }

    .btn-explore::before {
        background-color: var(--mountain-dusk) !important;
    }

    .exp-number {
        font-size: 4rem;
        top: 2rem;
        left: 2rem;
    }
}

/* --- 4. Why Bhutan --- */
.features-section {
    background-color: var(--valley-mist);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.feature-item svg {
    width: 32px;
    height: 32px;
    stroke: var(--dzong-gold);
    stroke-width: 1;
    fill: none;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

.feature-item p {
    font-size: 14px;
    color: #666;
    margin: 0 auto;
    max-width: 250px;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 500px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* --- 5. Packages --- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.pkg-card {
    background-color: #fff;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(201, 185, 154, 0.3);
    transition: all 0.3s ease;
}

.pkg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 36, 32, 0.05);
}

.pkg-card.highlight {
    border: 1px solid var(--dzong-gold);
    padding: 4.5rem 2rem;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(37, 36, 32, 0.08);
    position: relative;
}

.pkg-card.highlight::before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--dzong-gold);
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: 20px;
}

.pkg-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 0.5rem;
}

.pkg-duration {
    display: block;
    color: var(--dzong-gold);
    font-family: 'Jost', sans-serif;
    font-size: var(--body-size);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(201, 185, 154, 0.3);
}

.pkg-list {
    text-align: left;
    margin-bottom: 3rem;
    display: inline-block;
}

.pkg-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #555;
}

.pkg-list li::before {
    content: '♦';
    position: absolute;
    left: 0;
    color: var(--dzong-gold);
    font-size: 10px;
    top: 2px;
}

.pkg-price {
    font-size: 14px;
    color: #888;
    margin-bottom: 1.5rem;
}

.pkg-price span {
    color: var(--mountain-dusk);
    font-family: 'Jost', sans-serif;
    font-size: 22px;
    font-weight: 500;
}

@media (max-width: 992px) {
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
        gap: 3rem;
    }

    .pkg-card.highlight {
        transform: none;
        padding: 3rem 2rem;
    }

    .pkg-card:hover {
        transform: translateY(-5px);
    }
}



/* --- 6. CTA Contact Section --- */
.cta-contact-section {
    position: relative;
    background-image: url('../assets/images/snowmentrek11.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 0rem 0 10rem;
    color: var(--white);
    overflow: hidden;
    margin-top: 0;
}

.cta-contact-section {
    position: relative;
    background-image: url('../assets/images/snowmentrek11.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 10rem 0;
    color: var(--white);
    overflow: hidden;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 1) 0%, rgba(26, 26, 26, 0.85) 20%, rgba(26, 26, 26, 0.85) 80%, rgba(26, 26, 26, 1) 100%);
    z-index: 1;
}

.cta-contact-section .container {
    z-index: 2;
    position: relative;
}

/* Partners Section (Extracted) */
.partners-section {
    padding: 10rem 0;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.partners-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(26, 26, 26, 1), transparent);
    z-index: 2;
    pointer-events: none;
}

.partners-area {
    text-align: center;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .partners-area {
        overflow: hidden;
        width: 100%;
    }

    .partners-grid.is-infinite {
        display: flex;
        flex-wrap: nowrap;
        gap: 5rem;
        justify-content: flex-start;
        padding: 1rem 0;
        width: max-content;
        animation: marquee 15s linear infinite;
    }

    .brand-logo {
        width: 120px;
        flex: 0 0 auto;
        opacity: 0.7;
    }
}

.partner-meta {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    letter-spacing: 0.1em;
    color: var(--white);
    opacity: 0.5;
    margin-bottom: 3rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

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

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5rem;
    align-items: center;
}

.partners-grid.is-infinite {
    flex-wrap: nowrap;
    justify-content: flex-start;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.brand-logo {
    width: 120px;
    height: auto;
    filter: grayscale(1) invert(1) contrast(1.2);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.brand-logo:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.1);
}

.cta-form-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-heading {
    font-size: clamp(32px, 4vw, 56px);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--white);
}

.cta-heading em {
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    text-transform: none;
}

.cta-subtext {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 5rem;
    color: var(--white);
    opacity: 0.7;
    font-family: 'Lato', sans-serif;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-family: 'Jost', sans-serif !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    color: var(--white) !important;
    opacity: 0.9 !important;
    margin-bottom: 0.5rem !important;
}

.form-group input,
.form-group textarea {
    background: transparent !important;
    border: none;
    border-bottom: 1px solid var(--white) !important;
    padding: 1rem 0 !important;
    color: var(--white);
    font-family: 'Lato', sans-serif !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}

/* White placeholders */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--dzong-gold) !important;
    padding-left: 0.5rem !important;
}

.form-group textarea {
    min-height: 120px !important;
    resize: none !important;
}

.submit-wrapper {
    margin-top: 2rem;
    text-align: center;
}

.submit-btn {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(247, 242, 235, 0.3);
    padding: 1rem 3rem;
    font-family: 'Jost', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--white);
    color: var(--mountain-dusk);
    border-color: var(--white);
}

@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-contact-section {
        padding: 8rem 0;
    }

    .cta-heading {
        font-size: 32px;
    }
}

/* --- 7. Footer --- */
footer {
    background-color: var(--mountain-dusk);
    color: var(--valley-mist);
    border-top: 1px solid var(--dzong-gold);
    padding-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    letter-spacing: 0.2em;
    color: var(--valley-mist);
}

.footer-logo svg {
    width: 28px;
    height: 28px;
    fill: var(--valley-mist);
}

.footer-desc {
    color: rgba(247, 242, 235, 0.7);
    max-width: 320px;
}

.footer-title {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: var(--bhutan-sand);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(247, 242, 235, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--dzong-gold);
}

.footer-contact li {
    color: rgba(247, 242, 235, 0.8);
    margin-bottom: 0.8rem;
}

.footer-contact a {
    color: rgba(247, 242, 235, 0.8);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--dzong-gold);
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(247, 242, 235, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-bottom-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom p {
    color: rgba(247, 242, 235, 0.5);
    font-size: 12px;
    margin: 0;
}

.designer-info a {
    color: var(--dzong-gold);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.designer-info a:hover {
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: rgba(247, 242, 235, 0.5);
    transition: fill 0.3s ease;
}

.social-link:hover svg {
    fill: var(--dzong-gold);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-bottom-info {
        align-items: center;
    }
}

/* --- Tariff Hero Section --- */
.tariff-hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding-bottom: 15vh;
    background-size: cover;
    background-position: center;
}

.tariff-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.tariff-hero-container {
    position: relative;
    z-index: 3;
}

.tariff-hero-content {
    max-width: 800px;
}

.tariff-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(48px, 6vw, 80px);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.tariff-btn {
    color: var(--white) !important;
    border-bottom: none !important;
    font-weight: 400 !important;
    display: flex !important;
    align-items: center;
    gap: 2rem;
    font-size: 11px;
    letter-spacing: 0.2em;
}

.tariff-btn::before {
    content: '';
    width: 40px;
    height: 1px;
    background-color: var(--white);
    display: block;
}

.tariff-btn span {
    display: none;
}

/* --- Testimonial Premium Section --- */
.testimonial-premium {
    background-color: var(--valley-mist);
    overflow: hidden;
}

.testimonial-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 8rem;
    align-items: center;
    min-height: 600px;
}

/* Visual Panel */
.testimonial-visual {
    position: relative;
    height: 100%;
}

.main-visual-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 0.85;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.main-visual-frame img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
}

.main-visual-frame img.active-visual {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.main-visual-frame img.hidden-visual {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
}

.visual-accent-box {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 70%;
    height: 70%;
    border: 1px solid var(--bhutan-sand);
    z-index: 1;
}

/* Content Panel */
.testimonial-content {
    padding-right: 2rem;
}

.premium-slider-wrap {
    position: relative;
}

.testimonial-slides-v2 {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.slide-v2 {
    width: 100%;
    display: none;
    opacity: 0;
    pointer-events: none;
}

.slide-v2.active {
    display: block;
    pointer-events: auto;
    animation: slideReveal 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

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

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

.quote-symbol {
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    color: var(--dzong-gold);
    line-height: 1;
    margin-bottom: -20px;
    opacity: 0.3;
    margin-left: -5px;
}

.premium-quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--h2-size);
    font-style: italic;
    line-height: 1.3;
    color: var(--mountain-dusk);
    margin-bottom: 3rem;
    position: relative;
    z-index: 5;
}

.premium-author-info {
    padding-left: 2.5rem;
    border-left: 2px solid var(--dzong-gold);
}

.v2-name {
    font-family: 'Jost', sans-serif;
    font-size: var(--h3-size);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.3rem;
    color: var(--mountain-dusk);
}

.v2-loc {
    font-family: 'Lato', sans-serif;
    font-size: var(--body-size);
    color: #888;
    letter-spacing: 0.05em;
}

/* Nav Controls */
.premium-slider-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-top: 4rem;
    padding-left: 2.5rem;
    position: relative;
    z-index: 10;
}

.nav-trigger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--mountain-dusk);
    transition: color 0.3s ease;
}

.nav-trigger:hover {
    color: var(--dzong-gold);
}

.nav-trigger svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.nav-status {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-family: 'Jost', sans-serif;
    font-size: var(--body-size);
    letter-spacing: 0.1em;
}

.nav-line {
    width: 80px;
    height: 2px;
    background-color: rgba(37, 36, 32, 0.1);
    position: relative;
    overflow: hidden;
}

.nav-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--active-progress, 33.333%);
    background-color: var(--dzong-gold);
    transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Responsive */
@media (max-width: 1100px) {
    .testimonial-layout {
        gap: 4rem;
    }
}

@media (max-width: 900px) {
    .testimonial-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .testimonial-visual {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        order: -1;
    }

    .main-visual-frame {
        aspect-ratio: 0.85;
        height: auto;
        border-radius: 0;
        max-width: 360px;
        margin: 0 auto;
    }

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

    /* Hide the decorative accent box on mobile to prevent overflow */
    .visual-accent-box {
        display: none;
    }

    .testimonial-slides-v2 {
        min-height: auto;
    }

    .premium-author-info {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(160, 132, 92, 0.3);
        padding-top: 1.5rem;
        display: inline-block;
    }

    .testimonial-content {
        padding-right: 0;
    }

    .quote-symbol {
        font-size: 80px;
        margin-bottom: -10px;
    }

    .premium-quote-text {
        font-size: clamp(22px, 5vw, 32px);
    }

    .premium-slider-nav {
        justify-content: center;
        padding-left: 0;
        gap: 2rem;
    }

    .nav-line {
        width: 60px;
    }
}

.package-card {
    background: var(--valley-mist);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

/* --- Blogs Section --- */
.blogs-section {
    background-color: var(--valley-mist);
    padding: 8rem 0;
}

.blogs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
}

.blog-eyebrow {
    display: block;
    margin-bottom: 1.5rem;
    font-family: 'Jost', sans-serif;
    font-size: var(--body-size);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dzong-gold);
}



.blogs-heading {
    font-size: clamp(32px, 4vw, 56px);
    font-family: 'Cormorant Garamond', serif;
    color: var(--mountain-dusk);
    text-transform: none;
    line-height: 1.1;
}

.blogs-heading em {
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    text-transform: none;
}

.view-more {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--mountain-dusk);
    border-bottom: 1px solid rgba(37, 36, 32, 0.3);
    padding-bottom: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.view-more:hover {
    color: var(--dzong-gold);
    border-bottom-color: var(--dzong-gold);
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
}

.blog-card {
    cursor: pointer;
}

.blog-image {
    width: 100%;
    aspect-ratio: 1.5;
    overflow: hidden;
    margin-bottom: 2rem;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-meta {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    margin-bottom: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.blog-cat {
    color: var(--dzong-gold);
    font-weight: 500;
}

.blog-date {
    color: #888;
    position: relative;
    padding-left: 1.2rem;
}

.blog-date::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 10px;
    background-color: rgba(37, 36, 32, 0.2);
}

.blog-title {
    font-family: 'Jost', sans-serif;
    font-size: 24px;
    line-height: 1.35;
    margin-bottom: 1.2rem;
    color: var(--mountain-dusk);
    font-weight: 400;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--dzong-gold);
}

.blog-excerpt {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

/* Blog Read More CTA */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--mountain-dusk);
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-read-more::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background-color: var(--mountain-dusk);
    transition: width 0.3s ease, background-color 0.3s ease;
}

.blog-read-more:hover {
    color: var(--dzong-gold);
}

.blog-read-more:hover::after {
    width: 50px;
    background-color: var(--dzong-gold);
}

@media (max-width: 1024px) {
    .blogs-grid {
        gap: 2rem;
    }

    .blog-title {
        font-size: 20px;
    }
}

@media (max-width: 900px) {
    .blogs-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5rem;
        margin-bottom: 3.5rem;
    }

    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .blog-image {
        aspect-ratio: 1.6;
    }
}

/* FORCE WORDPRESS MENUS TO BE HORIZONTAL */
.nav-menu-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu-inner > li {
    position: relative;
}

.nav-menu-inner > li > a {
    display: inline-block;
    text-decoration: none;
}

/* Hide dropdowns by default */
.nav-menu-inner .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    list-style: none;
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    z-index: 999;
}

/* Show on hover */
.nav-menu-inner li.dropdown:hover > .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    white-space: nowrap;
}

/* FIX WORDPRESS MOBILE MENU COLORS */
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list > li {
    margin-bottom: 10px !important;
}

/* This is the important line */
.mobile-nav-list a {
    color: #000 !important;      /* or your brand dark color */
    font-size: 15px;
    text-decoration: none;
    display: block;
}

/* FIX WORDPRESS MOBILE MENU COLORS */
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list > li {
    margin-bottom: 10px !important;
}

/* This is the important line */
.mobile-nav-list a {
    color: #000 !important;      /* or your brand dark color */
    font-size: 15px;
    text-decoration: none;
    display: block;
}

.web-reviews-section{
    padding-top: 100px;
}

@media(max-width: 992px){
    .reviews-grid{
        margin-top: -30px;
    }
}