/*
  Meher Hodiyas - Stylesheet
  Color Palette: White, Beige, Pastel tones
*/

/*
  MEHER HOLIDAYS - STYLE SYSTEM GUIDE
  ===================================
  1. DESIGN TOKENS: Root variables define the palette (Gold #ffd700, Dark #1e293b).
  2. UTILITIES: Common classes for spacing and typography are at the top.
  3. COMPONENTS: Styles for Hero, Gallery, and Testimonials are organized in sections.
  4. RESPONSIVENESS: Media queries at the bottom handle mobile/tablet layouts.
*/
:root {
    --primary-color: #1E40AF;
    --primary-hover: #1E3A8A;
    --secondary-color: #3B82F6;
    --text-dark: #1E293B;
    --text-light: #475569;
    --bg-white: #ffffff;
    --bg-light: #F8FAFC;
    --bg-pastel: #EFF6FF;
    --accent: #DBEAFE;

    --font-main: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 10px 30px rgba(30, 64, 175, 0.05);
    --shadow-hover: 0 15px 40px rgba(30, 64, 175, 0.1);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-white);
}

body {
    font-family: var(--font-main);
    color: var(--text-light);
    line-height: 1.6;
    background-color: transparent;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 0;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.section {
    padding: 90px 0;
    position: relative;
}

.bg-light {
    position: relative;
    background-color: transparent;
}

.bg-light::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--bg-light);
    z-index: -2;
    pointer-events: none;
}

.bg-pastel {
    position: relative;
    background-color: transparent;
}

.bg-pastel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--bg-pastel);
    z-index: -2;
    pointer-events: none;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-full {
    width: 100%;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    margin-right: 32px;
}

.logo img {
    display: block;
    height: 80px;
    width: auto;
    max-width: 100%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Slider */
.slider-container {
    overflow: hidden;
    position: relative;
    isolation: isolate;
}

.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition:
        opacity 1200ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 1800ms cubic-bezier(0.2, 0.8, 0.2, 1) 140ms;
    transform-origin: center;
    backface-visibility: hidden;
    transform: translateZ(0) scale(1);
    will-change: opacity;
    filter: brightness(1.15);
}

.slide.active {
    opacity: 1;
    transform: translateZ(0) scale(1.1);
    will-change: opacity, transform;
}

@media (max-width: 768px) {
    .slide {
        transition:
            opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
            transform 1400ms cubic-bezier(0.2, 0.8, 0.2, 1) 100ms;
    }

    .slide.active {
        transform: translateZ(0) scale(1.06);
    }
}

@media (prefers-reduced-motion: reduce) {
    .slide {
        transition: opacity 300ms ease;
        transform: none;
        will-change: auto;
    }

    .slide.active {
        transform: none;
        will-change: opacity;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.45)),
        radial-gradient(circle at center, rgba(30, 64, 175, 0.08), rgba(0, 0, 0, 0.25));
    z-index: 2;
    pointer-events: none;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(124, 121, 121, 0.16);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transform: translateY(-50%);
    transition:
        background 220ms ease,
        transform 220ms ease,
        box-shadow 220ms ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.slider-nav:hover,
.slider-nav:focus-visible {
    background: rgba(255, 255, 255, 0.26);
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
    outline: none;
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
    align-items: center;
    justify-content: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 300ms ease;
    border: none;
    padding: 0;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.15);
}

.dot.active {
    background-color: white;
    width: 28px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .slider-dots {
        bottom: 20px;
        gap: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 24px;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeIn 1s ease-out;
    text-shadow: 0 5px 26px rgba(0, 0, 0, 0.55);
}

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

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

.hero h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-subtitle {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.5s;
}

.cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background-color: white;
    vertical-align: text-bottom;
    margin-left: 2px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Promotional Banner */
.promo-banner {
    /* layered background: dark gradient overlay above the image for readability */
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.45)), url('images/Bhutan_Banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px;
    /* Reduced for tighter layout */
    margin-top: 20px;
    /* Developer: Reduced distance from section above for desktop */
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.promo-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }
}

