/* === VARIABLES & BASE === */
:root {
    --c-primary: #3E5F46;
    --c-primary-light: #5B8266;
    --c-dark: #1A1D1A;
    --c-light: #F7F9F7;
    --c-sand: #EFECE5;
    --c-white: #FFFFFF;
    --c-gray: #6B7280;

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

    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.08);
    --shadow-glow: 0 15px 30px -10px rgba(62, 95, 70, 0.4);
}

* { margin:0; padding:0; box-sizing:border-box; -webkit-font-smoothing:antialiased; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:var(--font-body); color:var(--c-dark); background-color:var(--c-light); line-height:1.6; overflow-x:hidden; }
img { display:block; max-width:100%; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }

/* === LAYOUT === */
.container { width:100%; max-width:1200px; margin:0 auto; padding:0 2rem; }

/* === COLORS === */
.text-primary { color:var(--c-primary); }
.text-dark { color:var(--c-dark); }
.text-white { color:var(--c-white); }
.text-gray { color:var(--c-gray); }

.bg-primary { background-color:var(--c-primary); }
.bg-dark { background-color:var(--c-dark); }
.bg-light { background-color:var(--c-light); }
.bg-white { background-color:var(--c-white); }
.bg-sand { background-color:var(--c-sand); }

/* Alpha backgrounds */
.bg-white\/5 { background-color: rgba(255,255,255,0.05); }
.bg-white\/10 { background-color: rgba(255,255,255,0.1); }
.bg-white\/50 { background-color: rgba(255,255,255,0.5); }
.bg-white\/60 { background-color: rgba(255,255,255,0.6); }
.bg-white\/80 { background-color: rgba(255,255,255,0.8); }
.bg-white\/90 { background-color: rgba(255,255,255,0.9); }
.bg-primary\/5 { background-color: rgba(62,95,70,0.05); }
.bg-primary\/10 { background-color: rgba(62,95,70,0.1); }
.bg-primary\/20 { background-color: rgba(62,95,70,0.2); }

/* Alpha text */
.text-white\/50 { color: rgba(255,255,255,0.5); }
.text-white\/70 { color: rgba(255,255,255,0.7); }
.text-white\/80 { color: rgba(255,255,255,0.8); }
.text-gray\/40 { color: rgba(107,114,128,0.4); }
.text-gray\/60 { color: rgba(107,114,128,0.6); }

/* Alpha borders */
.border-gray\/10 { border-color: rgba(107,114,128,0.1); }
.border-gray\/20 { border-color: rgba(107,114,128,0.2); }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-white\/20 { border-color: rgba(255,255,255,0.2); }
.border-white\/50 { border-color: rgba(255,255,255,0.5); }
.border-primary\/10 { border-color: rgba(62,95,70,0.1); }
.border-primary\/20 { border-color: rgba(62,95,70,0.2); }
.border-primary\/30 { border-color: rgba(62,95,70,0.3); }

/* === TYPOGRAPHY === */
.font-playfair { font-family:var(--font-heading); }
.font-light { font-weight:300; }
.font-medium { font-weight:500; }
.font-semibold { font-weight:600; }
.font-bold { font-weight:700; }
.italic { font-style:italic; }

.text-xs { font-size:0.75rem; }
.text-sm { font-size:0.875rem; }
.text-base { font-size:1rem; }
.text-lg { font-size:1.125rem; }
.text-xl { font-size:1.25rem; }
.text-2xl { font-size:1.5rem; }
.text-3xl { font-size:1.875rem; }
.text-4xl { font-size:2.25rem; }
.text-5xl { font-size:3rem; }
.text-6xl { font-size:3.75rem; }
.text-7xl { font-size:4.5rem; }
.text-8xl { font-size:6rem; }

.text-center { text-align:center; }
.text-left { text-align: left; }
.uppercase { text-transform:uppercase; }
.text-uppercase { text-transform:uppercase; }

.tracking-tight { letter-spacing:-0.025em; }
.tracking-wide { letter-spacing:0.025em; }
.tracking-wider { letter-spacing:0.05em; }
.tracking-widest { letter-spacing:0.1em; }

.leading-none { line-height:1; }
.leading-snug { line-height:1.375; }
.leading-tight { line-height:1.2; }
.leading-relaxed { line-height:1.8; }
.leading-loose { line-height:2; }

.underline { text-decoration:underline; }
.decoration-primary { text-decoration-color: var(--c-primary); }
.decoration-2 { text-decoration-thickness: 2px; }
.underline-offset-4 { text-underline-offset: 4px; }
.drop-shadow-md { filter: drop-shadow(0 4px 3px rgba(0,0,0,0.07)) drop-shadow(0 2px 2px rgba(0,0,0,0.06)); }

