/* CSS Variables & Reset (Source 3 Palette) */
:root {
    --bg-deep: #0d1f4e;
    --bg-footer: #060e24;
    --text-light: #c8d2e8;
    --text-white: #ffffff;
    --bg-body: #ECECEC;
    --accent-primary: #F0EBE0;
    --glass-bg: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.12);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 80px;
    --blur-standard: blur(10px);

    /* Font System Tokens */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'DM Sans', sans-serif;
    --font-text: 'Lato', sans-serif;
    --font-accent: 'Montserrat', sans-serif;

    /* Section Spacing — single source of truth */
    --section-padding: 80px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-text);
    background: var(--bg-deep);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden !important;
}

/* Floating Glow Orbs */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 140, 255, 0.15), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    bottom: -15%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

h1,
h2,
h3,
h4,
.font-serif {
    font-family: var(--font-primary);
    color: var(--text-white);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

/* -------------------------------------------------------
 * Consistent gap between sub-hero and the first content
 * section on every page. Reference: activities.html.
 * Specificity 12 beats all single-class rules (10).
 * Only affects the immediately adjacent sibling, so
 * multi-section pages (pricing, about, etc.) are safe.
 * ------------------------------------------------------- */
section.sub-hero+section {
    padding-top: 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    display: block;
    max-width: 100%;
}

/* Header & Navigation (Source 2 Style) */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
    backdrop-filter: none;
}

.header.scrolled {
    top: 0;
    background: rgba(13, 31, 78, 0.92);
    backdrop-filter: blur(24px);
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Reusable Page Hero Section */
.page-hero {
    position: relative;
    height: 100vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-deep);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13, 31, 78, 0.4), rgba(13, 31, 78, 0.8));
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-title {
    font-size: 28px;
    margin-bottom: 0px;
    color: var(--text-white);
    animation: fadeInUp 1s ease-out;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    height: auto;
    max-height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 0px;
    align-items: center;
    border: none;
    border-radius: 50px;
    padding: 4px;
    background: transparent;
    backdrop-filter: none;
    list-style: none;
}

.mobile-logo {
    display: none;
}

/* Dropdown Styles */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(13, 31, 78, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    list-style: none;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    color: var(--text-white);
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    text-align: left;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent-primary);
    padding-left: 30px;
}

/* Arrow indicator for dropdown */
.has-dropdown>a i {
    font-size: 0.75rem;
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.has-dropdown:hover>a i,
.has-dropdown.dropdown-open>a i {
    transform: rotate(180deg);
}

/* Mobile Dropdown Styling */
@media (max-width: 1024px) {
    .has-dropdown .dropdown-menu {
        position: static;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        margin: 0;
        padding: 0;
        box-shadow: none;
        /* Target only height and opacity to prevent lateral sliding */
        transition: max-height 0.4s ease, opacity 0.4s ease;
    }

    .has-dropdown.dropdown-open .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 1000px;
        padding: 10px 0;
    }

    .dropdown-menu li {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .dropdown-menu li a {
        text-align: left;
        padding: 12px 20px 12px 30px;
        width: 100%;
        display: block;
    }

    .has-dropdown>a i {
        padding: 10px;
        margin-right: -10px;
    }
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none !important;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--bg-body);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--text-white);
    opacity: 1;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link.active {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

.nav-link.active::after {
    transform: scaleX(1);
}

.close-nav {
    display: none;
}

.contact-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.contact-btn:hover {
    background: var(--bg-deep);
    transform: scale(1.1);
    border: 1px solid #ffffff;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 995;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: var(--bg-body);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}



/* Hero Slider (Source 2) */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: visible;
}

.video-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(13, 31, 78, 0.4) 100%);
    z-index: 1;
}

.static-hero-interface {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-bottom: 0;
}

.static-hero-interface .container {
    width: 100%;
    margin: 0 auto;
}



.hero-content {
    width: 100%;
    max-width: 1300px;
    text-align: left;
    margin: 0;
    padding-bottom: 0;
}

.hero-title {
    font-size: 28px;
    line-height: 1.1;
    margin-top: 40px;
    margin-bottom: 40px;
    font-weight: 500;
    text-transform: none;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--blur-standard);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
}

