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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #1f2937;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Prevent oversized inline SVGs */
svg {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    max-width: 100%;
    max-height: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 700;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Custom Colors based on Tailwind config */
:root {
    /* Earth colors */
    --earth-50: #f9f7f2;
    --earth-100: #ededed;
    --earth-200: #d9a066;
    --earth-300: #b5651d;
    --earth-400: #8b4513;
    --earth-500: #5c4033;
    --earth-600: #4a3728;
    --earth-700: #3e2c1c;
    --earth-800: #2c5e1a;
    --earth-900: #1a3c0f;
    
    /* Gold colors */
    --gold-100: #F9F1D8;
    --gold-200: #F0DEAA;
    --gold-300: #E6CB7D;
    --gold-400: #D4AF37;
    --gold-500: #C5A028;
    --gold-600: #A08016;
    --gold-700: #755C08;
    
    /* Sand colors */
    --sand-50: #FDFBF7;
    --sand-100: #F7F3E8;
    --sand-200: #EBE5CE;
    --sand-300: #DED6B3;
    --sand-400: #D2C697;
    --sand-500: #C6B67B;
    
    /* Primary green */
    --primary: #2C5E1A;
    --primary-light: #4A7C36;
    --primary-dark: #1A3C0F;
    
    /* Secondary */
    --secondary: #B5651D;
    --secondary-light: #D9A066;
    --secondary-dark: #8B4513;
    
    /* Standard colors */
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --green-800: #166534;
    --green-900: #14532d;
    
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --white: #ffffff;
    --black: #000000;
}

/* Container */
.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1rem;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 1rem;
    }
}

/* Top Bar */
.top-bar {
    height: 40px;
    background: #52b73b;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-bar-left {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-icon {
    width: 0.9rem;
    height: 0.9rem;
    opacity: 0.9;
}

.top-bar-right {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.top-bar-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    color: var(--white);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.top-bar-social:hover {
    transform: scale(1.1);
}

.top-bar-social .social-icon {
    width: 0.9rem;
    height: 0.9rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: transparent;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

.main-nav-wrapper {
    padding: 1.25rem 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
    transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

/* Hide top-bar: Translate up by top-bar's height (40px) */
.navbar.top-bar-hidden {
    transform: translateY(-40px);
}

/* Hide entire navbar: Translate up by 100% */
.navbar.navbar-hidden {
    transform: translateY(-100%);
}

.navbar.scrolled {
    background: transparent;
}

.navbar.scrolled .main-nav-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .navbar.top-bar-hidden {
        transform: translateY(0);
    }
    .navbar.navbar-hidden {
        transform: translateY(-100%);
    }
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.logo-img {
    position: relative;
    height: 2.75rem;
    width: 2.75rem;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: border-color 0.3s ease;
}

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

.logo:hover .logo-img {
    border-color: var(--primary-light);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--white);
    transition: color 0.3s ease;
}

.navbar.scrolled .logo-text {
    color: var(--gray-900);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 0.825rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.35rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--green-400);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link:hover {
    color: var(--primary-light);
}

.navbar.scrolled .nav-link {
    color: var(--gray-700);
}

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

.dropdown-toggle {
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-arrow {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-toggle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--green-400);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown:hover .dropdown-toggle::after {
    transform: scaleX(1);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 12rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    padding: 0.5rem 0;
    z-index: 100;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    color: var(--gray-900);
    text-decoration: none;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    transition: background 0.3s ease;
}

.dropdown-item:hover {
    background: var(--gray-100);
}

.navbar.scrolled .nav-link::after {
    background: #00b14f;
}

.navbar.scrolled .nav-link:hover {
    color: #00b14f;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    background: var(--green-500);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-btn:hover {
    background: var(--green-600);
}

.whatsapp-icon {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}

.book-btn {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: #00b14f;
}

.book-btn:hover {
    background: var(--earth-50);
}

.navbar.scrolled .book-btn {
    background: #00b14f;
    color: var(--white);
}

.navbar.scrolled .book-btn:hover {
    background: var(--primary-dark);
}

.menu-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
}

.navbar.scrolled .menu-toggle {
    color: var(--gray-900);
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.5s ease;
}

.mobile-menu.open {
    transform: translateX(0);
}

.menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--gray-800);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-close:hover {
    color: #00b14f;
    transform: rotate(90deg);
}

.menu-close svg {
    width: 2rem;
    height: 2rem;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 0.5rem;
    padding: 2rem;
}

/* Scroll lock when mobile menu is open */
body.menu-open, html.menu-open {
    overflow: hidden !important;
    height: 100vh !important;
    touch-action: none;
}

/* Stagger animations for mobile menu links */
.mobile-menu-content > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open .mobile-menu-content > * {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.open .mobile-menu-content > *:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu-content > *:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-menu-content > *:nth-child(3) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-menu-content > *:nth-child(4) { transition-delay: 0.3s; }
.mobile-menu.open .mobile-menu-content > *:nth-child(5) { transition-delay: 0.35s; }
.mobile-menu.open .mobile-menu-content > *:nth-child(6) { transition-delay: 0.4s; }
.mobile-menu.open .mobile-menu-content > *:nth-child(7) { transition-delay: 0.45s; }
.mobile-menu.open .mobile-menu-content > *:nth-child(8) { transition-delay: 0.5s; }


.mobile-nav-link {
    position: relative;
    display: inline-block;
    padding: 0.75rem 0.25rem;
    padding-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    text-align: center;
    width: auto;
    transition: color 0.3s ease;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #00b14f;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-link:hover::after {
    transform: scaleX(1);
}

.mobile-nav-link:hover {
    color: #00b14f;
}

.mobile-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
    background: var(--green-500);
    color: var(--white);
    border-radius: 9999px;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 1.125rem;
}

.mobile-book {
    text-align: center;
    padding: 1rem;
    background: #00b14f;
    color: var(--white);
    border-radius: 9999px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.mobile-book:hover {
    background: var(--primary-dark);
}

/* Floating WhatsApp */
.floating-whatsapp {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    right: 1.25rem;
    z-index: 50;
    background: var(--green-500);
    color: var(--white);
    border-radius: 9999px;
    padding: 1rem;
    box-shadow: 0 25px 50px -12px rgba(34, 197, 94, 0.5);
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    background: var(--green-600);
}

@media (max-width: 767px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .floating-whatsapp {
        display: flex;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: var(--green-900);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 12;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.45) 100%
    );
}

.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    isolation: isolate;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.4s ease-in-out, visibility 1.4s ease-in-out;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    will-change: transform;
}

