/* 
   WORLDENT EVENTS - Premium CSS Styles
   Inspired by blue/green gradients and high-end neutral tones.
*/

:root {
    /* Base Color Tokens */
    --color-bg-sand: #F9F8F6;       
    --color-bg-slate: #0F171A;        
    --color-bg-sage: #E5E9E8;      
    --color-bg-white: #ffffff;

    --color-text-dark: #121A1C;
    --color-text-light-gray: #5a5a5a;
    --color-text-white: #E0E5E5;
    
    /* Semantic Variables (Default to Sand) */
    --color-bg: var(--color-bg-sand);
    --color-surface: rgba(255, 255, 255, 0.7); /* Glassmorphism base */
    --color-text-main: var(--color-text-dark);
    --color-text-light: var(--color-text-light-gray);
    --color-border: rgba(18, 26, 28, 0.1);
    
    /* Brand Colors extracted conceptually from logo gradient */
    --color-brand-blue: #0a2540;  /* Deep Slate/Blue */
    --color-brand-green: #1a5e55; /* Elegant Green */
    --color-accent: #113b38;
    
    --gradient-brand: linear-gradient(135deg, var(--color-brand-blue), var(--color-brand-green));
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Spacing & Layout */
    --spacing-section: 120px;
    --spacing-element: 2rem;
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
    
    /* Transitions */
    --transition-smooth: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================
   Theme Utilities & Textures
   ========================================= */
.theme-dark {
    --color-bg: var(--color-bg-slate);
    --color-surface: rgba(15, 23, 26, 0.7);
    --color-text-main: var(--color-text-white);
    --color-text-light: rgba(224, 229, 229, 0.7);
    --color-border: rgba(255, 255, 255, 0.1);
    --color-brand-blue: #E0E5E5; /* Force headings to light */
    background-color: var(--color-bg);
    color: var(--color-text-main);
}

.theme-light {
    --color-bg: var(--color-bg-sand);
    --color-surface: rgba(255, 255, 255, 0.7);
    --color-text-main: var(--color-text-dark);
    --color-text-light: var(--color-text-light-gray);
    --color-border: rgba(18, 26, 28, 0.1);
    background-color: var(--color-bg);
    color: var(--color-text-main);
}

.theme-accent {
    --color-bg: var(--color-bg-sage);
    --color-surface: rgba(229, 233, 232, 0.7);
    --color-text-main: var(--color-text-dark);
    --color-text-light: var(--color-text-light-gray);
    --color-border: rgba(18, 26, 28, 0.1);
    background-color: var(--color-bg);
    color: var(--color-text-main);
}

.bg-texture {
    position: relative;
}

.bg-texture::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.04;
    pointer-events: none;
    mix-blend-mode: multiply;
}

.theme-dark.bg-texture::before,
.theme-dark .bg-texture::before {
    mix-blend-mode: overlay;
    opacity: 0.06;
}

/* Ensure content sits above texture */
.theme-dark > .container, .theme-light > .container, .theme-accent > .container,
.bg-texture > .container, .bg-texture > * {
    position: relative;
    z-index: 1;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-brand-blue);
}

p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--color-text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

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

.section {
    padding: var(--spacing-section) 0;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-brand-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    margin-bottom: var(--spacing-element);
}

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

.text-white {
    color: #fff;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 5px; /* 20% more rounded than 4px */
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 2px solid transparent;
}

.btn-primary {
    background: transparent;
    color: var(--color-brand-green);
    border-color: var(--color-brand-green);
    box-shadow: none;
}

.btn-primary:hover {
    background: var(--color-brand-green);
    color: #fff;
    box-shadow: 0 8px 25px rgba(26, 94, 85, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-brand-blue);
    border-color: var(--color-brand-blue);
}

.btn-outline:hover {
    background: var(--color-brand-blue);
    color: #fff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-fast);
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}

/* For pages with white background at the top */
.navbar.navbar-dark-text:not(.scrolled) {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(10,37,64,0.05);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 58px;
    width: auto;
    border-radius: 4px; /* Slightly round the logo if it's square */
    transition: var(--transition-fast);
}