/* === SPACING === */
.p-2 { padding:0.5rem; }
.p-4 { padding:1rem; }
.p-6 { padding:1.5rem; }
.p-8 { padding:2rem; }
.p-10 { padding:2.5rem; }
.p-16 { padding:4rem; }
.px-4 { padding-left:1rem; padding-right:1rem; }
.px-6 { padding-left:1.5rem; padding-right:1.5rem; }
.px-8 { padding-left:2rem; padding-right:2rem; }
.px-10 { padding-left:2.5rem; padding-right:2.5rem; }
.py-4 { padding-top:1rem; padding-bottom:1rem; }
.py-5 { padding-top:1.25rem; padding-bottom:1.25rem; }
.py-12 { padding-top:3rem; padding-bottom:3rem; }
.py-16 { padding-top:4rem; padding-bottom:4rem; }
.py-24 { padding-top:6rem; padding-bottom:6rem; }
.py-32 { padding-top:8rem; padding-bottom:8rem; }
.pt-6 { padding-top:1.5rem; }
.pt-10 { padding-top:2.5rem; }
.pt-32 { padding-top:8rem; }
.pb-4 { padding-bottom:1rem; }
.pb-6 { padding-bottom:1.5rem; }
.pb-8 { padding-bottom:2rem; }
.pb-24 { padding-bottom:6rem; }

.mt-2 { margin-top:0.5rem; }
.mt-4 { margin-top:1rem; }
.mt-6 { margin-top:1.5rem; }
.mt-8 { margin-top:2rem; }
.mt-10 { margin-top:2.5rem; }
.mt-12 { margin-top:3rem; }
.mt-14 { margin-top:3.5rem; }
.mt-16 { margin-top:4rem; }
.p-12 { padding:3rem; }
.mb-2 { margin-bottom:0.5rem; }
.mb-3 { margin-bottom:0.75rem; }
.mb-4 { margin-bottom:1rem; }
.mb-6 { margin-bottom:1.5rem; }
.mb-8 { margin-bottom:2rem; }
.mb-10 { margin-bottom:2.5rem; }
.mb-12 { margin-bottom:3rem; }
.mb-16 { margin-bottom:4rem; }
.mb-20 { margin-bottom:5rem; }
.mb-24 { margin-bottom:6rem; }
.mx-auto { margin-left:auto; margin-right:auto; }
.mx-3 { margin-left:0.75rem; margin-right:0.75rem; }
.m-2 { margin:0.5rem; }

/* Negative margins */
.\-mt-4 { margin-top:-1rem; }
.\-left-6 { left:-1.5rem; }
.\-left-12 { left:-3rem; }
.\-bottom-6 { bottom:-1.5rem; }
.\-top-12 { top:-3rem; }

/* === SIZING === */
.w-3 { width:0.75rem; }
.w-6 { width:1.5rem; }
.w-8 { width:2rem; }
.w-10 { width:2.5rem; }
.w-12 { width:3rem; }
.w-14 { width:3.5rem; }
.w-16 { width:4rem; }
.w-20 { width:5rem; }
.w-24 { width:6rem; }
.w-32 { width:8rem; }
.w-48 { width:12rem; }
.w-64 { width:16rem; }
.w-full { width:100%; }
.w-max { width:max-content; }
.w-1\/3 { width:33.333%; }
.w-\[320px\] { width:320px; }

.h-1 { height:0.25rem; }
.h-3 { height:0.75rem; }
.h-6 { height:1.5rem; }
.h-8 { height:2rem; }
.h-10 { height:2.5rem; }
.h-12 { height:3rem; }
.h-16 { height:4rem; }
.h-20 { height:5rem; }
.h-48 { height:12rem; }
.h-64 { height:16rem; }
.h-80 { height:20rem; }
.h-full { height:100%; }
.h-\[300px\] { height:300px; }
.h-\[350px\] { height:350px; }
.h-\[380px\] { height:380px; }
.h-\[400px\] { height:400px; }
.h-\[420px\] { height:420px; }
.h-\[450px\] { height:450px; }
.h-\[500px\] { height:500px; }
.h-\[600px\] { height:600px; }

.min-h-\[600px\] { min-height: 600px; }

.max-w-full { max-width:100%; }
.max-w-sm { max-width:24rem; }
.max-w-md { max-width:28rem; }
.max-w-lg { max-width:32rem; }
.max-w-2xl { max-width:42rem; }
.max-w-3xl { max-width:48rem; }
.max-w-4xl { max-width:56rem; }
.max-w-5xl { max-width:64rem; }
.max-w-6xl { max-width:72rem; }
.max-w-\[90vw\] { max-width:90vw; }