.hero-slide.active .hero-slide-bg {
    animation: heroKenBurns 7s ease-out forwards;
}

@keyframes heroKenBurns {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

/* Hero Stripe Wipe Transition */
.hero-stripe {
    position: absolute;
    inset: 0;
    background: var(--white);
    z-index: 10; /* Above slider, below content */
    transform: scaleX(0);
    transform-origin: left center;
    pointer-events: none;
}

.hero-stripe.wipe-in {
    animation: stripeIn 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.hero-stripe.wipe-out {
    animation: stripeOut 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes stripeIn {
    from { transform: scaleX(0); transform-origin: left center; }
    to { transform: scaleX(1); transform-origin: left center; }
}

@keyframes stripeOut {
    from { transform: scaleX(1); transform-origin: right center; }
    to { transform: scaleX(0); transform-origin: right center; }
}

.hero-content-layer {
    position: absolute;
    inset: 0;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-content-layer .container {
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.hero-content-layer .hero-content {
    pointer-events: auto;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 40rem;
    width: 100%;
    padding: 5.5rem 3.25rem 2rem;
    margin-left: auto;
    margin-right: auto;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.hero-content .hero-title,
.hero-content .hero-subtitle,
.hero-content .hero-location,
.hero-content .hero-cta {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-content.hero-content-updating {
    opacity: 0;
    transform: translateY(8px);
}

@media (min-width: 640px) {
    .hero-content {
        max-width: 42rem;
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        max-width: 44rem;
        padding-left: 4.5rem;
        padding-right: 4.5rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--green-600);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
}

.hero-badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--white);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 4px 14px rgba(0, 0, 0, 0.45);
    line-height: 1.25;
    max-width: 100%;
    word-wrap: break-word;
    letter-spacing: 0.01em;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 1.75rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.125rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-subtitle {
    font-size: 0.8125rem;
    color: rgba(229, 231, 235, 1);
    margin-bottom: 1.25rem;
    max-width: 100%;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 0.9375rem;
        max-width: 32rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.25rem;
}

.hero-location svg {
    color: var(--green-400);
}

.hero-location span {
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-cta-btn {
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.8125rem;
    transition: all 0.3s ease;
    display: inline-block;
}

@media (min-width: 768px) {
    .hero-cta-btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.875rem;
    }
}

.hero-cta-primary {
    background: var(--green-600);
    color: var(--white);
}

.hero-cta-primary:hover {
    background: var(--green-700);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

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

/* Hero Navigation */
.hero-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 0.5rem;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 25;
}

@media (min-width: 768px) {
    .hero-nav {
        padding: 0 1rem;
    }
}

.nav-arrow {
    pointer-events: auto;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-arrow:hover {
    background: rgba(71, 49, 49, 0.3);
}

.nav-arrow svg {
    width: 1.25rem;
    height: 1.25rem;
}

@media (min-width: 768px) {
    .nav-arrow svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 30;
}

.slide-indicator {
    height: 0.375rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    width: 1rem;
    cursor: pointer;
}

.slide-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

.slide-indicator.active {
    background: var(--green-400);
    width: 2.5rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    z-index: 30;
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.scroll-line {
    width: 1px;
    height: 3rem;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line-active {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--green-400);
    animation: scrollLine 2s linear infinite;
}

@keyframes scrollLine {
    0% {
        height: 0;
        top: 0;
    }
    100% {
        height: 100%;
        top: 0;
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    color: #00b14f;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.section-badge.gold {
    color: var(--gold-500);
}

.section-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 1.625rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-description {
    color: var(--gray-600);
    max-width: 42rem;
    margin: 0 auto;
    font-size: 0.9375rem;
    line-height: 1.6;
    padding: 0 0.25rem;
}

@media (min-width: 768px) {
    .section-description {
        font-size: 1rem;
    }
}

/* Activities Section */
.activities-section {
    padding: 6rem 0;
    background: var(--white);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 640px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .activities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.activity-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-100);
    background: var(--white);
    overflow: hidden;
    isolation: isolate;
    transition: box-shadow 0.5s ease, border-color 0.5s ease;
}

/* Water-fill rise from bottom on hover */
.activity-card::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    z-index: 0;
    border-radius: inherit;
    background: linear-gradient(to top, var(--primary-dark), var(--primary));
    transition: height 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-card:hover::before {
    height: 100%;
}

.activity-card:hover {
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.18);
    border-color: transparent;
}

.activity-card > * {
    position: relative;
    z-index: 1;
}

.activity-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.5s ease, background 0.5s ease, color 0.5s ease;
}

.activity-card:hover .activity-icon {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.22) !important;
    color: var(--white) !important;
}

.activity-title,
.activity-desc {
    transition: color 0.55s ease 0.05s;
}

.activity-card:hover .activity-title {
    color: var(--white);
}

.activity-card:hover .activity-desc {
    color: rgba(255, 255, 255, 0.92);
}

.activity-icon.orange {
    background: rgba(251, 146, 60, 0.1);
    color: #f97316;
}

.activity-icon.green {
    background: rgba(34, 197, 94, 0.1);
    color: var(--green-700);
}

.activity-icon.blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue-600);
}

.activity-icon.purple {
    background: rgba(168, 85, 247, 0.1);
    color: var(--purple-600);
}

.activity-icon.cyan {
    background: rgba(6, 182, 212, 0.1);
    color: var(--cyan-600);
}

.activity-icon.amber {
    background: rgba(245, 158, 11, 0.1);
    color: var(--amber-600);
}

.activity-icon svg {
    width: 1.875rem;
    height: 1.875rem;
}

.activity-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.activity-desc {
    color: var(--gray-500);
    font-size: 0.875rem;
    line-height: 1.625;
}

/* Achievements Section */
.achievements-section {
    padding: 4rem 0;
    background: var(--earth-800);
    position: relative;
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: 0 350px;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.decorative-circle-1 {
    top: -5rem;
    left: -5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(34, 197, 94, 0.4);
    filter: blur(3rem);
}

.decorative-circle-2 {
    bottom: -5rem;
    right: -5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(22, 163, 74, 0.5);
    filter: blur(3rem);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.stat-icon {
    margin-bottom: 0.75rem;
}

.stat-icon.green {
    color: var(--green-400);
}

.stat-icon.yellow {
    color: #facc15;
}

.stat-icon.orange {
    color: #fb923c;
}

.stat-icon.cyan {
    color: #22d3ee;
}

.stat-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.25rem;
    letter-spacing: -0.025em;
    font-variant-numeric: tabular-nums;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 2.25rem;
    }
}

.stat-label {
    color: rgba(187, 247, 208, 1);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

/* Tours Section */
.tours-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
}

.filter-btn:hover {
    border-color: #00b14f;
    color: #00b14f;
}

.filter-btn.active {
    background: #00b14f;
    color: var(--white);
    border-color: #00b14f;
    box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.2);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tours-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tour-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: translateY(-0.25rem);
}

.tour-card-image {
    position: relative;
    height: 15rem;
    overflow: hidden;
}

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

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

.tour-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.tour-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #00b14f;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tour-category.adventure {
    background: #f97316;
}

.tour-category.trekking {
    background: var(--green-600);
}

.tour-category.cultural {
    background: #9333ea;
}

.tour-category.wildlife {
    background: #0891b2;
}

.tour-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.25;
}