.navbar.scrolled .logo img {
    height: 46px;
}

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

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    position: relative;
}

.navbar.scrolled .nav-links a,
.navbar.navbar-dark-text .nav-links a {
    color: var(--color-text-main);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: currentColor;
    transition: var(--transition-fast);
}

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

.navbar:not(.scrolled):not(.navbar-dark-text) .nav-cta {
    color: #fff;
    border-color: #fff;
}

.navbar:not(.scrolled):not(.navbar-dark-text) .nav-cta:hover {
    background: #fff;
    color: var(--color-brand-blue);
}

.nav-cta {
    padding: 0.6rem 1.2rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin: 5px 0;
    transition: var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.navbar.scrolled .mobile-menu-btn span,
.navbar.navbar-dark-text .mobile-menu-btn span {
    background-color: var(--color-text-main);
}

.navbar.scrolled .mobile-menu-btn.active span,
.navbar.navbar-dark-text .mobile-menu-btn.active span {
    background-color: #fff !important;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* Extra height for parallax */
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 37, 64, 0.4), rgba(10, 37, 64, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 5%;
}

.hero-subheading {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
}

.hero-heading {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-cta .btn-primary {
    color: #fff;
    border-color: #fff;
}

.hero-cta .btn-primary:hover {
    background: #fff;
    color: var(--color-brand-blue);
}

/* =========================================
   Who We Are (About)
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.about-visuals {
    position: relative;
    height: 600px;
}

.img-wrapper {
    position: absolute;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
}

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

.img-1 {
    width: 65%;
    height: 70%;
    top: 0;
    right: 0;
    z-index: 2;
}

.img-2 {
    width: 55%;
    height: 60%;
    bottom: 0;
    left: 0;
    z-index: 3;
    border: 10px solid var(--color-bg);
}

.decorative-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--gradient-brand);
    opacity: 0.1;
    top: -30px;
    right: -30px;
    z-index: 1;
}

/* =========================================
   What We Offer
   ========================================= */
.offerings-section {
    background-color: var(--color-surface);
}

.offerings-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.offering-card {
    position: relative;
    height: 450px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.offering-card .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.offering-card .card-bg img {
    width: 100%;
    height: 100%;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.offering-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(10,37,64,0.9) 0%, rgba(10,37,64,0) 100%);
    z-index: 1;
    transition: height 0.5s ease;
}

.offering-card:hover .card-bg img {
    transform: scale(1.1);
}

.offering-card:hover::after {
    height: 100%;
    background: linear-gradient(to top, rgba(10,37,64,0.85) 0%, rgba(10,37,64,0.4) 100%);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    z-index: 2;
    color: #fff;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.card-content h3 {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    opacity: 0;
    transition: var(--transition-smooth);
    margin-bottom: 0;
}

.offering-card:hover .card-content {
    transform: translateY(0);
}

.offering-card:hover .card-content p {
    opacity: 1;
}

/* =========================================
   Why Worldent (Metrics)
   ========================================= */
.metrics-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

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

.metrics-container {
    position: relative;
    z-index: 2;
}

.metrics-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.metric-item {
    text-align: center;
    color: #fff;
}

.metric-number {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 4rem;
    color: var(--color-brand-green);
    margin-bottom: 0.5rem;
}

.metric-title {
    font-size: 1.25rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: #fff;
}

.metric-desc {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

/* =========================================
   Reviews
   ========================================= */
.reviews-section {
    background-color: var(--color-surface);
}

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reviews-grid {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 2rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.reviews-grid::-webkit-scrollbar {
    display: none;
}

.review-card {
    background: var(--color-bg);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border);
    flex: 0 0 400px;
    height: 400px;
    scroll-snap-align: center;
}

.review-content {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 15px;
    margin-bottom: 2rem;
    /* Custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--color-border) transparent;
}
.review-content::-webkit-scrollbar {
    width: 6px;
}
.review-content::-webkit-scrollbar-track {
    background: transparent;
}
.review-content::-webkit-scrollbar-thumb {
    background-color: var(--color-border);
    border-radius: 10px;
}

.review-text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--color-text-main);
    line-height: 1.8;
}

.review-author {
    display: flex;
    align-items: center;
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-brand-blue);
    margin-bottom: 0.25rem;
}

.author-trip {
    font-size: 0.875rem;
    color: var(--color-brand-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: #0a2540;
    color: #fff;
    padding: 6rem 0 2rem 0;
}

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

.footer-logo {
    height: 69px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    max-width: 350px;
}

.footer h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a, .contact-link, .social-link {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
}

.footer-links a:hover, .contact-link:hover, .social-link:hover {
    color: var(--color-brand-green);
}

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

.footer-contact p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
}

.footer-cta p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}

.footer-cta .btn-primary {
    color: #fff;
    border-color: #fff;
}

.footer-cta .btn-primary:hover {
    background: #fff;
    color: var(--color-brand-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

/* =========================================
   Animations & Reveals (Initial State)
   ========================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(60px) scale(0.98);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}



/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
    
    .about-grid {
        gap: 2rem;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Global Section Spacing */
    :root {
        --spacing-section: 60px;
        --spacing-element: 1.5rem;
    }

    /* Typography Scaling */
    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    .hero-heading {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    h1, h2, h3, h4, h5, h6 {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

    /* Mobile Navigation Drawer */
    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--color-brand-blue);
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateY(-100%);
        transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 1000;
        padding: 2rem;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .nav-links a {
        font-size: 1.5rem;
        padding: 10px;
    }

    .navbar.scrolled .nav-links a,
    .navbar.navbar-dark-text .nav-links a {
        color: #fff;
    }
    
    .nav-cta {
        display: block !important;
        width: 100%;
        max-width: 300px;
        text-align: center;
        margin-top: 1rem;
        padding: 1.2rem !important;
        font-size: 1.1rem;
        color: #fff !important;
        border-color: #fff !important;
    }
    
    .nav-cta:hover {
        background: #fff !important;
        color: var(--color-brand-blue) !important;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Layout Un-Squishing */
    .about-grid, .offerings-grid, .metrics-grid, .footer-grid, 
    .experiences-grid, .who-grid, .about-genesis {
        grid-template-columns: 1fr !important;
    }
    
    .destination-section, .inquiry-split {
        flex-direction: column !important;
    }
    
    .about-text {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .about-visuals {
        height: 400px;
    }
    
    .footer-grid {
        gap: 2.5rem;
    }
    
    /* Touch Targets */
    .btn {
        min-height: 44px;
        padding: 0.8rem 1.5rem;
    }
}

/* =========================================
   Inquiry Page
   ========================================= */
.inquiry-main {
    min-height: 100vh;
    padding-top: 80px; /* Space for navbar */
    background-color: var(--color-surface);
}

.inquiry-split {
    display: flex;
    min-height: calc(100vh - 80px);
}

.inquiry-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.inquiry-image img {
    width: 100%;
    height: 100%;
    object-position: center;
}

.inquiry-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 4rem;
    background: linear-gradient(to top, rgba(10,37,64,0.95) 0%, rgba(10,37,64,0) 100%);
    color: #fff;
}

.inquiry-image-overlay h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.inquiry-image-overlay p {
    color: rgba(255,255,255,0.8);
}

.inquiry-form-container {
    flex: 1;
    padding: 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.inquiry-form-container .form-header p {
    margin-bottom: 3rem;
    max-width: 500px;
}

.inquiry-form {
    max-width: 600px;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 2rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    position: relative;
    margin-bottom: 2.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 0;
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--color-text-main);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-border);
    outline: none;
    transition: var(--transition-fast);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group label {
    position: absolute;
    top: 0.75rem;
    left: 0;
    font-size: 1.125rem;
    color: var(--color-text-light);
    pointer-events: none;
    transition: var(--transition-fast);
}

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

/* Floating label logic */
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group input[type="date"] ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -1.25rem;
    font-size: 0.875rem;
    color: var(--color-brand-green);
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    .inquiry-split {
        flex-direction: column;
    }
    .inquiry-image {
        min-height: 400px;
    }
    .inquiry-form-container {
        padding: 4rem 5%;
    }
}

/* =========================================
   Experiences Hub & Destinations
   ========================================= */
.exp-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
}
.exp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.exp-card-img {
    position: relative;
    height: 250px;
}
.exp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.exp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,37,64,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}
.exp-card-overlay h3 {
    color: #fff;
    font-size: 1.5rem;
    font-family: var(--font-heading);
}
.exp-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.exp-card-content p {
    color: var(--color-text-main);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.exp-links {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}
.exp-link {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    border: 1px solid var(--color-brand-blue);
    color: var(--color-brand-blue);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 600;
}
.exp-link:hover {
    background: var(--color-brand-blue);
    color: #fff;
}

.who-card {
    position: relative;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    display: block;
}
.who-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.who-card:hover img {
    transform: scale(1.05);
}
.who-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,37,64,0.9) 0%, rgba(10,37,64,0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    color: #fff;
}
.who-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
}
.who-overlay span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}
.who-card:hover .who-overlay span {
    opacity: 1;
    transform: translateY(0);
}