/* === FLEX === */
.flex { display:flex; }
.inline-flex { display:inline-flex; }
.flex-col { flex-direction:column; }
.flex-none { flex:none; }
.flex-wrap { flex-wrap:wrap; }
.center { align-items:center; justify-content:center; }
.align-center { align-items:center; }
.align-start { align-items:flex-start; }
.items-center { align-items:center; }
.items-end { align-items:flex-end; }
.items-start { align-items:flex-start; }
.justify-between { justify-content:space-between; }
.justify-center { justify-content:center; }

/* === GRID === */
.grid { display:grid; }
.grid-cols-2 { grid-template-columns:repeat(2,1fr); }
.grid-rows-2 { grid-template-rows:repeat(2,1fr); }
.col-span-12 { grid-column:span 12; }
.gap-2 { gap:0.5rem; }
.gap-3 { gap:0.75rem; }
.gap-4 { gap:1rem; }
.gap-6 { gap:1.5rem; }
.gap-8 { gap:2rem; }
.gap-10 { gap:2.5rem; }
.gap-12 { gap:3rem; }
.gap-16 { gap:4rem; }
.gap-20 { gap:5rem; }

/* === SPACING UTILITIES === */
.space-y-4 > * + * { margin-top:1rem; }
.space-y-8 > * + * { margin-top:2rem; }
.space-y-10 > * + * { margin-top:2.5rem; }

/* === BORDERS === */
.border { border:1px solid rgba(0,0,0,0.1); }
.border-t { border-top:1px solid rgba(0,0,0,0.1); }
.border-b { border-bottom:1px solid rgba(0,0,0,0.1); }
.border-l { border-left:1px solid rgba(0,0,0,0.1); }
.border-2 { border-width:2px; border-style:solid; }
.border-4 { border-width:4px; border-style:solid; }
.border-primary { border-color:var(--c-primary); }
.border-white { border-color:var(--c-white); }

/* === RADIUS === */
.rounded-xl { border-radius:1rem; }
.rounded-2xl { border-radius:1.5rem; }
.rounded-3xl { border-radius:2rem; }
.rounded-full { border-radius:9999px; }
.rounded-\[2rem\] { border-radius:2rem; }
.rounded-\[2\.5rem\] { border-radius:2.5rem; }
.rounded-\[3rem\] { border-radius:3rem; }

/* === POSITIONING === */
.relative { position:relative; }
.absolute { position:absolute; }
.fixed { position:fixed; }
.inset-0 { top:0; right:0; bottom:0; left:0; }
.inset-2 { top:0.5rem; right:0.5rem; bottom:0.5rem; left:0.5rem; }
.inset-y-0 { top:0; bottom:0; }
.top-0 { top:0; }
.right-0 { right:0; }
.bottom-0 { bottom:0; }
.left-0 { left:0; }
.bottom-4 { bottom:1rem; }
.bottom-6 { bottom:1.5rem; }
.bottom-8 { bottom:2rem; }
.left-4 { left:1rem; }
.left-6 { left:1.5rem; }
.left-8 { left:2rem; }
.right-8 { right:2rem; }
.z-10 { z-index:10; }

/* === OVERFLOW === */
.overflow-hidden { overflow:hidden; }

/* === EFFECTS === */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.shadow-soft { box-shadow:var(--shadow-soft); }
.shadow-glow { box-shadow:var(--shadow-glow); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }

.opacity-10 { opacity:0.1; }
.opacity-20 { opacity:0.2; }
.opacity-50 { opacity:0.5; }
.opacity-70 { opacity:0.7; }
.opacity-80 { opacity:0.8; }
.opacity-90 { opacity:0.9; }

.object-cover { object-fit:cover; }
.pointer-events-none { pointer-events:none; }
.cursor-pointer { cursor:pointer; }

/* Backdrop */
.backdrop-blur-sm { backdrop-filter:blur(4px); -webkit-backdrop-filter:blur(4px); }
.backdrop-blur-md { backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); }
.backdrop-blur-lg { backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px); }

/* Transforms */
.transform { transform:translateZ(0); /* enable GPU layer */ }
.rotate-6 { transform:rotate(6deg); }
.\-rotate-3 { transform:rotate(-3deg); }
.\-rotate-6 { transform:rotate(-6deg); }
.scale-125 { transform:scale(1.25); }

/* Transitions */
.transition { transition:all 0.3s ease; }
.transition-transform { transition:transform 0.5s ease; }
.dur-300 { transition-duration:0.3s; }
.dur-500 { transition-duration:0.5s; }
.dur-700 { transition-duration:0.7s; }
.ease-out { transition-timing-function:ease-out; }