.promo-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: slideUpFade 1.2s ease-out;
    transform-style: preserve-3d;
    padding: 0 18px;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

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

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

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

.promo-text h2 {
    color: rgba(255, 255, 255, 0.98);
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.4px;
    line-height: 1.08;
}

.promo-title {
    font-family: 'Satisfy', cursive;
    color: #ffffff;
    font-size: 3.2rem;
    margin-bottom: 26px;
    font-weight: 400;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

.promo-description {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.12rem;
    line-height: 1.7;
    margin-bottom: 42px;
    font-weight: 400;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.promo-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-promo {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.98), rgba(59, 130, 246, 0.95));
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 14px 32px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    transition: all 0.32s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 12px;
    border: none;
    backdrop-filter: blur(6px);
    position: relative;
    overflow: hidden;
}

.btn-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-promo:hover::before {
    left: 100%;
}

.btn-primary-white:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 8px 25px rgba(30, 64, 175, 0.4);
    background: rgba(30, 64, 175, 1);
}

.btn-secondary-white {
    background: rgba(255, 255, 255, 0.9);
    color: #1e40af;
    border: 2px solid rgba(30, 64, 175, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary-white:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(30, 64, 175, 0.5);
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 8px 25px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .promo-banner {
        padding: 72px 18px;
        margin-top: 20px;
        /* Developer: Matched desktop spacing for consistency on mobile */
        background-attachment: scroll;
        background-size: cover;
        min-height: 48vh;
    }

    .promo-text h2 {
        font-size: 2.1rem;
        margin-bottom: 18px;
        letter-spacing: 0.2px;
    }

    .promo-title {
        font-size: 1.5rem;
        margin-bottom: 18px;
    }

    .promo-description {
        font-size: 0.98rem;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .promo-buttons {
        gap: 14px;
        flex-direction: column;
    }

    .btn-promo {
        font-size: 1rem;
        padding: 14px 20px;
        width: 100%;
        justify-content: center;
        max-width: 420px;
        border-radius: 10px;
    }

    /* ensure adequate spacing when buttons stack */
    .promo-buttons>* {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .promo-text h2 {
        font-size: 1.8rem;
    }

    .promo-title {
        font-size: 1.25rem;
    }

    .promo-description {
        font-size: 0.95rem;
        margin-bottom: 22px;
    }
}




/* Google Review Badge */
.google-trust-badge {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 100;
    margin-top: 50px;
    /* Centers it in the 100px gap */
    margin-bottom: -50px;
}

.badge-content {
    margin: 0 auto;
    background: #ffffff;
    padding: 14px 38px;
    border-radius: 80px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    cursor: default;
}

.badge-content:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.google-g {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.badge-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.star-filled {
    color: #f59e0b;
    font-size: 1.4rem;
}

.rating-score {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
}

.review-count {
    font-size: 1.05rem;
    color: var(--text-light);
    margin: 4px 0 0 0;
    font-weight: 500;
    letter-spacing: 0.2px;
}

@media (max-width: 768px) {
    .google-trust-badge {
        margin-top: 40px;
        margin-bottom: -40px;
    }

    .badge-content {
        padding: 12px 28px;
        gap: 15px;
    }

    .google-g {
        width: 40px;
        height: 40px;
    }

    .badge-info {
        align-items: center;
        text-align: center;
    }

    .rating-score {
        font-size: 1.6rem;
    }

    .review-count {
        font-size: 0.9rem;
    }
}

/* Tour Packages */

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Itinerary / Timeline */
.itinerary-section {
    padding: 80px 20px;
    background-color: transparent;
}

.itinerary-section .container {
    max-width: 1100px;
}

.itinerary-section h2 {
    font-size: 2.2rem;
    margin-bottom: 28px;
    text-align: center;
    color: var(--text-dark);
}

/* Price and itinerary heading */
.itinerary-price {
    font-weight: 800;
    font-size: 1.18rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 8px;
}

.itinerary-header {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

/* Itinerary action buttons (Contact + Download) */
.itinerary-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin: 22px 0 30px;
}

.itinerary-actions a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.06);
    transition: transform 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
}

.itinerary-actions a .btn-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
}

.itinerary-actions a:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
}