.destination-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    margin-bottom: 8rem;
}
.destination-section:nth-child(even) {
    flex-direction: row-reverse;
}
.dest-info {
    flex: 1;
    min-width: 300px;
}
.dest-title {
    font-size: 2.5rem;
    color: var(--color-brand-blue);
    margin-bottom: 1.5rem;
}
.dest-copy {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-main);
    margin-bottom: 2rem;
}
.dest-carousel-wrapper {
    flex: 1.5;
    min-width: 300px;
    position: relative;
}
.dest-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
}
.dest-carousel::-webkit-scrollbar {
    display: none; /* Safari/Chrome */
}
.carousel-track {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 1rem;
}
.carousel-slide {
    position: relative;
    flex: 0 0 calc(100% - 3rem);
    height: 450px;
    scroll-snap-align: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
@media (min-width: 768px) {
    .carousel-slide {
        flex: 0 0 400px;
    }
}
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255,255,255,0.95);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    color: var(--color-brand-blue);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-brand-blue);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 10;
    transition: all 0.3s ease;
}
.carousel-btn:hover {
    background: var(--color-brand-blue);
    color: #fff;
}
.prev-btn {
    left: -25px;
}
.next-btn {
    right: -25px;
}

@media (max-width: 1024px) {
    .destination-section, .destination-section:nth-child(even) {
        flex-direction: column;
    }
    .dest-carousel-wrapper {
        width: 100%;
    }
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
}