/* Gradients */
.bg-gradient-to-t { background:linear-gradient(to top, var(--grad-from, transparent), var(--grad-to, transparent)); }
.bg-gradient-to-r { background:linear-gradient(to right, var(--grad-from, transparent), var(--grad-to, transparent)); }
.bg-gradient-to-l { background:linear-gradient(to left, var(--grad-from, transparent), var(--grad-to, transparent)); }

.from-dark\/80 { --grad-from: rgba(26,29,26,0.8); }
.from-dark { --grad-from: var(--c-dark); }
.to-transparent { --grad-to: transparent; }
.via-transparent { --grad-via:transparent; }

/* Hidden */
.hidden { display:none !important; }
.block { display:block; }

/* SVG icon sizing */
.icon-svg { width:28px; height:28px; stroke:var(--c-primary); fill:none; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }

/* === GLASSMORPHISM === */
.glass {
    background:rgba(255,255,255,0.7);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border:1px solid rgba(255,255,255,0.4);
}
.glass-dark {
    background:rgba(26,29,26,0.4);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.1);
    color:white;
}

/* === BUTTONS === */
.btn {
    display:inline-flex; align-items:center; justify-content:center;
    padding:1rem 2rem; border-radius:3rem;
    font-family:var(--font-body); font-weight:500; font-size:0.95rem;
    transition:all 0.3s ease; cursor:pointer; border:none;
    text-decoration:none; background:transparent;
}
.btn-primary { background-color:var(--c-primary); color:var(--c-white); }
.btn-primary:hover { background-color:var(--c-primary-light); transform:translateY(-2px); box-shadow:var(--shadow-glow); }
.btn-outline { border:1px solid var(--c-primary); color:var(--c-primary); }
.btn-outline:hover { background-color:var(--c-primary); color:var(--c-white); }
.btn-white { background-color:var(--c-white); color:var(--c-primary); }
.btn-large { padding:1.25rem 3rem; font-size:1.125rem; }
.w-full { width:100%; }

/* === HEADER === */
.header {
    position:fixed; top:0; left:0; width:100%;
    z-index:100; padding:1.5rem 0;
    transition:all 0.4s ease;
    box-sizing: border-box;
}
.header.scrolled {
    background:rgba(255,255,255,0.9);
    backdrop-filter:blur(20px);
    border-bottom:1px solid rgba(0,0,0,0.05);
    padding:1rem 0;
}
.header .logo { 
    color:var(--c-white); 
    transition:all 0.4s ease; 
    font-size:1.1rem; 
    text-decoration:none !important;
    border: none !important;
}
.header .logo span { text-decoration: none !important; }
.header .logo:hover { opacity:0.9; text-decoration: none !important; }
.header .logo .logo-icon { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.header .logo:hover .logo-icon { transform: scale(1.1) rotate(5deg); }
.header.scrolled .logo { color:var(--c-dark); }
.header .nav-link { color:var(--c-white); text-decoration:none; margin:0 1rem; font-size:0.9rem; transition:opacity 0.3s; opacity:0.8; }
.header.scrolled .nav-link { color:var(--c-dark); }
.header .nav-link:hover { opacity:1; text-decoration:underline; text-underline-offset:4px; }
.header .btn-outline { border-color:rgba(255,255,255,0.5); color:var(--c-white); }
.header.scrolled .btn-outline { border-color:var(--c-primary); color:var(--c-primary); }
.header-inner { display:flex; justify-content:space-between; align-items:center; }

#mobileMenuBtn {
    background:none; border:none; font-size:1.5rem; cursor:pointer;
    color: var(--c-white); transition: color 0.3s;
}
.header.scrolled #mobileMenuBtn { color: var(--c-dark); }

/* Mobile Nav */
.mobile-nav {
    position:fixed; top:0; left:0; right:0;
    padding-top:80px; padding-bottom: 1rem;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(20px);
    z-index:90;
    transform:translateY(-100%);
    transition:transform 0.4s cubic-bezier(0.16,1,0.3,1);
    box-shadow:var(--shadow-soft);
}
.mobile-nav.active { transform:translateY(0); }
.mobile-nav a { color:var(--c-dark); font-weight:500; text-decoration:none; display:block; padding:1rem; text-align:center; border-bottom:1px solid rgba(0,0,0,0.05); }
.mobile-nav a:last-child { border-bottom:none; }

/* === HERO === */
.hero {
    height:100vh; min-height:600px;
    position:relative; display:flex;
    align-items:center; justify-content:center;
    overflow:hidden;
}
.hero-bg {
    position:absolute; top:0; left:0; width:100%; height:100%;
    object-fit:cover; z-index:1;
    background-size:cover; background-position:center;
}
.video-bg { object-fit:cover; }
.hero-overlay {
    position:absolute; top:0; left:0; width:100%; height:100%;
    background:linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index:2;
}
.hero-content { position:relative; z-index:3; }
.hero-title { font-size:5rem; line-height:1.1; margin-bottom:1rem; }