.btn-primary:hover {
    background: var(--bg-deep);
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Dark Variant for Light Backgrounds */
.btn-primary-dark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    background: var(--bg-deep);
    color: white !important;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    border: 1px solid var(--bg-deep);
    text-decoration: none;
}

.btn-primary-dark:hover {
    background: #ffffff;
    color: var(--bg-deep) !important;
    border-color: var(--bg-deep);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 31, 78, 0.15);
}

/* Info Cards (Hero bottom) */
.info-cards-static {
    display: flex;
    gap: 20px;
    margin-top: 60px;
    margin-bottom: -50px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.info-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: var(--blur-standard);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.info-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.info-card h3 {
    font-size: 1.4rem;
    color: var(--text-white);
    font-family: var(--font-primary);
    margin: 0;
    transition: var(--transition-smooth);
}

.info-card p {
    font-size: 0.65rem;
    line-height: 1.4;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    transition: var(--transition-smooth);
}

/* Hero Cards Responsiveness */
@media (max-width: 1200px) {
    .info-card h3 {
        font-size: 1.3rem;
    }

    .info-card {
        padding: 20px;
    }
}

@media (max-width: 1024px) {
    .info-cards-static {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .info-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    .static-hero-interface {
        padding-top: 150px;
        padding-bottom: 0;
    }

    .info-cards-static {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: -50px;
    }

    .info-card {
        padding: 15px;
    }

    .info-card h3 {
        font-size: 1.3rem;
    }

    .info-card p {
        font-size: 0.55rem;
    }
}



/* Hero Social Sidebar */
.hero-social-sidebar {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}

.hero-social-sidebar a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--blur-standard);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.hero-social-sidebar a:hover {
    background: var(--bg-deep);
    border: 1px solid #ffffff;
    transform: scale(1.1);
}

/* About Section (Source 1 Collage) */

#about .about-watermark,
#about .section-title {
    font-family: 'Papyrus', fantasy;
}

#about .about-p {
    font-family: var(--font-text);
}

.home-about-redesign {
    overflow: hidden;
}

.about-watermark {
    position: absolute;
    top: 5%;
    left: 4%;
    font-size: 10vw;
    color: rgba(255, 255, 255, 0.03);
    font-weight: 900;
    pointer-events: none;
    white-space: nowrap;
    z-index: -1;
    animation: watermarkFloat 10s ease-in-out infinite alternate;
}

@keyframes watermarkFloat {
    0% {
        transform: translateX(-5%);
    }

    100% {
        transform: translateX(20%);
    }
}

.about-grid-redesign {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images-collage {
    position: relative;
    height: 500px;
}

.collage-main {
    width: 70%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: absolute;
    right: 0;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.collage-sub {
    width: 50%;
    height: 70%;
    border-radius: 20px;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 15%;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.collage-main img,
.collage-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.8;
}

.btn-glass-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--blur-standard);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.btn-glass-cta:hover {
    background: var(--bg-deep);
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}



/* Passion Section (Adventure Cards) */
/* Passion Section Redesign Styles */
.passion-redesign-section {
    position: relative;
    padding: var(--section-padding);
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    background: #060e24;
}

.passion-redesign-section .passion-main-title {
    color: var(--text-white);
}

.passion-redesign-section .passion-subtitle {
    color: var(--text-light);
}

/* Passion Section Vertical Layout */
.passion-vertical-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    z-index: 2;
}

.passion-top-content {
    margin-bottom: 40px;
    text-align: left;
}

.passion-content-header {
    max-width: 900px;
    margin: 0;
}

.passion-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.7;
}

.passion-slider-fixedwidth {
    width: 100%;
    position: relative;
}

.passion-slider-wrapper {
    width: 100%;
    padding: 0;
}

.passion-nav-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.passion-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    filter: brightness(0.4);
}

.passion-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 14, 36, 0.9) 0%, rgba(6, 14, 36, 0.4) 50%, rgba(6, 14, 36, 0.9) 100%);
    z-index: 1;
}

/* Slider */
.passion-slider-wrapper {
    width: 100%;
    margin-bottom: 0;
}