/* ==========================================================================
   Itinerary Page Styles
   ========================================================================== */

.itinerary-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.itinerary-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}
.itinerary-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}
.itinerary-hero .back-link {
    display: inline-block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
.itinerary-hero .back-link:hover {
    color: #fff;
}

/* Timeline Layout */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}
.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: var(--color-border);
    transform: translateX(-50%);
}

.day-card {
    position: relative;
    width: 50%;
    padding: 2rem 3rem;
    box-sizing: border-box;
}
.day-left {
    left: 0;
    text-align: right;
}
.day-right {
    left: 50%;
    text-align: left;
}

.day-marker {
    position: absolute;
    top: 3rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.day-left .day-marker {
    right: -15px;
}
.day-right .day-marker {
    left: -15px;
}
.day-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-brand-blue);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px var(--color-surface);
}

.day-content {
    background: #fff;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.day-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}
.day-number {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-brand-blue);
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--color-brand-blue);
    padding-bottom: 0.3rem;
}
.day-title {
    font-size: 1.8rem;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
}
.day-details {
    margin-bottom: 1.5rem;
}
.day-details p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}
.day-details strong {
    color: var(--color-text-main);
}
.day-choices-wrapper {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--color-border);
}
.day-choices-wrapper strong {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-brand-blue);
    margin-bottom: 1rem;
}
.day-choices {
    list-style: none;
    padding: 0;
    margin: 0;
}
.day-choices li {
    font-size: 0.95rem;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
    position: relative;
}
.day-left .day-choices li {
    padding-right: 1.5rem;
}
.day-right .day-choices li {
    padding-left: 1.5rem;
}
.day-left .day-choices li::after {
    content: '✦';
    position: absolute;
    right: 0;
    top: 2px;
    font-size: 0.8rem;
    color: var(--color-brand-blue);
    opacity: 0.5;
}
.day-right .day-choices li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.8rem;
    color: var(--color-brand-blue);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .timeline-container::before {
        left: 20px;
    }
    .day-card {
        width: 100%;
        padding: 1rem 0 1rem 3rem;
    }
    .day-left, .day-right {
        left: 0;
        text-align: left;
    }
    .day-left .day-marker, .day-right .day-marker {
        left: 5px;
        right: auto;
    }
    .day-left .day-choices li {
        padding-right: 0;
        padding-left: 1.5rem;
    }
    .day-left .day-choices li::after {
        display: none;
    }
    .day-left .day-choices li::before {
        content: '✦';
        position: absolute;
        left: 0;
        top: 2px;
        font-size: 0.8rem;
        color: var(--color-brand-blue);
        opacity: 0.5;
    }
    .itinerary-hero-content h1 {
        font-size: 3rem !important;
    }
}