/* === SECTIONS === */
.section-title { font-size:3.5rem; line-height:1.15; }

.badge {
    display:inline-block; padding:0.5rem 1.5rem;
    border-radius:2rem; font-size:0.875rem;
}

.rel-container { position:relative; }

/* Experience card overlay */
.experience-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* Image gradients in accommodation */
.img-gradient-overlay {
    position: absolute; bottom:0; left:0; right:0; top:0;
    background: linear-gradient(to top, rgba(26,29,26,0.7) 0%, transparent 50%);
    pointer-events: none;
}

/* ========= Owl Carousel: Nature Gallery ========= */
.nature-carousel-wrapper {
    position:relative;
    overflow:hidden;
    width:100%;
    padding: 2.5rem 0;
    margin: -1.5rem 0;
}
.nature-carousel .owl-stage-outer {
    overflow:visible; /* allow peek at edges */
}
.nature-carousel .owl-stage {
    display:flex;
    align-items:center;
}
.nature-slide {
    padding:0 10px;
}
.nature-slide img {
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:1.5rem;
    transition:transform 0.5s ease, box-shadow 0.5s ease;
    display:block;
}
/* Every even slide is smaller */
.nature-carousel .owl-item:nth-child(even) .nature-slide img {
    height: 340px;
}
@media (max-width:767px) {
    .nature-slide img { height:300px; }
    .nature-carousel .owl-item:nth-child(even) .nature-slide img {
        height: 240px;
    }
}
.nature-slide:hover img {
    transform:scale(1.03);
    box-shadow:0 20px 40px -10px rgba(0,0,0,0.4);
}

/* Hide Owl default dots and nav */
.nature-carousel .owl-dots { display:none; }
.nature-carousel .owl-nav { display:none; }

/* Override Owl grab cursor */
.nature-carousel .owl-stage { cursor:grab; }
.nature-carousel .owl-stage:active { cursor:grabbing; }

/* Accommodation grid */
.accom-grid {
    display:grid; gap:1.5rem;
}
@media (min-width:1024px) {
    .accom-grid { grid-template-columns: 7fr 5fr; height:550px; }
}
@media (max-width:1023px) {
    .accom-grid { gap:1rem; }
}
.accom-main, .accom-side-item {
    position:relative; overflow:hidden; border-radius:2rem;
    /* Critical: contain children with explicit sizing */
}
/* Mobile: fixed heights */
.accom-main { height:320px; }
.accom-side-item { height:240px; }
/* Desktop: fill grid rows */
@media (min-width:1024px) {
    .accom-main { height:100%; }
    .accom-side-item { height:auto; } /* grid-rows handles it */
}
.accom-side { display:grid; grid-template-rows:1fr 1fr; gap:1.5rem; }
@media (max-width:1023px) {
    .accom-side { gap:1rem; }
}

/* Images are absolute-positioned within their container */
.accom-main img, .accom-side-item img {
    position:absolute; top:0; left:0;
    width:100%; height:100%; object-fit:cover;
    transition:transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.accom-main:hover img, .accom-side-item:hover img { transform:scale(1.05); }
.accom-label {
    position:absolute; bottom:0; left:0; right:0;
    padding:2rem; z-index:2;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

/* Amenity icons & Carousel */
.amenity-carousel-wrapper {
    position: relative;
    padding: 2.5rem 40px;
    margin: -1.5rem 0;
    overflow: hidden;
    width: 100%;
}
.amenity-carousel .owl-stage-outer {
    overflow: visible;
}
.amenity-carousel .owl-item {
    opacity: 0.3;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(0.9);
}
.amenity-carousel .owl-item.active {
    opacity: 1;
    transform: scale(1);
}

.amenity-card {
    background: var(--c-white);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 1rem 0;
}
.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.15);
}

.amenity-img-box {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}
.amenity-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.amenity-card:hover .amenity-img-box img {
    transform: scale(1.1);
}

.amenity-content {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.amenity-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background: var(--c-sand);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
    transition: background 0.3s ease;
}
.amenity-card:hover .amenity-icon {
    background: var(--c-primary);
}
.amenity-card:hover .amenity-icon svg {
    stroke: var(--c-white);
}
.amenity-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--c-primary);
    fill: none;
    stroke-width: 1.5;
    transition: stroke 0.3s ease;
}