.passionSlider {
    overflow: visible !important;
    /* top: 20px = room for active card translateY(-20px); bottom: 20px = room for card transforms */
    padding: 20px 0 20px;
}

.passion-slide-item {
    position: relative;
    /* Width handled by Swiper slidesPerView: 3 */
}

.passion-card-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.passion-item-card {
    position: relative;
    width: 100%;
    height: 380px;
    /* Fixed height */
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Symmetrical Staggered Vertical Depth Effect for Centered Slides */
.passion-slide-item.swiper-slide-active .passion-item-card {
    transform: translateY(-20px);
    /* Middle card is highest */
    z-index: 10;
}

.passion-slide-item.swiper-slide-prev .passion-item-card,
.passion-slide-item.swiper-slide-next .passion-item-card {
    transform: translateY(20px);
    /* Side cards are lower */
    opacity: 0.7;
}

/* Ensure other non-visible/far slides are even lower or hidden if needed */
.passion-slide-item:not(.swiper-slide-active):not(.swiper-slide-next):not(.swiper-slide-prev) .passion-item-card {
    transform: translateY(40px);
    opacity: 0.4;
}

.passion-item-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.passion-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}

.passion-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
}

.passion-item-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.passion-item-accent {
    width: 30px;
    height: 2px;
    background: var(--accent-primary);
    margin-bottom: 8px;
}


.passion-item-hover-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.passion-item-hover-content p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 15px 0;
    line-height: 1.4;
}

.btn-primary-mini {
    display: inline-flex;
    padding: 8px 20px;
    background: var(--accent-primary);
    color: var(--bg-deep);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.btn-primary-mini:hover {
    background: var(--bg-deep);
    border-color: #ffffff;
    color: var(--text-white);
}

/* Hover States & Active State */
.passion-item-card:hover,
.passion-slide-item.swiper-slide-active .passion-item-card {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    opacity: 1 !important;
}

.passion-item-card:hover .passion-item-hover-content,
.passion-slide-item.swiper-slide-active .passion-item-hover-content {
    max-height: 200px;
    opacity: 1;
}

/* Content */
/* Standardized Section Headings */
.section-header {
    margin-bottom: 0px;
}

.section-header.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-subtitle {
    display: none;
}

.section-title,
.passion-main-title {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-white);
    text-transform: uppercase;
    text-align: left;
    margin: 20px 0 40px;
    letter-spacing: 1px;
    width: 100%;
}

/* passion-main-title inherits fully from .section-title,.passion-main-title shared rule above */
.passion-main-title {
    margin: 0;
}

.passion-subtitle {
    font-family: var(--font-text);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.passion-cta-group {
    display: flex;
    gap: 20px;
}

.btn-passion-primary-filled {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--blur-standard);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.btn-passion-primary-filled:hover {
    background: var(--bg-deep);
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-passion-secondary-outline {
    padding: 14px 35px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
}

/* Nav Controls - Positioned below left column */
.passion-nav-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 0;
}

.passion-nav-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: 0.3s;
}