.tour-price-value {
    color: #00b14f;
    font-weight: 800;
    font-size: 0.875rem;
}

.tour-price-note {
    color: var(--gray-400);
    font-size: 0.75rem;
}

.tour-card-pricing-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(34, 197, 94, 0.07); /* Beautiful elegant light green background */
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(34, 197, 94, 0.16); /* Cohesive soft green border */
    transition: all 0.3s ease;
}

.tour-card:hover .tour-card-pricing-box {
    background: rgba(34, 197, 94, 0.14); /* Slightly richer but still soft green on hover */
    border-color: rgba(34, 197, 94, 0.35); /* Solidified green border on hover */
}

.pricing-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.pricing-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.pricing-value {
    font-size: 0.9375rem;
    font-weight: 800;
    color: #00b14f;
}

.pricing-divider {
    width: 1px;
    height: 2rem;
    background: rgba(34, 197, 94, 0.22); /* Integrated soft green divider */
    margin: 0 1rem;
}

.tour-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.tour-card:hover .tour-card-title {
    color: #00b14f;
}

.tour-card-desc {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
    line-clamp: 2;
}

.tour-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: 1rem;
}

.tour-highlight {
    font-size: 0.75rem;
    background: rgba(34, 197, 94, 0.1);
    color: #00b14f;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    border: 1px solid rgba(34, 197, 94, 0.1);
    font-weight: 500;
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.625rem 1rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .tour-meta {
        font-size: 0.875rem;
        gap: 0.75rem 1.25rem;
    }
}

.tour-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.tour-meta-item span {
    white-space: nowrap;
}

.tour-meta-item svg {
    color: #00b14f;
    width: 0.9375rem;
    height: 0.9375rem;
    flex-shrink: 0;
}

.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.tour-card-link {
    color: #00b14f;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s ease;
}

.tour-card-link:hover {
    color: var(--primary-light);
}

.tour-card-link svg {
    width: 0.875rem;
    height: 0.875rem;
}

.tour-card-btn {
    background: #00b14f;
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tour-card-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.2);
}

.tours-cta {
    text-align: center;
    margin-top: 3.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #00b14f;
    color: var(--white);
    font-weight: 700;
    padding: 1rem 3rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: var(--primary-dark);
    box-shadow: 0 25px 50px -12px rgba(34, 197, 94, 0.3);
}

.cta-button svg {
    width: 1.25rem;
    height: 1.25rem;
}

.cta-note {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-top: 0.75rem;
}

/* Regions Section */
.regions-section {
    padding: 6rem 0;
    background: var(--sand-50);
    overflow: hidden;
}

.regions-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 20rem;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .regions-container {
        flex-direction: row;
        height: 22rem;
        gap: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .regions-container {
        height: 26rem;
    }
}

.region-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    flex: 1;
}

@media (min-width: 768px) {
    .region-card {
        flex: 1;
    }
    
    .region-card.active {
        flex: 2;
    }
    
    .region-card:not(.active) {
        filter: grayscale(1);
    }
    
    .region-card:not(.active):hover {
        filter: grayscale(0);
    }
}

@media (min-width: 1024px) {
    .region-card {
        flex: 1;
    }
    
    .region-card.active {
        flex: 3;
    }
    
    .region-card:not(.active) {
        filter: grayscale(1);
    }
    
    .region-card:not(.active):hover {
        filter: grayscale(0);
    }
}

.region-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.region-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
    transition: opacity 0.5s ease;
}

.region-card.active .region-overlay {
    opacity: 0.9;
}

.region-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
}

.region-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    transition: all 0.5s ease;
    transform-origin: left;
    font-size: 1.25rem;
}

@media (min-width: 640px) {
    .region-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .region-card:not(.active) .region-title {
        font-size: 1rem;
        transform: translateY(-2.5rem) translateX(0.25rem) rotate(-90deg);
        white-space: nowrap;
        max-width: none;
    }
    
    .region-card.active .region-title {
        font-size: 1.5rem;
        transform: translateY(0) rotate(0);
    }
}

@media (min-width: 1024px) {
    .region-card:not(.active) .region-title {
        font-size: 1.125rem;
        transform: translateY(-3.5rem) translateX(0.5rem) rotate(-90deg);
    }
    
    .region-card.active .region-title {
        font-size: 1.875rem;
        transform: translateY(0) rotate(0);
    }
}

@media (min-width: 1280px) {
    .region-card.active .region-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 767px) {
    .region-card {
        min-height: 14rem;
    }

    .region-card:not(.active) .region-title {
        transform: none;
        font-size: 1.125rem;
    }

    .region-card.active .region-title {
        font-size: 1.375rem;
    }

    .region-desc {
        font-size: 0.875rem;
    }
}

.region-details {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.4s ease;
}

.region-card.active .region-details {
    max-height: 500px;
    opacity: 1;
}

.region-desc {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.5;
}

.region-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.highlight-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.highlight-tag:hover {
    background: rgba(255, 255, 255, 0.3);
}

.region-link {
    display: inline-flex;
    align-items: center;
    color: var(--gold-400);
    font-weight: 500;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.region-link:hover {
    color: var(--white);
}

.region-link svg {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.region-link:hover svg {
    transform: translateX(0.25rem);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--white);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .about-content {
        flex-direction: row;
        align-items: center;
    }
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image-wrapper {
    position: relative;
    height: 27.5rem;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 94, 26, 0.4), transparent);
}

.floating-stat {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--gray-100);
    animation: fadeInUp 0.5s ease 0.3s both;
}

.stat-icon-wrapper {
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    padding: 0.75rem;
    color: #00b14f;
}

.stat-icon-wrapper svg {
    width: 1.5rem;
    height: 1.5rem;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--gray-900);
    display: block;
}