/* Custom Owl Nav for Amenities */
.amenity-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50% !important;
    background: var(--c-white) !important;
    box-shadow: var(--shadow-soft) !important;
    color: var(--c-primary) !important;
    font-size: 1.5rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease !important;
    z-index: 10;
}
.amenity-carousel .owl-nav button:hover {
    background: var(--c-primary) !important;
    color: var(--c-white) !important;
    transform: translateY(-50%) scale(1.1);
}
.amenity-carousel .owl-nav .owl-prev { left: -2rem; }
.amenity-carousel .owl-nav .owl-next { right: -2rem; }

.amenity-carousel .owl-dots {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}
.amenity-carousel .owl-dot span {
    width: 8px;
    height: 8px;
    background: rgba(0,0,0,0.1);
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
}
.amenity-carousel .owl-dot.active span {
    background: var(--c-primary);
    transform: scale(1.5);
}

/* Features (FOMO cards) */
.feature-card {
    background:rgba(255,255,255,0.9);
    border:1px solid rgba(0,0,0,0.04);
    backdrop-filter:blur(8px);
    transition:transform 0.4s ease, box-shadow 0.4s ease;
}
.feature-card:hover {
    transform:translateY(-8px);
    box-shadow:0 20px 40px -10px rgba(0,0,0,0.12);
}
.feature-icon {
    width:4rem; height:4rem; border-radius:9999px;
    background:rgba(62,95,70,0.1);
    display:flex; align-items:center; justify-content:center;
    margin-bottom:1.5rem;
}
.feature-icon svg { width:24px; height:24px; stroke:var(--c-primary); fill:none; stroke-width:1.5; }

/* Accordion */
.accordion-item { cursor:pointer; }
.accordion-content { transition:height 0.4s ease, padding 0.4s ease; overflow:hidden; }
.accordion-item:not(.active) .accordion-content { height:0 !important; padding-top:0; padding-bottom:0; }
.accordion-icon { transition:transform 0.3s ease; }

/* Sticky Column */
@media (min-width:1024px) {
    .sticky-col { position:sticky; top:100px; }
}

/* Price block */
.price-included {
    background:rgba(255,255,255,0.5);
    backdrop-filter:blur(4px);
    border:1px solid var(--c-white);
    padding:2rem; border-radius:2rem;
}
.check-icon {
    width:1.5rem; height:1.5rem; flex-shrink:0; margin-top:0.15rem;
}
.check-icon svg { width:100%; height:100%; stroke:var(--c-primary); fill:none; stroke-width:2; }

/* Objections card */
.objections-card {
    background:rgba(255,255,255,0.85);
    backdrop-filter:blur(16px);
    border:1px solid rgba(0,0,0,0.06);
    padding:2.5rem; border-radius:2.5rem;
    box-shadow:0 25px 50px -12px rgba(0,0,0,0.15);
}
@media (min-width:768px) { .objections-card { padding:3rem; } }

/* Guides */
.guide-card { text-align:center; }
.guide-photo-wrapper {
    width:16rem; height:16rem; margin:0 auto 2.5rem;
    position:relative;
}
.guide-photo-bg {
    position:absolute; inset:0; background:var(--c-sand);
    border-radius:3rem; transition:transform 0.5s ease;
}
.guide-card:hover .guide-photo-bg { transform:rotate(12deg); }
.guide-card:nth-child(2) .guide-photo-bg { transform:rotate(-6deg); }
.guide-card:nth-child(2):hover .guide-photo-bg { transform:rotate(-12deg); }
.guide-photo {
    width:100%; height:100%; object-fit:cover;
    border-radius:3rem; position:relative; z-index:1;
    box-shadow:var(--shadow-xl);
    transition:transform 0.5s ease;
}
.guide-card:hover .guide-photo { transform:translateY(-4px); }

/* Testimonials */
.testim-track { display:flex; width:100%; transition:transform 0.5s ease-out; }
.testim-slide { width:100%; flex-shrink:0; }
.pattern-bg { background-image:radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px); background-size:40px 40px; }

.testim-card {
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.1);
    backdrop-filter:blur(16px);
    border-radius:2.5rem;
    padding:2rem;
    box-shadow:0 25px 50px -12px rgba(0,0,0,0.25);
}
@media (min-width:768px) { .testim-card { padding:4rem; } }
.testim-img-wrapper {
    position:relative; width:100%; height:300px; border-radius:1.5rem; overflow:hidden;
}
@media (min-width:768px) { .testim-img-wrapper { height:450px; } }
.testim-img-wrapper img { width:100%; height:100%; object-fit:cover; }
.testim-img-bg {
    position:absolute; top:0.5rem; right:0.5rem; bottom:0.5rem; left:0.5rem;
    background:rgba(62,95,70,0.2); border-radius:1.5rem; transform:rotate(-3deg);
}