/* =========================================
   About Us - Editorial Styling
   ========================================= */

.about-section {
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
}

/* Act I: The Reflection */
.about-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding-top: 150px;
}

.editorial-pullquote {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    color: var(--color-text-main);
}

.editorial-pullquote p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.reflection-subpoints {
    list-style-type: none;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
    border-left: 2px solid rgba(255,255,255,0.2);
}

.reflection-subpoints li {
    margin-bottom: 0.8rem;
    opacity: 0.8;
    position: relative;
}

.reflection-subpoints li::before {
    content: '—';
    position: absolute;
    left: -1.5rem;
}

.reflection-conclusion {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    margin-top: 3rem !important;
    color: #ffffff;
}

/* Act II: The Genesis */
.about-genesis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-portrait-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.08);
    transition: var(--transition-smooth);
}

.founder-portrait-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 25px 25px 80px rgba(0,0,0,0.12);
}

.founder-portrait-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    pointer-events: none;
}

.founder-portrait-container img {
    width: 100%;
    height: auto;
    display: block;
    filter: contrast(1.05) saturate(1.1);
}

.genesis-content .body-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.genesis-quote {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-brand-blue);
    border-left: 2px solid var(--color-brand-green);
    padding-left: 2rem;
    margin: 3rem 0;
    line-height: 1.4;
    font-style: italic;
}

/* Act III: The Philosophy */
.about-philosophy {
    text-align: center;
    padding: 150px 5%;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-list {
    list-style: none;
    padding: 0;
    margin: 4rem 0;
    text-align: left;
}

.philosophy-list li {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    padding-left: 3rem;
    position: relative;
    color: var(--color-text-main);
}

.philosophy-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--color-brand-green);
    font-size: 1.2rem;
}

/* Act IV: The Process */
.about-process {
    max-width: 1000px;
    margin: 0 auto;
}

.process-qna {
    margin: 4rem 0;
    display: grid;
    gap: 1.5rem;
}

.process-qna .q-box {
    background: var(--color-surface);
    padding: 2rem 3rem;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--color-brand-blue);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.process-big-quote {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    color: var(--color-brand-blue);
    margin: 5rem 0;
    line-height: 1.3;
}

/* Act V: The Legacy */
.about-legacy {
    text-align: center;
    padding-bottom: 150px;
}

.legacy-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 4rem auto;
    text-align: left;
}

.legacy-list li {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
}

.legacy-promise {
    margin-top: 6rem;
}

.legacy-promise p {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* Responsive Overrides */
@media (max-width: 900px) {
    .about-genesis {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .founder-portrait-container {
        order: -1;
    }
    
    .editorial-pullquote strong {
        margin-top: 2rem;
    }
    
    .philosophy-list li {
        font-size: 1.2rem;
        padding-left: 2rem;
    }
    
    .process-qna .q-box {
        padding: 1.5rem;
    }
}

/* =========================================
   Global WhatsApp Floating Widget
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 65px;
    height: 65px;
    background-color: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.whatsapp-float img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}


/* =========================================
   Legal Links
   ========================================= */
.legal-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: var(--transition-fast);
}

.legal-links a:hover {
    color: var(--color-brand-green);
}