/* Primary (WhatsApp) uses existing gradient style via .btn-promo; download uses white secondary style */
.itinerary-actions .btn-promo {
    padding-left: 18px;
    padding-right: 18px;
}

.itinerary-actions .btn-secondary-white {
    padding-left: 18px;
    padding-right: 18px;
}

@media (max-width: 768px) {
    .itinerary-actions {
        flex-direction: column;
        gap: 12px;
    }

    .itinerary-actions a {
        width: 100%;
        justify-content: center;
        max-width: 420px;
    }
}

@media (min-width: 1100px) {
    .itinerary-price {
        text-align: center;
    }

    .itinerary-header {
        text-align: center;
    }
}

.itinerary-list {
    position: relative;
    padding-left: 0;
}

/* Minimal design: no timeline line when icons are removed */
.itinerary-list::before {
    display: none;
}

.itinerary-day {
    position: relative;
    background: #ffffff;
    padding: 18px 20px;
    margin-bottom: 18px;
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(16, 24, 40, 0.04);
    display: block;
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 360ms ease;
}

.day-content {
    width: 100%;
}

.day-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.day-desc {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.6;
}

/* Accordion behavior: collapse/expand itinerary days */
.day-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.day-toggle:focus {
    outline: 3px solid rgba(59, 130, 246, 0.12);
    outline-offset: 6px;
}

.day-toggle .day-title {
    margin: 0;
    font-weight: 800;
}

.day-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--primary-color);
    transition: transform 280ms cubic-bezier(0.2, 0.9, 0.2, 1), color 220ms ease;
}

.day-desc {
    max-height: 0;
    overflow: hidden;
    transition: max-height 360ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease, padding-top 240ms ease;
    opacity: 0;
    padding-top: 0;
}

.itinerary-day.active .day-desc,
.itinerary-day.open .day-desc {
    opacity: 1;
    padding-top: 12px;
    /* a large max-height to allow smooth open; JS sets exact max-height when available */
    max-height: 1200px;
}

.itinerary-day.active .day-arrow,
.itinerary-day.open .day-arrow {
    transform: rotate(180deg);
}

/* Hover expands on non-touch/hover-capable devices */
@media (hover: hover) and (pointer: fine) {
    .itinerary-day:hover .day-desc {
        max-height: 800px;
        opacity: 1;
        padding-top: 12px;
    }

    .itinerary-day:hover .day-arrow {
        transform: rotate(180deg);
    }
}

.itinerary-day:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(16, 24, 40, 0.08);
}

@media (max-width: 768px) {
    .itinerary-list {
        padding-left: 0;
    }

    .itinerary-list::before {
        display: none;
    }

    /* Mobile: stack icon above text, full-width cards, reduced padding */
    .itinerary-day {
        flex-direction: column;
        padding: 12px;
        width: 100%;
        margin-bottom: 14px;
        align-items: stretch;
        overflow: visible;
    }

    .day-icon {
        flex: 0 0 56px;
        width: 56px;
        height: 56px;
        margin: 0 auto 12px auto;
    }

    .day-content {
        width: 100%;
    }

    .day-toggle {
        padding: 8px 0;
        align-items: center;
    }

    .day-toggle .day-title {
        font-size: 1.05rem;
        text-align: left;
    }

    .day-desc {
        font-size: 0.98rem;
    }

    .itinerary-section {
        padding: 36px 14px;
    }
}

@media (max-width: 480px) {
    .itinerary-day {
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
    }

    .day-icon {
        margin-bottom: 10px;
    }

    .day-title {
        font-size: 1.02rem;
    }

    .day-arrow {
        width: 24px;
        height: 24px;
    }

    .day-desc {
        padding-top: 10px;
    }
}

.package-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.package-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.price-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.package-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-info h3 {
    margin-bottom: 10px;
}