.stat-text {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

.about-text {
    flex: 1;
}

.about-desc {
    color: var(--gray-600);
    line-height: 1.75;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.about-desc-secondary {
    color: var(--gray-500);
    line-height: 1.75;
    font-size: 0.875rem;
    margin-bottom: 1.75rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.5rem;
    padding-top: 1rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem;
    border-radius: 1rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.feature-icon.green {
    background: rgba(34, 197, 94, 0.1);
    color: #00b14f;
}

.feature-icon.amber {
    background: rgba(245, 158, 11, 0.1);
    color: var(--amber-600);
}

.feature-icon.blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue-600);
}

.feature-icon svg {
    width: 1.125rem;
    height: 1.125rem;
}

.feature-title {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.feature-desc {
    color: var(--gray-500);
    font-size: 0.75rem;
    line-height: 1.625;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: var(--earth-50);
    content-visibility: auto;
    contain-intrinsic-size: 0 600px;
}

.coverflow-container {
    position: relative;
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.coverflow-stage {
    position: relative;
    width: 100%;
    height: 25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.coverflow-item {
    position: absolute;
    width: 16rem;
    height: 22rem;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.coverflow-item.active {
    transform: translate3d(0, 0, 100px) rotateY(0deg) scale(1.15);
    z-index: 10;
    opacity: 1;
    filter: brightness(1);
    visibility: visible;
}

.coverflow-item.left-1 {
    transform: translate3d(-55%, 0, 20px) rotateY(35deg) scale(0.95);
    z-index: 8;
    opacity: 0.85;
    filter: brightness(0.7);
    visibility: visible;
}

.coverflow-item.left-2 {
    transform: translate3d(-105%, 0, -40px) rotateY(45deg) scale(0.8);
    z-index: 6;
    opacity: 0.55;
    filter: brightness(0.5);
    visibility: visible;
}

.coverflow-item.left-far {
    transform: translate3d(-150%, 0, -100px) rotateY(55deg) scale(0.65);
    z-index: 2;
    opacity: 0;
    filter: brightness(0.3);
    visibility: hidden;
}

.coverflow-item.right-1 {
    transform: translate3d(55%, 0, 20px) rotateY(-35deg) scale(0.95);
    z-index: 8;
    opacity: 0.85;
    filter: brightness(0.7);
    visibility: visible;
}

.coverflow-item.right-2 {
    transform: translate3d(105%, 0, -40px) rotateY(-45deg) scale(0.8);
    z-index: 6;
    opacity: 0.55;
    filter: brightness(0.5);
    visibility: visible;
}

.coverflow-item.right-far {
    transform: translate3d(150%, 0, -100px) rotateY(-55deg) scale(0.65);
    z-index: 2;
    opacity: 0;
    filter: brightness(0.3);
    visibility: hidden;
}

.coverflow-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    pointer-events: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: filter 0.5s ease;
}

.coverflow-overlay {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    background: rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.coverflow-item.active .coverflow-overlay {
    background: transparent;
}

.coverflow-item:hover .coverflow-overlay {
    opacity: 1;
}

.coverflow-controls {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    z-index: 20;
}

.coverflow-btn {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--white);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.coverflow-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.coverflow-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Mobile responsive styles */
@media (max-width: 767px) {
    .coverflow-stage {
        height: 19rem;
    }
    .coverflow-item {
        width: 12rem;
        height: 16rem;
    }
}

/* Social Section */
.social-section {
    margin-top: 5rem;
}

.social-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.social-header svg {
    color: var(--earth-900);
    width: 1.25rem;
    height: 1.25rem;
}

.social-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--earth-900);
}

@media (min-width: 768px) {
    .social-title {
        font-size: 1.25rem;
    }
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .social-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.social-item {
    position: relative;
    aspect-ratio: 1;
    background: var(--earth-200);
    overflow: hidden;
}

.social-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.social-item:hover img {
    opacity: 0.9;
}

.social-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
}

.social-item:hover .social-overlay {
    opacity: 1;
}

.social-overlay svg {
    color: var(--white);
    width: 1.5rem;
    height: 1.5rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 100;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.gallery-modal.open {
    display: flex;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--white);
}

.modal-close svg {
    width: 2rem;
    height: 2rem;
}

#modal-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--earth-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--earth-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.testimonial-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border: 4px solid var(--earth-200);
    background: var(--earth-800);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: var(--earth-300);
}

.testimonial-rating svg,
.star-filled {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.testimonial-content {
    color: var(--earth-700);
    font-style: italic;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.author-name {
    font-weight: 700;
    color: var(--earth-900);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--earth-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--earth-50);
}

.contact-wrapper {
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid var(--earth-100);
}

@media (min-width: 768px) {
    .contact-wrapper {
        flex-direction: row;
    }
}

.contact-info {
    width: 100%;
    background: var(--earth-800);
    color: var(--white);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .contact-info {
        width: 40%;
        padding: 3rem;
    }
}

.contact-info-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-info-desc {
    color: rgba(234, 242, 232, 1);
    margin-bottom: 2.5rem;
    line-height: 1.625;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.contact-icon {
    color: rgba(187, 247, 208, 1);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-label {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: rgba(234, 242, 232, 1);
    word-break: break-all;
}

.contact-note {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(34, 197, 94, 0.3);
}

.contact-note p {
    font-size: 0.875rem;
    color: rgba(187, 247, 208, 1);
}

.contact-form-wrapper {
    width: 100%;
    padding: 2rem;
}

@media (min-width: 768px) {
    .contact-form-wrapper {
        width: 60%;
        padding: 3rem;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--earth-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    background: var(--earth-50);
    border: 1px solid var(--earth-200);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid var(--earth-500);
    border-color: transparent;
}

.form-group textarea {
    resize: none;
}

.submit-btn {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--white);
    background: var(--earth-800);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover {
    background: var(--earth-700);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.25rem);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-error {
    color: #b91c1c;
    font-size: 0.875rem;
    text-align: center;
    margin-top: 0.75rem;
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem;
    height: 100%;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.1);
    color: #00b14f;
    margin-bottom: 1.5rem;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-0.5rem);
    }
}

.success-icon svg {
    width: 2.5rem;
    height: 2.5rem;
}

.success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--earth-900);
    margin-bottom: 1rem;
}

.success-desc {
    color: var(--earth-600);
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background: var(--earth-800);
    color: rgba(234, 242, 232, 1);
    padding: 4rem 0 2rem;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(34, 197, 94, 0.5);
    background: rgba(34, 197, 94, 0.2);
}

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

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--white);
}