.passion-nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.passion-progress-container {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.passion-progress-bar {
    height: 100%;
    background: var(--bg-body);
    width: 0%;
    transition: width 0.4s ease;
}

@media (max-width: 1024px) {
    .passion-flex-container {
        flex-direction: column;
    }

    .passion-left-col,
    .passion-right-col {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        min-width: 0;
    }

    .passion-right-col {
        padding-left: 0;
        margin-top: 50px;
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        box-shadow: none;
        margin-top: 10px;
    }

    .has-dropdown.dropdown-open .dropdown-menu {
        display: block;
    }

    .has-dropdown.dropdown-open>a::after {
        transform: rotate(180deg);
    }
}

/* Experiences Section Styles */
.tours-section {
    background: var(--bg-body);
    padding: var(--section-padding);
    overflow: hidden;
}

.tour-card-link {
    display: block;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.section-header {
    margin-bottom: 20px;
}

.tours-section .section-title {
    margin: 0;
    color: var(--bg-footer);
}

.section-desc {
    font-size: 1rem;
    color: var(--bg-footer);
    opacity: 0.8;
    max-width: 800px;

    /* Changed from auto to 0 for left alignment */
    line-height: 1.6;
}



.tour-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 480px;
    background: #1a1e23;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}





.tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-card:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.tour-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    text-align: left;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.tour-card:hover .tour-card-overlay {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding-bottom: 40px;
}

.tour-card-overlay h4 {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 0;
    color: #FFFFFF;
    transition: all 0.5s ease;
}

.tour-card:hover .tour-card-overlay h4 {
    margin-bottom: 5px;
}

.tour-card-overlay p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
    opacity: 0;
    max-height: 0;
    margin-bottom: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.tour-card:hover .tour-card-overlay p {
    opacity: 0.9;
    max-height: 40px;
    margin-top: 2px;
}

.tour-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 0;
    opacity: 0;
    max-height: 0;
    transform: translateY(20px);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-card:hover .tour-cta {
    opacity: 1;
    max-height: 80px;
    margin-top: 20px;
    transform: translateY(0);
}

.cta-pill {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
    white-space: nowrap;
}

.cta-icon {
    width: 38px;
    height: 38px;
    background: var(--bg-body);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-card:hover .cta-icon {
    transform: rotate(45deg);
}







/* Experiences Grid */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 0;
}

@media (max-width: 1024px) {
    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .experiences-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Testimonials Section Redesign */
.testimonials-section {
    background: #ececec;
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

.testimonialsSlider {
    width: 100%;
    padding-bottom: 0px;
    overflow: hidden;
}

.testimonials-section .section-title,
.testimonials-section .author-box h4 {
    color: #0d1f4e;
}

.testimonials-section .testimonial-card {
    padding: 40px;
    background: #f8f9fa;
    border: 1px solid rgba(13, 31, 78, 0.05);
    border-radius: 20px;
    position: relative;
    color: #4a5568;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.testimonials-section .testimonial-card:hover {
    transform: translateY(-5px);
    background: var(--bg-body);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(43, 55, 201, 0.1);
}

.testimonials-section .quote-icon {
    color: #2B37C9;
    opacity: 0.1;
}

.testimonials-section .author-box p {
    color: #718096;
}

.testimonials-section .author-img {
    border: 2px solid #2B37C9;
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 1.2rem;
    opacity: 0.1;
}

.author-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent-primary);
    overflow: hidden;
}

/* CTA Redesign */
.cta-redesign-section {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    border-radius: 40px;
    margin: 0 40px;
}

.cta-redesign-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.cta-redesign-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 31, 78, 0.7);
    z-index: 1;
}

.cta-redesign-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-redesign-title {
    font-size: 2.6rem;
    margin-bottom: 25px;
}

.btn-pill-icon {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 10px 10px 10px 30px;
    background: var(--bg-body);
    color: black;
    border-radius: 50px;
    font-weight: 700;
}