.duration {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.desc {
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Other Destinations Section */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.dest-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Bhutan Hero Video Section */
.bhutan-hero {
    position: relative;
    height: 100vh;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
}

.bhutan-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    transform: scale(1);
    will-change: transform;
    animation: bhutanSlowZoom 30s linear infinite;
    z-index: 1;
}

@keyframes bhutanSlowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.06);
    }
}

.bhutan-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.6));
    z-index: 2;
    pointer-events: none;
}

.bhutan-content {
    position: relative;
    z-index: 3;
    max-width: 980px;
    padding: 0 20px;
    animation: fadeIn 1s ease-out;
}

.bhutan-title {
    font-size: 3.2rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    line-height: 1.03;
}

.bhutan-subtitle {
    font-size: 1.15rem;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
    font-weight: 400;
}

.bhutan-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.bhutan-ctas .btn-promo {
    min-width: 160px;
}

@media (max-width: 768px) {
    .bhutan-title {
        font-size: 2.1rem;
    }

    .bhutan-subtitle {
        font-size: 0.98rem;
        margin-bottom: 18px;
    }

    .bhutan-ctas {
        flex-direction: column;
        gap: 12px;
    }

    .bhutan-ctas .btn-promo {
        width: 100%;
        max-width: 420px;
    }

    .bhutan-hero {
        min-height: 44vh;
    }
}

@media (max-width: 480px) {

    /* hide video on very small devices for performance; fallback to poster/background */
    .bhutan-hero {
        background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url('images/Bhutan_Banner.jpg');
        background-size: cover;
        background-position: center;
    }

    .bhutan-title {
        font-size: 1.6rem;
    }
}

/* Mobile fallback: hide video and use background image for devices <= 768px */
@media (max-width: 768px) {
    .bhutan-hero {
        background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url('images/Bhutan_Banner.jpg');
        background-size: cover;
        background-position: center;
    }
}

.hidden-dest {
    display: none;
}

.hidden-dest.show {
    display: flex;
    animation: fadeInSlideUp 0.5s ease forwards;
}

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

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

.dest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.dest-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.dest-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dest-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.dest-card:hover .dest-overlay {
    opacity: 1;
}

.dest-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dest-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.dest-card:hover .dest-info h3 {
    color: var(--primary-color);
}

.dest-info .desc {
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 0.95rem;
}