.footer-desc {
    color: rgba(187, 247, 208, 1);
    font-size: 0.875rem;
    line-height: 1.625;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: rgba(187, 247, 208, 1);
    background: rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.social-link[aria-label="Instagram"]:hover {
    background: #E1306C;
}

.social-link[aria-label="TikTok"]:hover {
    background: #000000;
}

.social-link[aria-label="Facebook"]:hover {
    background: #1877F2;
}

.social-link.whatsapp {
    background: var(--green-500);
}

.social-link[aria-label="WhatsApp"]:hover,
.social-link.whatsapp:hover {
    background: #25D366;
}

.social-link svg {
    width: 1rem;
    height: 1rem;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav li {
    list-style: none;
}

.footer-nav a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(187, 247, 208, 1);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-bullet {
    width: 0.375rem;
    height: 0.375rem;
    background: #00b14f;
    border-radius: 50%;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-icon {
    color: rgba(187, 247, 208, 1);
    flex-shrink: 0;
    margin-top: 0.25rem;
    width: 1rem;
    height: 1rem;
}

.footer-contact-label {
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.125rem;
}

.footer-contact-value {
    color: rgba(187, 247, 208, 1);
    font-size: 0.875rem;
}

.footer-contact-value a {
    transition: color 0.3s ease;
}

.footer-contact-value a:hover {
    color: var(--white);
}

.footer-quote {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 0.75rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.footer-quote p {
    color: rgba(234, 242, 232, 1);
    font-size: 0.875rem;
    font-style: italic;
    line-height: 1.625;
}

.footer-bottom {
    border-top: 1px solid rgba(34, 197, 94, 0.3);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(187, 247, 208, 1);
    font-size: 0.875rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: #00b14f;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Utility Classes */
.overflow-x-hidden {
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-location svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.floating-whatsapp .whatsapp-icon {
    width: 1.5rem;
    height: 1.5rem;
}

@media (max-width: 767px) {
    .scroll-indicator {
        display: none;
    }

    .hero-cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .logo-text {
        font-size: 1rem;
    }

    .floating-stat {
        right: 0.5rem;
        bottom: -1rem;
        padding: 0.75rem 1rem;
    }

    .stat-number {
        font-size: 1.25rem;
    }
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

/* ==========================================================================
   Tour Details Modal
   ========================================================================== */
.tour-details-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-details-modal.open {
    opacity: 1;
}

.tour-details-content {
    background: var(--white);
    max-width: 1100px;
    width: 92%;
    margin: 4rem auto;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(40px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-details-modal.open .tour-details-content {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .tour-details-content {
        width: 100%;
        margin: 0;
        border-radius: 0;
        min-height: 100vh;
        transform: translateY(100%);
    }
    .tour-details-modal.open .tour-details-content {
        transform: translateY(0);
    }
}

.tour-details-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1010;
    transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.tour-details-close:hover {
    background: #00b14f;
    color: var(--white);
    transform: rotate(90deg);
}

.tour-details-hero {
    position: relative;
    height: 450px;
    color: var(--white);
}

@media (max-width: 768px) {
    .tour-details-hero {
        height: 280px;
    }
}

.tour-details-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-details-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 10%, rgba(15, 23, 42, 0.3) 60%, transparent);
}

.tour-details-hero-info {
    position: absolute;
    bottom: 2.5rem;
    left: 3rem;
    right: 3rem;
}

@media (max-width: 768px) {
    .tour-details-hero-info {
        bottom: 1.5rem;
        left: 1.5rem;
        right: 1.5rem;
    }
}

.tour-details-hero-info .tour-category {
    position: relative;
    top: auto;
    left: auto;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.tour-details-hero-info h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .tour-details-hero-info h1 {
        font-size: 1.85rem;
    }
}

.td-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .td-meta-row {
        gap: 0.75rem;
        font-size: 0.85rem;
    }
}

.tour-details-body {
    display: grid;
    grid-template-columns: 2.8fr 1.2fr;
    gap: 3.5rem;
    padding: 3.5rem;
    background: var(--white);
}

@media (max-width: 991px) {
    .tour-details-body {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2.5rem;
    }
}

.td-section {
    margin-bottom: 3.5rem;
}

.td-section h2 {
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    border-left: 5px solid var(--primary);
    padding-left: 1rem;
    letter-spacing: -0.01em;
}

#td-history {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--gray-600);
}

/* Timeline */
.td-itinerary-timeline {
    position: relative;
    padding-left: 2rem;
    margin-left: 0.5rem;
}

.td-timeline-track {
    position: absolute;
    left: 0;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 4px;
    background: var(--gray-200);
    border-radius: 99px;
    z-index: 1;
}

.td-timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #52b73b; /* Using beautiful green matching user image */
    border-radius: 99px;
    transition: height 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.td-timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 0.5rem;
    z-index: 2;
}

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

.td-timeline-item::before {
    content: '';
    position: absolute;
    left: -2.15rem; /* Perfect alignment with track */
    top: 0.25rem;
    width: 0.75rem;
    height: 0.75rem;
    background: var(--gray-300);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.td-timeline-item:hover::before {
    transform: scale(1.15);
    background: var(--gray-400);
}

/* Active Day States */
.td-timeline-item.active::before {
    background: #52b73b;
    border-color: var(--white);
    box-shadow: 0 0 0 5px rgba(82, 183, 59, 0.25);
    transform: scale(1.25);
}

.td-timeline-item.active .td-timeline-day {
    color: #52b73b;
    transform: translateX(4px);
}

.td-timeline-day {
    font-weight: 800;
    color: var(--gray-400);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.td-timeline-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.td-timeline-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-600);
}

/* Inclusions/Exclusions */
.td-inclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 600px) {
    .td-inclusions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.td-inclusions, .td-exclusions {
    background: var(--gray-50);
    padding: 1.75rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
}

.td-inclusions h3 {
    color: #00b14f;
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.td-exclusions h3 {
    color: #dc2626;
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.td-inclusions ul, .td-exclusions ul {
    list-style: none;
}

.td-inclusions li, .td-exclusions li {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
    display: flex;
    align-items: flex-start;
}

.td-inclusions li::before {
    content: '✓';
    color: #00b14f;
    margin-right: 0.75rem;
    font-weight: 900;
}

.td-exclusions li::before {
    content: '✗';
    color: #dc2626;
    margin-right: 0.75rem;
    font-weight: 900;
}

/* Table Design */
.td-pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.5rem;
}

.td-pricing-table th, .td-pricing-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.td-pricing-table th {
    background: var(--gray-50);
    color: var(--gray-800);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.td-pricing-table td {
    color: var(--gray-700);
    font-size: 1rem;
}

.td-pricing-table tr:hover td {
    background: rgba(22, 101, 52, 0.02);
}

/* Activity Tags */
.td-activities-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.td-activity-tag {
    background: rgba(22, 101, 52, 0.06);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.td-activity-tag:hover {
    background: #00b14f;
    color: var(--white);
    transform: translateY(-2px);
}

/* FAQ Accordion */
.td-faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    overflow: hidden;
    background: var(--white);
    transition: all 0.3s ease;
}

.td-faq-item:hover {
    border-color: var(--primary-light);
}

.td-faq-question {
    background: var(--white);
    padding: 1.25rem;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--gray-800);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.td-faq-question:hover {
    background: var(--gray-50);
    color: #00b14f;
}

.td-faq-question svg {
    transition: transform 0.3s ease;
    color: var(--gray-400);
}

.td-faq-item.open .td-faq-question svg {
    transform: rotate(180deg);
    color: #00b14f;
}

.td-faq-answer {
    padding: 0 1.25rem 1.25rem 1.25rem;
    display: none;
    line-height: 1.6;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.td-faq-item.open .td-faq-answer {
    display: block;
}

/* Sidebar / Booking widget */
.td-booking-card {
    background: linear-gradient(135deg, rgba(22, 101, 52, 0.03), rgba(22, 101, 52, 0.08));
    border: 1px solid rgba(22, 101, 52, 0.15);
    padding: 2.25rem 2rem;
    border-radius: 1.5rem;
    position: sticky;
    top: 6.5rem;
    text-align: center;
    box-shadow: 0 10px 30px -15px rgba(22, 101, 52, 0.2);
}

.td-booking-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.td-booking-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.td-book-now-btn {
    display: block;
    background: #00b14f;
    color: var(--white);
    padding: 1rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 10px 20px -8px rgba(22, 101, 52, 0.4);
    transition: all 0.3s ease;
}

.td-book-now-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -8px rgba(22, 101, 52, 0.5);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
    color: white;
}

.floating-whatsapp svg {
    width: 2rem;
    height: 2rem;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 3rem;
        height: 3rem;
    }
    .floating-whatsapp svg {
        width: 1.75rem;
        height: 1.75rem;
    }
}

/* ==========================================================================
   Our Team - Fixed Background Styling
   ========================================================================== */
.team-section {
    position: relative;
    padding: 6rem 0;
    background-image: linear-gradient(rgba(249, 250, 251, 0.88), rgba(249, 250, 251, 0.88)), url('images/Hunza Valley Explorer.jpg');
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Fallback for iOS and smaller viewports to prevent background jitter */
@media (max-width: 1024px) {
    .team-section {
        background-attachment: scroll;
    }
}

/* ==========================================================================
   Chatbot - Virtual Travel Guide Styling
   ========================================================================== */
.chatbot-wrapper {
    position: fixed;
    bottom: 6.5rem; /* Stacked right above the floating WhatsApp button */
    right: 2rem;
    z-index: 999; /* Float level */
}

/* Chat Launcher Button */
.chatbot-launcher {
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    background: #00b14f;
    color: var(--white);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.chatbot-launcher:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.45);
}

.chatbot-launcher svg {
    width: 1.5rem;
    height: 1.5rem;
    transition: all 0.3s ease;
}

/* Pulse Dot */
.pulse-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background-color: #22c55e;
    border-radius: 50%;
    border: 2px solid var(--white);
    animation: launcher-pulse 1.8s infinite;
}

@keyframes launcher-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Chatbot Window */
.chatbot-window {
    position: absolute;
    bottom: 4.5rem;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 3rem);
    height: 520px;
    max-height: calc(100vh - 120px);
    background: var(--white);
    border-radius: 1.25rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--earth-100);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    z-index: 999;
}

.chatbot-window.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Header */
.chatbot-header {
    background: var(--earth-800);
    color: var(--white);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.chatbot-avatar-container {
    position: relative;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    background: var(--white);
}

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

.active-indicator {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 9px;
    height: 9px;
    background-color: #22c55e;
    border-radius: 50%;
    border: 1.5px solid var(--earth-800);
}

.chatbot-header-text {
    flex-grow: 1;
}

.chatbot-header-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    color: var(--white);
}

.chatbot-header-text p {
    font-size: 0.75rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.chatbot-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.chatbot-close:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

.chatbot-close svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Messages Area */
.chatbot-messages {
    flex: 1 1 0%;
    min-height: 0;
    padding: 1.25rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background-color: var(--sand-50);
    scroll-behavior: smooth;
}

.chat-message {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    max-width: 85%;
    animation: msg-fade-in 0.3s ease forwards;
}

@keyframes msg-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-message.bot {
    align-self: flex-start;
}

.chat-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.msg-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--earth-200);
    background: var(--white);
    flex-shrink: 0;
}

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

.msg-bubble {
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    line-height: 1.45;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.chat-message.bot .msg-bubble {
    background-color: var(--white);
    color: var(--gray-900);
    border-top-left-radius: 0.25rem;
    border: 1px solid var(--earth-100);
}

.chat-message.user .msg-bubble {
    background: #00b14f;
    color: var(--white);
    border-top-right-radius: 0.25rem;
}

/* Typing Indicator */
.typing-indicator-dots {
    display: flex;
    gap: 4px;
    padding: 0.25rem 0.5rem;
}

.typing-indicator-dots span {
    width: 6px;
    height: 6px;
    background-color: var(--gray-400);
    border-radius: 50%;
    animation: typing-dot-bounce 1.4s infinite ease-in-out;
}

.typing-indicator-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing-dot-bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Suggestions Container */
.chatbot-suggestions {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    overflow-x: auto;
    background-color: var(--white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    white-space: nowrap;
    scrollbar-width: none; /* Hide scrollbar Firefox */
    flex-shrink: 0;
}

.chatbot-suggestions::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.chip-btn {
    background-color: var(--sand-50);
    border: 1px solid var(--earth-100);
    color: var(--earth-800);
    padding: 0.45rem 0.9rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.chip-btn:hover {
    background-color: #00b14f;
    color: var(--white);
    border-color: #00b14f;
    transform: translateY(-1px);
}

/* Input Area */
.chatbot-input-area {
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    flex-shrink: 0;
}

.chatbot-input-area input {
    flex-grow: 1;
    border: 1px solid var(--gray-200);
    padding: 0.625rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    outline: none;
    transition: all 0.3s ease;
    background-color: var(--gray-50);
}

.chatbot-input-area input:focus {
    border-color: #00b14f;
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.chatbot-input-area button {
    background: #00b14f;
    color: var(--white);
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.chatbot-input-area button:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

.chatbot-input-area button svg {
    width: 1.1rem;
    height: 1.1rem;
    margin-right: 2px;
    margin-top: 1px;
}

/* Media Queries Chatbot Responsive Layout */
@media (max-width: 768px) {
    .chatbot-wrapper {
        bottom: 5.5rem;
        right: 1.5rem;
    }
    .chatbot-launcher {
        width: 3rem;
        height: 3rem;
    }
    .chatbot-window {
        bottom: 3.75rem;
        width: 330px;
        height: 440px;
        max-height: calc(80vh - 6rem);
    }
}

/* Safety adjustments for small viewport heights to prevent chatbot header/cross from cutting off at the top */
@media (max-height: 720px) {
    .chatbot-window {
        bottom: -4.5rem; /* Shifts window down to align with bottom safety zone, maximizing top clearance */
    }
    
    @media (max-width: 768px) {
        .chatbot-window {
            bottom: -3.5rem; /* Matches mobile wrapper height offset */
        }
    }
}

/* ============================================================
   Review System � Add Review Button, Modal, Star Rating
   ============================================================ */

/* --- CTA wrapper below testimonials --- */
.review-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(44, 94, 26, 0.15);
}

.add-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #2C5E1A 0%, #3a7a22 100%);
    color: #fff;
    border: none;
    padding: 0.9rem 2.2rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(44, 94, 26, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    letter-spacing: 0.02em;
}
.add-review-btn svg {
    width: 1.1rem;
    height: 1.1rem;
    stroke: #fff;
}
.add-review-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(44, 94, 26, 0.5);
    background: linear-gradient(135deg, #245116 0%, #2C5E1A 100%);
}
.add-review-btn:active { transform: translateY(0); }

.review-cta-note {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

/* --- Modal Overlay --- */
.review-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.review-modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* --- Modal Box --- */
.review-modal-box {
    background: #fff;
    border-radius: 1.5rem;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem 2rem 2rem;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    transform: translateY(30px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}
.review-modal-overlay.open .review-modal-box {
    transform: translateY(0) scale(1);
}

.review-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #374151;
    transition: background 0.2s ease, transform 0.2s ease;
}
.review-modal-close svg { width: 1rem; height: 1rem; }
.review-modal-close:hover { background: #e5e7eb; transform: rotate(90deg); }

.review-modal-header {
    text-align: center;
    margin-bottom: 1.75rem;
}
.review-modal-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #2C5E1A, #4a9a2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 20px rgba(44, 94, 26, 0.35);
}
.review-modal-icon svg { width: 1.5rem; height: 1.5rem; stroke: #fff; fill: rgba(255,255,255,0.3); }
.review-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.35rem;
}
.review-modal-header p { color: #6b7280; font-size: 0.95rem; }

/* --- Review Form inside Modal --- */
.review-form .form-group { margin-bottom: 1.25rem; }
.review-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.45rem;
}
.required { color: #dc2626; margin-left: 2px; }
.review-form input[type="text"],
.review-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #d1d5db;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    color: #111827;
    background: #f9fafb;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    font-family: inherit;
    resize: vertical;
}
.review-form input[type="text"]:focus,
.review-form textarea:focus {
    border-color: #2C5E1A;
    box-shadow: 0 0 0 3px rgba(44, 94, 26, 0.12);
    background: #fff;
}
.review-form textarea { min-height: 100px; }

/* --- Star Rating Input (RTL trick) --- */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.2rem;
}
.star-rating-input input[type="radio"] { display: none; }
.star-rating-input label {
    font-size: 2rem;
    color: #d1d5db;
    cursor: pointer;
    transition: color 0.15s ease, transform 0.15s ease;
    margin-bottom: 0;
    line-height: 1;
}
.star-rating-input label:hover, .star-rating-input label:hover ~ label { transform: scale(1.15); color: #f59e0b; }
.star-rating-input input[type="radio"]:checked ~ label {
    color: #f59e0b;
}

.review-form-error {
    color: #dc2626;
    font-size: 0.85rem;
    background: #fee2e2;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    margin-bottom: 1rem;
}

.review-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #2C5E1A 0%, #3a7a22 100%);
    color: #fff;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(44,94,26,0.3);
    letter-spacing: 0.03em;
}
.review-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44,94,26,0.45);
}
.review-submit-btn:active { transform: translateY(0); }

/* --- User Review Cards --- */
#user-reviews-grid .testimonial-card {
    position: relative;
}
#user-reviews-grid .testimonial-card::after {
    content: 'Verified';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: #2C5E1A;
    background: rgba(44,94,26,0.08);
    border: 1px solid rgba(44,94,26,0.2);
    border-radius: 999px;
    padding: 0.2rem 0.6rem;
    letter-spacing: 0.04em;
}

/* --- Show More Reviews Button --- */
.show-more-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #2C5E1A;
    border: 2px solid #2C5E1A;
    padding: 0.7rem 1.8rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.show-more-reviews-btn svg {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
    transition: transform 0.3s ease;
}
.show-more-reviews-btn:hover {
    background: rgba(44, 94, 26, 0.05);
    transform: translateY(-2px);
}
.show-more-reviews-btn:hover svg {
    transform: translateY(2px);
}

.testimonial-card.hidden-review {
    display: none !important;
}


/* ==========================================================================
   Navbar Search Bar & Autocomplete Suggestions Styles
   ========================================================================== */
.navbar-content {
    gap: 0.5rem;
}
.nav-search-bar {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    padding: 0.25rem 0.25rem 0.25rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    flex-grow: 1;
    max-width: 220px;
    position: relative;
}

.navbar.scrolled .nav-search-bar {
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.nav-search-bar:focus-within {
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
}

.search-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    margin-right: 0.5rem;
}

.search-pin-icon {
    width: 1rem;
    height: 1rem;
}

.search-input-group {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.search-label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gray-800);
    letter-spacing: 0.5px;
    line-height: 1;
    margin-bottom: 2px;
}