.slider-btn {
    width:4rem; height:4rem; border-radius:9999px;
    border:1px solid rgba(255,255,255,0.2);
    background:transparent; color:white; cursor:pointer;
    display:flex; align-items:center; justify-content:center;
    transition:all 0.3s ease;
}
.slider-btn:hover { background:var(--c-primary); border-color:var(--c-primary); }

.slider-dot {
    width:0.75rem; height:0.75rem; border-radius:9999px;
    cursor:pointer; transition:all 0.3s ease;
    background:rgba(255,255,255,0.3);
}
.slider-dot.active { background:var(--c-primary); transform:scale(1.25); }

/* === MODAL === */
.modal {
    position:fixed; top:0; left:0; width:100%; height:100%;
    z-index:1000; display:flex; align-items:center; justify-content:center;
    opacity:0; visibility:hidden; transition:all 0.3s ease;
}
.modal.open { opacity:1; visibility:visible; }
.modal-overlay {
    position:absolute; top:0; left:0; width:100%; height:100%;
    background:rgba(0,0,0,0.4); backdrop-filter:blur(5px);
}
.modal-content {
    background:var(--c-white); padding:3rem; border-radius:2rem;
    width:90%; max-width:450px; position:relative;
    transform:translateY(20px) scale(0.95);
    transition:all 0.3s cubic-bezier(0.16,1,0.3,1);
    box-shadow:0 40px 60px -15px rgba(0,0,0,0.2);
}
.modal.open .modal-content { transform:translateY(0) scale(1); }
.modal-close {
    position:absolute; top:1.5rem; right:1.5rem;
    background:none; border:none; font-size:2rem;
    cursor:pointer; color:var(--c-gray); line-height:1;
}
.input-field {
    width:100%; padding:1.2rem 1.5rem;
    border:1px solid rgba(0,0,0,0.1); border-radius:1rem;
    margin-bottom:1rem; font-family:var(--font-body); font-size:1rem;
    background:var(--c-light); outline:none; transition:border-color 0.3s;
}
.input-field:focus { border-color:var(--c-primary); }

/* === ANIMATIONS === */
.fade-up { opacity:0; transform:translateY(30px); }
.fade-in { opacity:0; }
.fade-up.visible {
    opacity:1; transform:translateY(0);
    transition:opacity 0.8s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.fade-in.visible {
    opacity:1;
    transition:opacity 1s ease;
}
.delay-100 { transition-delay:0.1s; animation-delay:0.1s; }
.delay-200 { transition-delay:0.2s; animation-delay:0.2s; }
.delay-300 { transition-delay:0.3s; animation-delay:0.3s; }

.pulse-anim { animation:pulse 2s infinite; }
@keyframes pulse {
    0% { transform:scale(1); box-shadow:0 0 0 0 rgba(62,95,70,0.7); }
    70% { transform:scale(1.05); box-shadow:0 0 0 15px rgba(62,95,70,0); }
    100% { transform:scale(1); box-shadow:0 0 0 0 rgba(62,95,70,0); }
}

/* Footer Feedback Form */
.footer-form {
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.4);
}

/* Custom Radio Styling */
.custom-radio {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--c-dark);
    font-weight: 500;
}
.custom-radio input { display: none; }
.radio-mark {
    width: 1.35rem;
    height: 1.35rem;
    border: 2px solid rgba(62, 95, 70, 0.3);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: var(--c-white);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}
.custom-radio input:checked + .radio-mark {
    border-color: var(--c-primary);
    box-shadow: 0 0 0 4px rgba(62, 95, 70, 0.1);
}
.custom-radio input:checked + .radio-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.6rem;
    height: 0.6rem;
    background: var(--c-primary);
    border-radius: 50%;
    animation: radio-pop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes radio-pop {
    0% { transform: translate(-50%, -50%) scale(0); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

/* Custom Checkbox Styling */
.custom-checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    cursor: pointer;
    position: relative;
    padding: 0.8rem 1rem;
    border-radius: 1.25rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(62, 95, 70, 0.08);
    background: rgba(255, 255, 255, 0.5);
}
.custom-checkbox-container:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(62, 95, 70, 0.2);
}
.custom-checkbox-container input { display: none; }
.checkbox-mark {
    width: 1.35rem;
    height: 1.35rem;
    border: 2px solid rgba(62, 95, 70, 0.3);
    border-radius: 0.5rem;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background: var(--c-white);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}