.dest-btn {
    align-self: flex-start;
    padding: 8px 24px;
    font-size: 0.9rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.08);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-img {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.service-card .desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

.service-card .btn {
    margin-top: 22px;
    align-self: center;
}

/* Responsive Services */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* About Us */
.about-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-content {
    max-width: 800px;
    text-align: center;
    background: white;
    padding: 60px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-content .divider {
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 300px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info>p {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-item a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.contact-item i {
    width: 40px;
    height: 40px;
    background-color: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.2rem;
    transition: var(--transition);
}

.contact-item a:hover i {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
}

.contact-item a:hover span {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-item span {
    transition: var(--transition);
    display: inline-block;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: white;
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.2rem;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

/* Founder Cards */
/* Founders / About Section */
.about-section {
    position: relative;
    padding: 100px 0;
    background-color: transparent;
    /* Transparent to show global background animations */
    overflow: hidden;
}

/* Scroll Animation Styles */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.about-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.about-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
}

.title-line {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 25px;
    border-radius: 2px;
}

.about-header .subtitle {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.6;
    font-weight: 400;
}

.founders-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.founder-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 24px;
    width: 380px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

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

.founder-img-wrap {
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, var(--primary-color), #ffffff);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.founder-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.founder-card h3 {
    font-size: 1.6rem;
    color: #1e293b;
    margin-bottom: 8px;
    font-weight: 700;
}

.founder-role {
    color: #3b82f6;
    /* Premium Blue for Role */
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.founder-bio {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .founder-card {
        width: 100%;
        max-width: 400px;
    }

    .founders-grid {
        gap: 30px;
    }
}

/* Tour Package List (Destination Pages) */
.tour-package-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.tour-package-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.tour-package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.tp-img-wrap {
    height: 250px;
    overflow: hidden;
}

.tp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tour-package-card:hover .tp-img-wrap img {
    transform: scale(1.08);
}

.tp-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tp-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.package-info p.desc {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.trip-duration {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 10px;
}

.tp-details {
    margin-bottom: 25px;
    flex-grow: 1;
}

.tp-details p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tp-details i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

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

.tp-price span {
    display: block;
    font-size: 0.8rem;
    color: gray;
    margin-bottom: 4px;
}

.tp-price h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0;
}

.tp-actions {
    display: flex;
    gap: 10px;
}

.tp-actions .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Responsive Package Grid */
@media (max-width: 992px) {
    .tour-package-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .tp-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .tp-actions {
        width: 100%;
    }

    .tp-actions .btn {
        flex: 1;
        text-align: center;
    }
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Success Video Scene */
.success-video-wrap {
    display: none; /* Hidden by default */
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    /* Removed background and shadow for immersive look */
    background: transparent;
    box-shadow: none;
    animation: slideUpFade 0.6s ease forwards;
}

.success-video-wrap.active {
    display: block;
}

.success-video-wrap video {
    width: 100%;
    display: block;
    filter: brightness(1.1); /* Increased brightness to make it light */
}

.success-message-overlay {
    position: absolute;
    inset: 0;
    background: transparent; /* Removed background */
    backdrop-filter: none; /* Removed blur */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.5s ease 1s;
}

.success-video-wrap.active .success-message-overlay {
    opacity: 1;
}

.success-message-overlay i {
    font-size: 3.5rem;
    color: #2ed573;
    margin-bottom: 15px;
    filter: none; /* Removed shadow */
}

.success-message-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #000000; /* Darker black */
    font-weight: 700;
}

.success-message-overlay p {
    font-size: 1.1rem;
    color: #1a202c; /* Much darker gray/blue */
    max-width: 280px;
    font-weight: 500;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .toast {
        right: 20px;
        left: 20px;
        bottom: -100px;
    }
    
    .toast.show {
        bottom: 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

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

    .logo img {
        height: 40px;
        width: auto;
    }

    .logo {
        margin-right: 20px;
    }

    /* NAVBAR */
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* NAV LINKS */
    .nav-links {
        display: flex;
        gap: 30px;
        list-style: none;
    }

    /* HERO */
    .hero {
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
    }

    .hero-slider {
        height: 100%;
    }

    .slider-nav {
        width: 42px;
        height: 42px;
    }

    .slider-nav.prev {
        left: 14px;
    }

    .slider-nav.next {
        right: 14px;
    }
}



/* Travel Background Animation */
/* --- Premium Travel Animations --- */
.travel-bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.travel-bg-animation i,
.travel-bg-animation svg {
    position: absolute;
    color: #76787a;
    transition: opacity 0.3s ease;
}

/* Cloud Styling */
.cloud {
    opacity: 0.08;
    animation: premiumCloud 60s linear infinite;
}

.cloud.c1 {
    top: 12%;
    left: -150px;
    font-size: 8rem;
    animation-duration: 55s;
}

.cloud.c2 {
    top: 40%;
    left: -200px;
    font-size: 14rem;
    animation-duration: 80s;
    animation-delay: -20s;
}

.cloud.c3 {
    top: 70%;
    left: -100px;
    font-size: 6rem;
    animation-duration: 70s;
    animation-delay: -10s;
}

/* Plane: High Altitude, Smooth Flight */
.plane {
    font-size: 5rem;
    top: 22%;
    left: -150px;
    opacity: 0.12;
    animation: premiumPlane 40s linear infinite;
}

/* Bike: Rugged Terrain Bounce */
.bike {
    font-size: 3.5rem;
    bottom: 15%;
    left: -100px;
    opacity: 0.1;
    animation: premiumBike 35s linear infinite;
}

/* Houseboat: Gentle Water Drift */
.houseboat {
    width: 120px;
    height: auto;
    bottom: 8%;
    left: -150px;
    opacity: 0.12;
    animation: premiumHouseboat 50s linear infinite;
}

/* --- Animation Keyframes --- */

@keyframes premiumCloud {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(100vw + 300px));
    }
}

@keyframes premiumPlane {
    0% {
        transform: translate(0, 0) rotate(10deg);
    }

    25% {
        transform: translate(30vw, -20px) rotate(8deg);
    }

    75% {
        transform: translate(90vw, 20px) rotate(12deg);
    }

    100% {
        transform: translate(calc(100vw + 200px), 0) rotate(10deg);
    }
}

@keyframes premiumBike {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    20% {
        transform: translate(25vw, -5px) rotate(-2deg);
    }

    40% {
        transform: translate(50vw, 2px) rotate(2deg);
    }

    60% {
        transform: translate(75vw, -3px) rotate(-1deg);
    }

    100% {
        transform: translate(calc(100vw + 150px), 0) rotate(0deg);
    }
}

@keyframes premiumHouseboat {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30vw, 8px) rotate(1.5deg);
    }

    50% {
        transform: translate(60vw, -4px) rotate(-1deg);
    }

    75% {
        transform: translate(90vw, 6px) rotate(1.2deg);
    }

    100% {
        transform: translate(calc(100vw + 200px), 0) rotate(0deg);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .plane {
        font-size: 2.2rem;
        top: 10%;
        opacity: 0.08;
    }

    .bike {
        font-size: 1.8rem;
        bottom: 8%;
        opacity: 0.06;
    }

    .houseboat {
        width: 60px;
        bottom: 5%;
        opacity: 0.08;
    }

    .cloud.c1 {
        font-size: 4rem;
    }

    .cloud.c2 {
        font-size: 6rem;
        top: 30%;
    }

    .cloud.c3 {
        font-size: 3rem;
    }
}

/* Drawer Menu Overlay */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: 990;
    /* Must be below header's z-index 1000 */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer-header {
    display: none;
    /* Hidden on desktop */
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 1001;
        /* Above overlay */
        padding: 0;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
        gap: 0;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .drawer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        margin-bottom: 10px;
    }

    .drawer-logo img {
        height: 40px;
        width: auto;
    }

    .drawer-close {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--text-dark);
        cursor: pointer;
    }

    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Stagger fade in effect for all 6 list items */
    .nav-links.active li:nth-of-type(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-of-type(2) {
        transition-delay: 0.15s;
    }

    .nav-links.active li:nth-of-type(3) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-of-type(4) {
        transition-delay: 0.25s;
    }

    .nav-links.active li:nth-of-type(5) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-of-type(6) {
        transition-delay: 0.35s;
    }

    .nav-links a {
        display: block;
        padding: 15px 25px;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--text-dark);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: background-color 0.3s ease, color 0.3s ease, padding-left 0.3s ease;
    }

    .nav-links a:hover {
        background-color: var(--bg-light);
        color: var(--primary-color);
        padding-left: 30px;
    }

    .nav-links a::after {
        display: none;
        /* Hide desktop underline effect */
    }

    .hero-bhutan {
        background:
            linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
            url('images/Bhutan_Banner.jpg');

        background-size: cover;
        background-position: center;
    }

    /* Bhutan Hero Section */
    .bhutan-hero {
        position: relative;
        height: 100vh;
        overflow: hidden;
        background-color: #000;
        /* Prevent flash */
    }

    .bhutan-video {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: translate(-50%, -50%);
        pointer-events: none;
        min-width: 100%;
        min-height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        animation: none;
        /* Disable zoom animation on mobile to keep centering */
    }

    .bhutan-video.playing {
        opacity: 1;
    }

    /* OVERLAY */
    .bhutan-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
    }

    /* CONTENT */
    .bhutan-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: white;
        padding: 0 20px;
        width: 100%;
    }

    .bhutan-title {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    }

    /* BUTTONS */
    .bhutan-ctas {
        margin-top: 20px;
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    @media (max-width: 768px) {
        .bhutan-ctas {
            flex-direction: column;
        }
    }

    .itinerary {
        margin-top: 30px;
    }

    .day {
        margin-bottom: 25px;
        padding: 15px;
        border-left: 4px solid #2d5cff;
        background: #f9f9f9;
        border-radius: 8px;
    }

    .day h3 {
        margin-bottom: 8px;
        color: #2d5cff;
    }
}

.package-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.package-buttons a {
    flex: 1;
    text-align: center;
}

/* Reusable "Why Visit" hero-style section */
.why-section {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    /* balanced spacing above the section (responsive overrides below) */
    margin-top: 0px;
    padding: 100px 50px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.why-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.why-section .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.why-section h2 {
    font-size: clamp(36px, 5vw, 54px);
    margin-bottom: 20px;
    font-weight: 600;
}

.why-section p {
    font-size: clamp(18px, 2vw, 22px);
    margin-bottom: 30px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .why-section {
        padding: 80px 20px;
        min-height: auto;
    }

    .why-section h2 {
        font-size: clamp(50px, 4vw, 40px);
    }

    .why-section p {
        font-size: clamp(16px, 3vw, 18px);
    }

    .why-section .why-extra {
        padding: 20px;
    }
}

/* ── TESTIMONIALS SLIDER ─────────────────────────── */
.testimonials-section {
    padding: 100px 0;
    background: transparent;
    overflow: hidden;
    position: relative;
}

.testimonial-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 50px auto 0;
    padding: 0 40px;
}

.testimonial-track-wrapper {
    overflow: visible;
    padding: 40px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    gap: 30px;
    cursor: grab;
}

.testimonial-track:active {
    cursor: grabbing;
}

.testimonial-card {
    flex: 0 0 450px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    user-select: none;
    opacity: 0.3;
    filter: blur(4px);
    transform: scale(0.85);
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.testimonial-card.active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.rev-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.rev-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rev-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.rev-name-wrap h4 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--text-dark);
    font-family: var(--font-main);
    display: flex;
    align-items: center;
    gap: 6px;
}