#nav-search-input {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 0.75rem;
    color: var(--gray-700);
    font-weight: 500;
    width: 100%;
}

#nav-search-input:focus {
    outline: none;
}

.nav-search-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: #2563eb;
    color: var(--white);
    border: none;
    border-radius: 20px;
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-search-btn:hover {
    background: #1d4ed8;
}

.btn-search-icon {
    width: 0.8rem;
    height: 0.8rem;
}

.search-suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: all 0.2s ease;
}

.search-suggestions-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.suggestion-item {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.suggestion-item:hover {
    background: var(--gray-50);
}

.suggestion-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-800);
}

@media (max-width: 1023px) {
    .nav-search-bar {
        display: none;
    }
}

/* Chatbot Welcome Callout Bubble & Notification Badge */
.chatbot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    z-index: 1001;
}

.chatbot-callout {
    position: absolute;
    bottom: 4.5rem;
    right: 0;
    width: 250px;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 1.25rem 1rem 1rem 1rem;
    z-index: 998;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.chatbot-callout-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-400);
    padding: 2px;
    border-radius: 50%;
}

.chatbot-callout-close:hover {
    background: var(--gray-100);
}

.chatbot-callout-content p {
    margin: 0 0 0.75rem 0;
    font-size: 0.9rem;
    color: var(--gray-800);
    font-weight: 600;
}