.icon-circle {
    width: 44px;
    height: 44px;
    background: var(--bg-deep);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
.site-footer {
    background: var(--bg-footer);
    padding: 60px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 25px;
}

.footer-col-title {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.footer-nav,
.footer-info-list {
    list-style: none;
}

.footer-nav li,
.footer-info-list li {
    margin-bottom: 15px;
    opacity: 0.7;
}

.footer-nav a:hover {
    color: var(--accent-primary);
    opacity: 1;
}

.footer-social-circles {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.footer-social-circles a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
}

.footer-social-circles a:hover {
    background: var(--accent-primary);
    color: var(--bg-deep);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s ease-out forwards;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Swiper Custom */
.tours-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.swiper-scrollbar {
    width: 200px !important;
    height: 4px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    position: static !important;
}

.swiper-scrollbar-drag {
    background: var(--accent-primary) !important;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {

    .choose-grid-redesign,
    .passion-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid-redesign {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .info-tab-grid {
        grid-template-columns: 1fr;
    }

    /* Navigation Mobile/Tablet Toggle */
    .nav-menu {
        position: static;
        left: 0;
        right: 0;
        transform: none;
        width: 100vw;
        max-width: 100%;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: fixed;
        top: 0;
        right: -100%;
        left: auto;
        width: 100vw;
        max-width: 100%;
        height: 100vh;
        overflow-y: auto;
        /* Allow scrolling if menu is long */
        overflow-x: hidden;
        background: rgba(13, 31, 78, 0.98);
        padding: 100px 40px;
        border: none;
        border-radius: 0;
        z-index: 9999;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-logo {
        display: block;
        margin-bottom: 40px;
    }

    .mobile-logo img {
        max-height: 60px;
        width: auto;
    }

    .close-nav {
        display: none !important;
        /* Hide the extra X button, use nav-toggle instead */
    }

    .nav-list li {
        width: 100%;
        text-align: left;
        margin-bottom: 20px;
        padding: 0;
    }

    .nav-list.mobile-active {
        right: 0;
    }

    .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        font-size: 0.95rem;
        text-align: left;
    }

    /* Reposition underline for mobile (no left/right padding) */
    .nav-link::after {
        left: 0;
        right: 0;
        transform-origin: left;
    }

    /* Slide underline in when dropdown opens */
    .has-dropdown.dropdown-open > a::after {
        transform: scaleX(1);
    }

    /* Remove chevron rotation on mobile */
    .has-dropdown:hover > a i,
    .has-dropdown.dropdown-open > a i {
        transform: none;
    }

    .nav-toggle {
        display: flex;
        z-index: 10001;
        /* Higher than nav-list */
        position: relative;
        transition: none;
        /* Prevent toggle from moving during menu transition */
    }

    /* Keep toggle in place even when menu is open */
    .nav-toggle.active {
        position: fixed;
        right: 20px;
        top: 28px;
    }
}

@media (max-width: 768px) {
    :root {
        /* Scale section padding down on mobile */
        --section-padding: 60px 0;
    }

    .container {
        padding: 0 20px;
    }

    .logo img {
        max-height: 65px;
    }

    .choose-grid-redesign,
    .passion-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }

    .footer-social-circles {
        justify-content: flex-start;
    }

    .header {
        top: 0;
    }

    .hero-title {
        font-size: 24px;
    }

    .cta-redesign-title {
        font-size: 1.4rem;
    }

    .page-title,
    .tours-section h2,
    .section-title {
        font-size: 20px;
    }

    .nav-toggle {
        width: 24px;
        height: 18px;
    }

    .nav-toggle span {
        width: 24px;
        height: 2px;
    }

    .tours-section {
        overflow: hidden;
    }

    .toursSlider {
        width: 100%;
        margin-left: 0 !important;
        padding-left: 0 !important;
        padding-bottom: 60px !important;
        padding-right: 0 !important;
    }

    .steps-title {
        font-size: 1.7rem;
    }

    .steps-contact-card {
        right: 20px;
        left: 20px;
        bottom: 20px;
        width: auto;
    }

    .passion-item-card {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
        transform: translateY(0) !important;
    }

    .passion-slide-item.swiper-slide-active .passion-item-card,
    .passion-slide-item.swiper-slide-next .passion-item-card,
    .passion-slide-item.swiper-slide-next+.swiper-slide-next .passion-item-card {
        transform: translateY(0) !important;
    }

    .passion-item-hover-content {
        max-height: 200px;
        opacity: 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: left;
    }

    .contact-btn {
        display: none;
    }

    .navbar {
        justify-content: space-between;
        align-items: center;
    }

    .nav-toggle {
        margin-left: 15px;
    }

    .nav-actions {
        margin-left: auto;
    }

    .info-cards-static {
        flex-direction: column;
        gap: 15px;
        margin-top: 40px;
    }

    .info-card {
        padding: 15px 20px;
        gap: 15px;
        max-width: 100%;
        width: 100%;
    }

    .info-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 1rem;
    }

    .about-images-collage {
        height: 300px;
    }

    /* passion-redesign-section inherits from section via --section-padding */

    .contact-panel {
        padding: 60px 20px;
    }

    .hero-social-sidebar {
        display: none;
    }
}

/* Getting Into Bhutan Section (Seven Steps) */
.getting-into-bhutan {
    background: var(--bg-deep);
    /* Matches other sections */
    position: relative;
}

.getting-into-bhutan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
}

.steps-image-col {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 600px;
    position: relative;
}

.steps-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.steps-cta-button {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--blur-standard);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    z-index: 10;
}

.steps-cta-button:hover {
    background: var(--bg-deep);
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.steps-cta-button i {
    transition: transform 0.3s ease;
}

.steps-cta-button:hover i {
    transform: translateX(5px);
}

/* Partners Section Styles Redesign */
.partners-section {
    position: relative;
    padding: 40px 0;
    background: var(--bg-body);
    overflow: hidden;
}

.partners-section .container {
    position: relative;
    z-index: 2;
}

.partners-section .section-header {
    margin-bottom: 0;
}

/* Partners Slider Styles */
.partnersSlider {
    padding: 0;
    overflow: hidden;
}

.partner-item {
    background: transparent;
    padding: 10px;
    /* Reduced padding */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    height: 100px;
    /* Increased height */
}

.partner-item:hover {
    transform: translateY(-5px);
}

.partner-item img {
    max-width: 100%;
    max-height: 110px;
    /* Increased logo size */
    transition: var(--transition-smooth);
    object-fit: contain;
}

.partner-item:hover img {
    transform: scale(1.05);
}




@media (max-width: 600px) {
    .steps-cta-button {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
        width: 100%;
        justify-content: center;
    }
}



.steps-content-col {
    padding: 0;
}

.steps-content-col .section-title {
    margin-top: 0;
}

.steps-subtitle {
    font-size: 0.85rem;
    color: var(--accent-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.steps-title {
    font-size: 2.1rem;
    font-weight: 300;
    color: var(--text-white);
    margin-bottom: 40px;
    line-height: 1.2;
}

.steps-accordion {
    max-width: 100%;
}

.accordion-item {
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 10px 0;
    color: var(--text-white);
    transition: var(--transition-smooth);
}

.accordion-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 400;
}

.accordion-icon {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.accordion-header[aria-expanded="true"] .accordion-icon,
.accordion-header[aria-expanded="true"] .accordion-title {
    color: var(--accent-primary);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-body p {
    font-family: var(--font-text);
    font-size: 1rem;
    color: var(--text-light);
    padding-top: 15px;
    padding-bottom: 10px;
    margin: 0;
    line-height: 1.6;
}

/* Mobile Adjustments for Getting Into Bhutan */
@media (max-width: 1024px) {
    .getting-into-bhutan-grid {
        grid-template-columns: 1fr;
    }

    .steps-image-col {
        min-height: 400px;
        order: 2;
        /* Put image under text on mobile */
    }

    .steps-content-col {
        order: 1;
    }
}

/* ------------------------------------- */
/* Contact Form Section (Redesign) */
/* ------------------------------------- */
.contact-form-section {
    background: var(--bg-deep);
    position: relative;
    padding: 120px 0;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.contact-form-title {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 500;
}

.contact-form-desc {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 90%;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-item-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
}

.info-item-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: white;
}

.info-item-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.7;
}

/* Enquiry Card Styles */
.enquiry-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.enquiry-card-title {
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1.2px;
    opacity: 0.85;
    margin: 0;
    display: block;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    /* Softer corners to match rounder button */
    padding: 16px 24px;
    /* Equalized padding for a premium feel */
    color: white;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
}

.btn-submit-new {
    width: 100%;
    padding: 18px;
    background: var(--bg-body);
    color: var(--bg-deep);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.btn-submit-new i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-submit-new:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-submit-new:hover i {
    transform: translateX(5px) rotate(-10deg);
}

/* Mobile Adjustments for Contact Form */
@media (max-width: 1024px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: left;
    }

    .contact-form-desc {
        max-width: 100%;
    }

    .contact-info-list {
        align-items: flex-start;
    }

    .contact-info-item {
        text-align: left;
    }

    .enquiry-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 80px 0;
    }

    .contact-form-title {
        font-size: 1.9rem;
    }

    .enquiry-card-title {
        font-size: 1.2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

/* Reduce gap after FAQ section */
.pr-section#faq { padding-top:0; padding-bottom:15px; }
.pr-section#faq + .pr-section { padding-top:15px; }

}

/* Reduce gap after FAQ globally */
.pr-section#faq { padding-bottom:15px; }
.pr-section#faq + .pr-section { padding-top:15px; }