.rev-badge {
    color: #3b82f6;
    font-size: 0.9rem;
}

.rev-google-link {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.rev-google-link:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.rev-google-link img {
    width: 18px;
    height: 18px;
}

.rev-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 15px;
}

.rev-stars svg {
    width: 18px;
    height: 18px;
    fill: #ffb400;
}

.rev-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #526071;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-style: italic;
    flex-grow: 1;
}

.read-more-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
    width: 100%;
}

.read-more-btn:hover {
    gap: 12px;
    color: #1e40af;
}

/* Review Modal */
.rev-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

.rev-modal.active {
    opacity: 1;
    visibility: visible;
}

.rev-modal-content {
    background: #fff;
    width: 100%;
    max-width: 550px;
    border-radius: 32px;
    padding: 75px 40px 40px 40px;
    position: relative;
    transform: translateY(40px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.rev-modal.active .rev-modal-content {
    transform: translateY(0) scale(1);
}

.rev-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.2rem;
    color: #64748b;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: #f8fafc;
    z-index: 10;
}

.rev-modal-close:hover {
    background: #f1f5f9;
    color: #1e293b;
    transform: rotate(90deg);
}

.rev-modal .rev-text {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
    margin-top: 10px;
}

.rev-modal .rev-header {
    margin-bottom: 20px;
}

/* Controls */
.rev-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.rev-nav-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    color: #1e293b;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.rev-nav-btn:hover {
    background: #1e293b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.rev-dots {
    display: flex;
    gap: 12px;
}