.chatbot-callout-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.callout-action-btn {
    background: var(--white);
    color: #00b14f;
    border: 1px solid #00b14f;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}

.callout-action-btn:hover {
    background: #00b14f;
    color: var(--white);
}

@media (max-width: 768px) {
    .chatbot-callout {
        bottom: 4rem;
        right: 0.5rem;
        width: 220px;
    }
}
.suggestion-item-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: var(--gray-500);
}

/* --- Hero Search Bar Styles --- */
.hero-flex-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    pointer-events: none;
}

.hero-content {
    pointer-events: auto;
}

.hero-search-bar-wrapper {
    pointer-events: auto;
    width: 100%;
    max-width: 600px;
    margin: 1.5rem auto 0;
    padding: 0 1rem;
    z-index: 20;
    position: relative;
}

.hero-search-bar {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    width: 100%;
}

.hero-search-bar:focus-within {
    box-shadow: 0 20px 40px rgba(0, 177, 79, 0.2), 0 5px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    border-color: rgba(0, 177, 79, 0.3);
}

.hero-search-bar .search-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-right: 0.75rem;
}

.hero-search-bar .search-pin-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.hero-search-bar .search-input-group {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.hero-search-bar .search-label {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--gray-500);
    letter-spacing: 0.5px;
    line-height: 1;
    margin-bottom: 3px;
}