.custom-checkbox-container input:checked + .checkbox-mark {
    border-color: var(--c-primary);
    background: var(--c-primary);
    box-shadow: 0 4px 12px rgba(62, 95, 70, 0.3);
}
.custom-checkbox-container input:checked + .checkbox-mark::after {
    content: '';
    position: absolute;
    left: 0.35rem;
    top: 0.15rem;
    width: 0.35rem;
    height: 0.6rem;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    animation: check-pop 0.3s ease-out;
}
@keyframes check-pop {
    0% { transform: rotate(45deg) scale(0.5); opacity:0; }
    100% { transform: rotate(45deg) scale(1); opacity:1; }
}

/* Validation Style */
.error-border {
    border-color: #ff4d4d !important;
    background: rgba(255, 77, 77, 0.05) !important;
    box-shadow: 0 0 0 4px rgba(255, 77, 77, 0.1);
}

/* Footer Section Padding Adjustment */
#final { padding-bottom: 4rem; }
#footer-contact { padding-top: 70px; padding-bottom: 90px; }

/* Footer Links Animation */
footer a { text-decoration:none; transition:color 0.3s; }
footer a:hover { color:var(--c-primary); }

/* === RESPONSIVE === */
@media (min-width:640px) {
    .sm-text-sm { font-size:0.875rem; }
    .sm-flex-row { flex-direction:row; }
    .sm-gap-8 { gap:2rem; }
}
@media (min-width:768px) {
    .md-grid-2 { grid-template-columns:repeat(2,1fr); }
    .md-grid-3 { grid-template-columns:repeat(3,1fr); }
    .md-grid-4 { grid-template-columns:repeat(4,1fr); }
    .md-flex-row { flex-direction:row; }
    .md-gap-16 { gap:4rem; }
    .md-gap-20 { gap:5rem; }
    .md-mt-0 { margin-top:0; }
    .md-text-left { text-align:left; }
    .md-text-xl { font-size:1.25rem; }
    .md-text-3xl { font-size:1.875rem; }
    .md-text-4xl { font-size:2.25rem; }
    .md-text-7xl { font-size:4.5rem; }
    .md-mx-0 { margin-left:0; margin-right:0; }
    .md-block { display:block; }
    .md-w-32 { width:8rem; }
    .md-p-8 { padding:2rem; }
    .md-p-12 { padding:3rem; }
    .md-p-16 { padding:4rem; }
    .md-px-8 { padding-left:2rem; padding-right:2rem; }
    .md-h-\[400px\] { height:400px; }
    .md-h-\[450px\] { height:450px; }
    .md-h-\[500px\] { height:500px; }
    .md-w-\[400px\] { width:400px; }
    .md-w-\[350px\] { width:350px; }
    .md-w-\[450px\] { width:450px; }
    .md-w-\[380px\] { width:380px; }
    .md-h-\[550px\] { height:550px; }
    .mobile-only { display:none !important; }
}
@media (max-width:767px) {
    .desktop-only { display:none !important; }
    .container { padding:0 1.25rem; width:100%; max-width:100vw; }
    .header { padding: 1rem 0; }
    .header .logo { font-size: 1rem; }
    .section-title { font-size:1.875rem !important; }
    .hero-title { font-size:2.25rem !important; word-break: break-word; }
    .badge { padding: 0.4rem 1rem; font-size: 0.7rem; }
    .py-32 { padding-top:3.5rem; padding-bottom:3.5rem; }
    .amenity-carousel-wrapper { padding: 0 1rem; }
    .amenity-carousel .owl-nav .owl-prev { left: 0; }
    .amenity-carousel .owl-nav .owl-next { right: 0; }
    .amenity-carousel .owl-nav button { width: 2.5rem !important; height: 2.5rem !important; font-size: 1.2rem !important; }
    .pt-32 { padding-top:4rem; }
    .pb-24 { padding-bottom:4rem; }
    .gap-16 { gap:2.5rem; }
    .gap-20 { gap:3rem; }
    .text-5xl { font-size:2.25rem; }
    .text-6xl { font-size:2.75rem; }
    .text-7xl { font-size:3rem; }
    .text-4xl { font-size:1.875rem; }
    .sticky-col { position:static; }
}
@media (min-width:1024px) {
    .lg-grid-2 { grid-template-columns:repeat(2,1fr); }
}

/* History Gallery Grid */
.history-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 0;
}
@media (min-width: 600px) {
    .history-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
    .history-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (min-width: 1200px) {
    .history-grid { grid-template-columns: repeat(6, 1fr); }
}

.history-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    display: block;
}

.history-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.history-item:hover img {
    transform: scale(1.1);
}

.history-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(62, 95, 70, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.history-item:hover::after {
    opacity: 1;
}

.history-item::before {
    content: '+';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    color: white;
    font-size: 3rem;
    font-weight: 300;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.history-item:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