.rev-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(30, 41, 59, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.rev-dot.active {
    width: 30px;
    border-radius: 10px;
    background: #3b82f6;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 320px;
        padding: 30px;
    }

    .testimonial-card:not(.active) {
        opacity: 0.1;
        filter: blur(6px);
    }

    .testimonial-carousel-container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        flex: 0 0 100%;
    }

    .testimonial-card:not(.active) {
        opacity: 0;
        transform: scale(0.9);
    }
}

/* ── TRUST BADGE CAPSULES ─────────────────────────── */
.trust-badges-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 10px 20px;
    margin: 20px 0;
    /* Developer: Reduced margin to keep Hero and Promo closer on desktop */
    flex-wrap: wrap;
    position: relative;
    z-index: 20;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.badge-capsule {
    background: #ffffff;
    padding: 16px 36px;
    /* Increased padding for PC */
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.badge-capsule:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Further increased icon size for PC */
.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

/* Keep Google logo at its original balanced size */
.badge-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.badge-icon i {
    font-size: 2.8rem;
}

.insta-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fb-icon {
    color: #1877F2;
}

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

.badge-label {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
    line-height: 1.2;
}

.badge-brand {
    font-size: 1.6rem;
    /* Increased font size for PC */
    font-weight: 700;
    line-height: 1;
}

.insta-text {
    font-family: 'Satisfy', cursive;
    /* Elegant cursive script */
    color: #d62976;
    font-weight: 400;
    /* Ensuring it's not bold or blocky */
}

.fb-text {
    color: #1877F2;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Google Review Specifics */
.rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.star-filled {
    color: #f59e0b;
    font-size: 1.2rem;
}

.rating-score {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1e293b;
}

.review-count {
    font-size: 0.85rem;
    color: #64748b;
    margin: 2px 0 0 0;
}

@media (max-width: 768px) {
    .trust-badges-container {
        gap: 8px;
        padding: 10px;
        margin: 15px 0;
        /* Developer: Reduced mobile margin for tighter flow between Hero and Promo */
        flex-wrap: nowrap;
        justify-content: center;
    }

    .badge-capsule {
        padding: 6px 10px;
        gap: 6px;
        flex-shrink: 1;
        min-width: 0;
    }

    .badge-icon {
        width: 24px;
        height: 24px;
    }

    .badge-icon img {
        width: 100%;
        /* Force image to fit mobile container size */
        height: 100%;
    }

    .badge-icon i {
        font-size: 1.4rem;
    }

    .badge-brand {
        font-size: 0.85rem;
    }

    .badge-label {
        font-size: 0.65rem;
    }

    .rating-score {
        font-size: 1rem;
    }

    .star-filled {
        font-size: 0.8rem;
    }

    .review-count {
        font-size: 0.7rem;
    }
}

@media (max-width: 380px) {
    .trust-badges-container {
        gap: 4px;
        padding: 0 5px;
    }

    .badge-capsule {
        padding: 5px 6px;
        gap: 4px;
    }

    .badge-brand {
        font-size: 0.75rem;
    }
}
/* ====== FLOATING ACTION BUTTONS ====== */
.floating-btns {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    transform: translateX(120px);
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.floating-btns.visible {
    transform: translateX(0);
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    outline: none;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.scroll-btn {
    background: #3b82f6;
    width: 45px;
    height: 45px;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-btn {
    background: #25d366;
    width: 65px;
    height: 65px;
    font-size: 32px;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .floating-btns {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}


/* ====== WHATSAPP POPUP MENU ====== */
.wa-popup {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: bottom right;
}

.wa-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.wa-header {
    margin-bottom: 5px;
}

.wa-header p {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

.wa-close-btn {
    position: absolute;
    top: -15px;
    right: -5px;
    width: 35px;
    height: 35px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1e293b;
    font-size: 14px;
    transition: all 0.3s ease;
}

.wa-close-btn:hover {
    background: #f1f5f9;
    transform: rotate(90deg);
}

.wa-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wa-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 15px;
    text-decoration: none;
    color: #1e293b;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.wa-option:hover {
    background: #f8fafc;
    border-color: #e2e8f0;
    transform: translateX(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.wa-opt-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}

.wa-opt-icon.call {
    background: #3b82f6;
}

.wa-opt-icon.chat {
    background: #25d366;
}

@media (max-width: 768px) {
    .wa-popup {
        width: 280px;
        bottom: 75px;
        right: -10px;
    }
}


@media (max-width: 768px) {
    .scroll-btn {
        width: 38px !important;
        height: 38px !important;
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .whatsapp-btn {
        width: 55px !important;
        height: 55px !important;
        font-size: 26px !important;
    }
}


@media (max-width: 768px) {
    .rev-modal-content {
        padding: 65px 25px 35px 25px;
        max-width: 95%;
    }

    .rev-modal-close {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}