.hero-search-bar #hero-search-input {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 0.95rem;
    color: var(--gray-800);
    font-weight: 600;
    width: 100%;
}

.hero-search-bar #hero-search-input:focus {
    outline: none;
}

.hero-search-bar .hero-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #00b14f;
    color: var(--white);
    border: none;
    border-radius: 40px;
    padding: 0.8rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 177, 79, 0.3);
}

.hero-search-bar .hero-search-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(0, 177, 79, 0.4);
    transform: scale(1.03);
}

.hero-search-bar .btn-search-icon {
    width: 1.1rem;
    height: 1.1rem;
}

/* Dropdown suggestions for hero */
.hero-search-bar .search-suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    max-height: 245px;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
}

.hero-search-bar .search-suggestions-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero-search-bar .suggestion-item {
    padding: 0.45rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.hero-search-bar .suggestion-item:hover {
    background: var(--gray-50);
}

.hero-search-bar .suggestion-item-icon {
    width: 0.95rem;
    height: 0.95rem;
    color: var(--primary);
}

.hero-search-bar .suggestion-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.2;
}

.hero-search-bar .suggestion-location {
    font-size: 0.725rem;
    color: var(--gray-500);
    line-height: 1.2;
}

/* Media query adjustments for smaller screens */
@media (max-width: 767px) {
    .hero-content {
        padding: 4.5rem 1.5rem 1rem;
    }
    .hero-search-bar-wrapper {
        margin-top: 0.75rem;
        max-width: 100%;
    }
    .hero-search-bar {
        padding: 0.4rem 0.4rem 0.4rem 1.1rem;
        border-radius: 35px;
    }
    .hero-search-bar .search-pin-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
    .hero-search-bar .search-label {
        font-size: 0.6rem;
        margin-bottom: 1px;
    }
    .hero-search-bar #hero-search-input {
        font-size: 0.85rem;
    }
    .hero-search-bar .hero-search-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
    .hero-search-bar .btn-search-icon {
        width: 0.9rem;
        height: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 3.5rem 1rem 0.75rem;
    }
    .hero-title {
        font-size: 1.35rem;
        margin-bottom: 0.5rem;
    }
    .hero-subtitle {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
    .hero-location {
        margin-bottom: 0.75rem;
    }
    .hero-cta {
        gap: 0.5rem;
    }
    .hero-cta-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    .hero-search-bar-wrapper {
        margin-top: 0.5rem;
    }
    .hero-search-bar {
        padding: 0.35rem 0.35rem 0.35rem 0.85rem;
    }
    .hero-search-bar .search-pin-icon {
        width: 1.1rem;
        height: 1.1rem;
        margin-right: 0.5rem;
    }
    .hero-search-bar .search-label {
        font-size: 0.55rem;
    }
    .hero-search-bar #hero-search-input {
        font-size: 0.8rem;
    }
    .hero-search-bar .hero-search-btn {
        padding: 0.55rem 1rem;
        font-size: 0.8rem;
    }
    .hero-search-bar .hero-search-btn span {
        display: none; /* Icon only on extremely small screens */
    }
}

/* --- Team Grid Styles --- */
.team-grid {
    justify-content: center;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, minmax(280px, 350px));
        justify-content: center;
        gap: 3.5rem;
    }
}

/* --- FAQ Accordion Section --- */
.faq-section {
    background: var(--earth-50);
    position: relative;
    overflow: hidden;
}
.faq-accordion {
    max-width: 48rem;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: rgba(74, 124, 54, 0.15); /* primary-light alpha */
}
.faq-item.active {
    border-color: var(--primary-light);
    box-shadow: 0 12px 30px rgba(74, 124, 54, 0.06);
}
.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--earth-700);
    cursor: pointer;
    transition: color 0.3s ease;
}
.faq-item:hover .faq-question {
    color: var(--primary);
}
.faq-question .faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--earth-50);
    color: var(--primary);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-item.active .faq-question .faq-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(135deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--earth-600);
}

/* Footer Legal Links */
.footer-legal-links {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--gray-400);
}
.footer-legal-links a {
    color: var(--gray-400);
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}
.footer-legal-links a:hover {
    color: var(--primary-light);
}