/* 
 * KISANS VILLA HOMESTAY - LUXURY TROPICAL MODERN RESORT DESIGN SYSTEM
 * Theme: Soft, Warm, Airy Luxury / Warm Ivory, Soft Linen, Gold & Tropical Accents
 * Fonts: Cormorant Garamond (Headings), Fraunces (Accent Serif), Outfit (Body)
 */

/* ==========================================
   DESIGN TOKENS & VARIABLES (WARM RESORT THEME)
   ========================================== */
:root {
    --primary-bg: #F2ECE0;
    /* Soothing Cozy Ivory / Warm Resort Sand */
    --bg-secondary: #E5DCCB;
    /* Grounded Cozy Sand / Earthy Linen */
    --bg-card: rgba(242, 236, 224, 0.45);
    /* Soft Warm Sand with reduced opacity (0.45) for supreme comfort */

    --accent-gold: #C8A96A;
    /* Metallic Gold */
    --accent-gold-rgb: 200, 169, 106;
    --accent-gold-hover: #DBC088;
    --accent-champagne: #E6D3A3;
    /* Champagne Gold */
    --accent-teal: #A4C4AB;
    /* Soft Tropical Green/Teal */

    --text-primary: #2B2B2B;
    /* Charcoal Dark Gray */
    --text-secondary: #6E6E6E;
    /* Muted Slate Gray */
    --text-light: #9B9B9B;

    /* Fonts */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-accent: 'Fraunces', Georgia, serif;
    --font-body: 'Outfit', sans-serif;

    /* Layout & Curves */
    --card-radius: 22px;
    --pill-radius: 50px;
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-medium: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    --section-padding: 120px 0;

    /* Luxury Glassmorphism & Depth Shadows */
    --soft-shadow: 0 15px 35px rgba(183, 168, 143, 0.14);
    --hover-shadow: 0 25px 50px rgba(183, 168, 143, 0.25);
    --gold-glow: 0 10px 30px rgba(200, 169, 106, 0.2);
    --glass-border: rgba(200, 169, 106, 0.15);
    /* Soft warm gold edge to eliminate harsh white glare */
    --glass-border-gold: rgba(200, 169, 106, 0.22);
    --inner-highlight: inset 0 1px 0 rgba(242, 236, 224, 0.5);
    /* Soothing warm sand highlight */

    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #ad8e51 0%, #E6D3A3 100%);
    --sunlight-gradient: linear-gradient(180deg, rgba(242, 236, 224, 0.15) 0%, #F2ECE0 100%);
    --tropical-gradient: linear-gradient(135deg, rgba(164, 196, 171, 0.15) 0%, rgba(230, 211, 163, 0.18) 100%);
}

/* ==========================================
   BASE STYLES & RESET
   ========================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--primary-bg);
}

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

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

.icon-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.ui-icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: -0.12em;
    flex: none;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.8em;
    height: 1.8em;
    padding: 0 0.35em;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    color: inherit;
    background: rgba(255, 255, 255, 0.14);
}

.brand-icon-google {
    background: rgba(255, 255, 255, 0.88);
    color: #4285f4;
    border: 1px solid rgba(66, 133, 244, 0.18);
    font-size: 0.95rem;
}

.brand-icon-wa {
    background: rgba(18, 140, 126, 0.12);
    color: #128C7E;
}

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

ul {
    list-style: none;
}

input,
select,
textarea {
    font-family: inherit;
    background: transparent;
    border: none;
    outline: none;
}

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

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: var(--pill-radius);
    border: 2px solid var(--bg-secondary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-hover);
}

/* ==========================================
   TYPOGRAPHY & ACCENTS (LUXURY EDITORIAL)
   ========================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.25;
}

h1 {
    font-size: clamp(3rem, 6.5vw, 5rem);
    line-height: 1.1;
    margin-bottom: 25px;
}

h2 {
    font-size: clamp(2.3rem, 4.5vw, 3.4rem);
    margin-bottom: 20px;
    font-weight: 300;
}

h3 {
    font-size: clamp(1.45rem, 2.5vw, 1.9rem);
    margin-bottom: 15px;
}

p {
    font-weight: 300;
    letter-spacing: 0.015em;
    margin-bottom: 20px;
}

p strong {
    color: var(--text-primary);
    font-weight: 500;
}

.italic-serif {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 300;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--accent-gold);
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    margin-bottom: 60px;
    line-height: 1.2;
}

/* ==========================================
   COMMON LAYOUTS & CONTAINERS
   ========================================== */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.grid {
    display: grid;
    gap: 40px;
}

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

.section-padding {
    padding: var(--section-padding);
    position: relative;
    z-index: 2;
    /* Skip rendering off-screen sections — major FCP/LCP win */
    content-visibility: auto;
    contain-intrinsic-size: 0 600px;
}

.bg-light {
    background-color: var(--primary-bg);
}

.bg-dark {
    background-color: var(--bg-secondary);
}
/* ==========================================
   LUXURY PILL BUTTONS (GOLD GRADIENT & HOVER LIFT)
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    font-size: 0.82rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 600;
    border-radius: var(--pill-radius);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-medium);
    cursor: pointer;
    border: none;
    box-shadow: var(--soft-shadow);
}

.btn-primary {
    background: var(--gold-gradient);
    color: #FFF;
    box-shadow: 0 10px 25px rgba(200, 169, 106, 0.35);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 211, 163, 0.45), transparent);
    transition: 0.7s ease-in-out;
    z-index: -1;
}

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

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(200, 169, 106, 0.5), var(--gold-glow);
}

.btn-outline {
    background-color: rgba(242, 236, 224, 0.65);
    color: var(--text-primary);
    border: 1px solid rgba(200, 169, 106, 0.35);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-outline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-outline:hover {
    color: #FFF;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(200, 169, 106, 0.25);
}

.btn-gold {
    background-color: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.btn-gold:hover {
    background: var(--gold-gradient);
    color: #FFF;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: var(--gold-glow);
}

.btn-block {
    width: 100%;
}

.btn.small {
    padding: 11px 24px;
    font-size: 0.72rem;
}

/* ==========================================
   DEFAULT AMBIENT ANIMATIONS (CARD FLOAT & GRADIENT DRIFT)
   ========================================== */
@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

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

@keyframes floatCardAlt {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-7px);
    }

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

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

    50% {
        transform: scale(1.025);
    }

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

@keyframes slowGlowDrift {
    0% {
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }

    50% {
        transform: translate(60px, -40px) rotate(180deg) scale(1.18);
    }

    100% {
        transform: translate(0px, 0px) rotate(360deg) scale(1);
    }
}

@keyframes slowGlowDriftReverse {
    0% {
        transform: translate(0px, 0px) rotate(360deg) scale(1.1);
    }

    50% {
        transform: translate(-50px, 60px) rotate(180deg) scale(0.9);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg) scale(1.1);
    }
}

/* Layered Soft Tropical Glow Background Blobs */
.bg-ambient-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.blob-gold {
    position: absolute;
    top: 15%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 211, 163, 0.22) 0%, rgba(230, 211, 163, 0) 70%);
    filter: blur(100px);
    animation: slowGlowDrift 24s infinite alternate ease-in-out;
}

.blob-teal {
    position: absolute;
    bottom: 20%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(164, 196, 171, 0.16) 0%, rgba(164, 196, 171, 0) 70%);
    filter: blur(120px);
    animation: slowGlowDriftReverse 28s infinite alternate ease-in-out;
}

.blob-sunlight {
    position: absolute;
    top: 45%;
    left: 40%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 235, 212, 0.25) 0%, rgba(245, 235, 212, 0) 70%);
    filter: blur(90px);
    animation: slowGlowDrift 20s infinite alternate-reverse ease-in-out;
}

/* ==========================================
   HEADER & NAVIGATION (LIGHT GLASSMORPHISM)
   ========================================== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-medium);
    padding: 35px 0;
}

#main-header.scrolled {
    padding: 18px 0;
    /* Rich obsidian black with reduced translucent opacity */
    background-color: rgba(10, 11, 13, 0.65);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(200, 169, 106, 0.12);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

#main-header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    font-family: var(--font-accent);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.logo-text span {
    color: var(--accent-gold);
    font-weight: 300;
    font-style: italic;
    margin-left: 6px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

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

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
    z-index: 1100;
}

.mobile-menu-btn span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

.mobile-menu-btn span:nth-child(1) {
    top: 0px;
}

.mobile-menu-btn span:nth-child(2) {
    top: 9px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 18px;
}

.mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--accent-gold);
}

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

.mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--accent-gold);
}

/* ==========================================
   HERO SECTION (WARM SUNLIGHT SUNSHINE OVERLAY)
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 150px;
    padding-bottom: 90px;
    background-color: var(--bg-secondary);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Removed background-attachment:fixed — it forces full-page repaints on every scroll (major LCP/FCP killer on mobile) */
    background-image: linear-gradient(to bottom, rgba(26, 20, 14, 0.18) 0%, rgba(26, 20, 14, 0.46) 100%), url('assets/kisan-villa-landing.jpeg');
    background-size: cover;
    background-position: center 82%;
    will-change: transform;
    /* Removed heroZoom CSS animation — JS parallax handles transform exclusively to avoid non-composited animation warning */
}

/* Ambient bubbles layer (elements created in script.js) */
.hero-bg .bubbles-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-bg .bubble {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(var(--accent-gold-rgb), 0.18);
    opacity: var(--bubble-opacity, 0.1);
    mix-blend-mode: screen;
    will-change: transform;
    animation-name: bubbleFloat;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes bubbleFloat {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(var(--wobble-offset, 0px), -120vh, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg .bubble {
        animation: none !important;
    }
}

@keyframes heroZoom {
    0% {
        transform: scale(1.06);
    }

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    background: rgba(242, 236, 224, 0.5);
    border: 1px solid rgba(200, 169, 106, 0.25);
    border-radius: var(--pill-radius);
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(183, 168, 143, 0.08);
}

.hero-rating-badge .stars {
    color: var(--accent-gold);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.hero-rating-badge .badge-text {
    font-size: 0.72rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-primary);
    font-weight: 600;
}

.hero-content h1 {
    color: #FFF;
    opacity: 1;
    transform: translateY(18px);
    animation: heroHeadingIn 0.8s forwards cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
    font-weight: 300;
}

.hero-rotating-word {
    display: inline-block;
    vertical-align: baseline;
    white-space: nowrap;
    min-width: var(--rot-min-width, auto);
    text-align: right;
    margin-right: 0;
}

.hero-rotating-word.rot-exit {
    animation: heroRotExit 420ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-rotating-word.rot-enter {
    animation: heroRotEnter 420ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroRotExit {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0.25;
        transform: translateX(-0.7em);
    }
}

@keyframes heroRotEnter {
    from {
        opacity: 0.25;
        transform: translateX(0.7em);
    }

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

@media (prefers-reduced-motion: reduce) {
    .hero-rotating-word.rot-exit,
    .hero-rotating-word.rot-enter {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

.hero-content p.reveal-text-sub {
    font-size: 0.98rem;
    color: #c8a96a;
    font-family: 'Lora', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    max-width: 680px;
    margin-bottom: 45px;
    opacity: 1;
    transform: translateY(14px);
    animation: heroSubheadingIn 0.8s forwards cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
    line-height: 1.9;
    letter-spacing: 0.01em;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 70px;
    opacity: 1;
    transform: translateY(12px);
    animation: heroContentIn 0.8s forwards cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.hero-stats {
    display: flex;
    gap: 60px;
    border-top: 1px solid rgba(200, 169, 106, 0.15);
    padding-top: 40px;
    opacity: 1;
    transform: translateY(12px);
    animation: heroContentIn 0.8s forwards cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.stat-card {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: white;
    margin-bottom: 5px;
    font-weight: 400;
}

.stat-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: white;
    font-weight: 600;
}

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

@keyframes heroHeadingIn {
    from {
        transform: translateY(18px);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes heroSubheadingIn {
    from {
        transform: translateY(14px);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes heroContentIn {
    from {
        transform: translateY(12px);
    }

    to {
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: white;
    font-weight: 600;
    z-index: 2;
}

.scroll-indicator .mouse {
    width: 22px;
    height: 34px;
    border: 1.5px solid white;
    border-radius: 12px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 6px;
    background-color: white;
    left: 50%;
    transform: translateX(-50%);
    top: 6px;
    border-radius: 50%;
    animation: scrollMouse 2s infinite ease-in-out;
}

@keyframes scrollMouse {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 12px);
        opacity: 0;
    }
}

/* ==========================================
   ABOUT SECTION (RESTRUCTURED SPLIT LAYOUT)
   ========================================== */
.about .grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 80px;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.95;
    margin-bottom: 25px;
    max-width: 660px;
    /* Editorial text width limits */
}

.ideal-for {
    margin: 40px 0;
}

.ideal-for h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    margin-bottom: 18px;
    font-weight: 600;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: rgba(242, 236, 224, 0.5);
    border: 1px solid rgba(200, 169, 106, 0.22);
    border-radius: var(--pill-radius);
    color: var(--text-primary);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    font-weight: 500;
    transition: var(--transition-medium);
    box-shadow: 0 4px 10px rgba(183, 168, 143, 0.05);
}

.tag i {
    font-size: 0.9rem;
    color: var(--accent-gold);
}

.tag:hover {
    background-color: var(--primary-bg);
    border-color: var(--accent-gold);
    box-shadow: 0 8px 20px rgba(200, 169, 106, 0.15);
    transform: translateY(-3px);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    border-top: 1px solid rgba(200, 169, 106, 0.15);
    padding-top: 35px;
}

.about-features .feat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-features .feat-item i {
    font-size: 1.3rem;
    color: var(--accent-gold);
    width: 48px;
    height: 48px;
    background-color: rgba(242, 236, 224, 0.65);
    border: 1px solid rgba(200, 169, 106, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
    box-shadow: 0 4px 10px rgba(183, 168, 143, 0.05);
}

.about-features .feat-item:hover i {
    background: var(--gold-gradient);
    color: #FFF;
    border-color: transparent;
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--gold-glow);
}

.about-features .feat-item span {
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.about-image .img-wrapper {
    position: relative;
    padding-left: 20px;
    padding-bottom: 20px;
}

.about-image img {
    border-radius: var(--card-radius);
    border: 1px solid var(--glass-border);
    position: relative;
    z-index: 2;
    transition: var(--transition-slow);
    box-shadow: var(--soft-shadow);
    animation: breathScale 12s infinite ease-in-out;
}

.about-image:hover img {
    transform: scale(1.015);
    box-shadow: var(--hover-shadow);
}

.about-image .img-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 1px solid var(--accent-gold);
    border-radius: var(--card-radius);
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

/* ==========================================
   AMENITIES SECTION (SOFT FLOATING ORGANIC CARDS)
   ========================================== */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.amenity-card {
    background-color: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    padding: 50px 35px;
    text-align: left;
    transition: var(--transition-slow);
    position: relative;
    box-shadow: var(--soft-shadow), var(--inner-highlight);

    /* Default animated float so UI feels alive even without hover */
    animation: floatCard 10s infinite ease-in-out;
}

/* Stagger floating offsets and speed */
.amenity-card:nth-child(2) {
    animation-delay: 1.5s;
    animation-duration: 9s;
}

.amenity-card:nth-child(3) {
    animation-delay: 3s;
    animation-duration: 11s;
}

.amenity-card:nth-child(4) {
    animation-delay: 0.5s;
    animation-duration: 10s;
}

.amenity-card:nth-child(5) {
    animation-delay: 2.2s;
    animation-duration: 9.5s;
}

.amenity-card:nth-child(6) {
    animation-delay: 3.5s;
    animation-duration: 10.5s;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-gold);
    border-radius: var(--card-radius);
    opacity: 0;
    transition: var(--transition-medium);
    pointer-events: none;
}

.amenity-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--hover-shadow), var(--gold-glow);
    background-color: rgba(242, 236, 224, 0.75);
}

.amenity-card:hover::before {
    opacity: 0.45;
}

.amenity-card .icon-box {
    font-size: 2.3rem;
    color: var(--accent-gold);
    margin-bottom: 25px;
    transition: var(--transition-medium);
    display: inline-block;
}

.amenity-card:hover .icon-box {
    transform: scale(1.2) translateY(-5px);
    text-shadow: 0 5px 15px rgba(200, 169, 106, 0.25);
}

.amenity-card h3 {
    margin-bottom: 12px;
    font-weight: 400;
}

.amenity-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 0;
}

/* ==========================================
   NEARBY ATTRACTIONS (SOFT HORIZONTAL SLIDER)
   ========================================== */
.attractions-slider-container {
    position: relative;
    width: 100%;
    margin-top: 60px;
}

/* Arrow Buttons */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(200, 169, 106, 0.5);
    background: rgba(242, 236, 224, 0.92);
    color: var(--accent-gold);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 20px rgba(200, 169, 106, 0.15);
    backdrop-filter: blur(8px);
}

.slider-arrow-left {
    left: -25px;
}

.slider-arrow-right {
    right: -25px;
}

.attractions-slider-container:hover .slider-arrow {
    opacity: 1;
    pointer-events: auto;
}

.slider-arrow:hover {
    background: var(--accent-gold);
    color: #fff;
    border-color: var(--accent-gold);
    box-shadow: var(--gold-glow);
}

/* Make slider arrows usable on small screens (touch devices) */
@media (max-width: 900px) {
    .slider-arrow {
        opacity: 1 !important;
        pointer-events: auto !important;
        width: 56px;
        height: 56px;
        top: 50%;
    }

    .slider-arrow-left {
        left: 8px;
    }

    .slider-arrow-right {
        right: 8px;
    }

    .attractions-grid {
        gap: 18px;
        padding-left: 8px;
        padding-right: 8px;
    }
}

@media (max-width: 600px) {
    .slider-arrow {
        width: 64px !important;
        height: 64px !important;
        border-width: 1px !important;
        box-shadow: 0 8px 30px rgba(0,0,0,0.18);
    }

    .slider-arrow i {
        font-size: 1.1rem;
    }

    /* Ensure arrows are not visually clipped by parent containers */
    .attractions-slider-container {
        overflow: visible;
    }
}


.attractions-grid {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding: 20px 10px 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.attractions-grid::-webkit-scrollbar {
    display: none;
}

.attractions-grid:active {
    cursor: grabbing;
}

.attraction-card {
    flex: 0 0 410px;
    scroll-snap-align: start;
    background-color: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    box-shadow: var(--soft-shadow), var(--inner-highlight);
    transition: var(--transition-slow);
    overflow: hidden;

    /* Default animated float */
    animation: floatCardAlt 8s infinite ease-in-out;
}

.attraction-card:nth-child(even) {
    animation-delay: 2s;
    animation-duration: 9s;
}

.attraction-card:hover {
    border-color: rgba(200, 169, 106, 0.35);
    box-shadow: var(--hover-shadow), var(--gold-glow);
    transform: translateY(-8px);
}

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

.attraction-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.attraction-img .distance {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold-gradient);
    color: #FFF;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 6px 16px;
    letter-spacing: 0.1em;
    border-radius: var(--pill-radius);
    box-shadow: 0 5px 15px rgba(200, 169, 106, 0.25);
    z-index: 3;
}

.attraction-img .top-rated-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2D5A3D, #1a3d28);
    color: #ffd700;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 5px 12px;
    letter-spacing: 0.08em;
    border-radius: var(--pill-radius);
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(45, 90, 61, 0.35);
}

.attraction-img .top-rated-badge i {
    font-size: 0.6rem;
    color: #ffd700;
}


.attraction-img .map-hover-cta {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(247, 243, 238, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-medium);
    backdrop-filter: blur(5px);
    z-index: 2;
}

.attraction-card:hover .map-hover-cta {
    opacity: 1;
}

.attraction-img .map-hover-cta span {
    font-family: var(--font-body);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    color: #FFF;
    background: var(--gold-gradient);
    padding: 12px 26px;
    border-radius: var(--pill-radius);
    transform: translateY(15px);
    transition: var(--transition-medium);
    box-shadow: 0 6px 20px rgba(200, 169, 106, 0.3);
}

.attraction-card:hover .map-hover-cta span {
    transform: translateY(0);
}

.attraction-info {
    padding: 35px;
}

.attraction-info h3 {
    margin-bottom: 10px;
    font-weight: 400;
}

.attraction-info p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 25px;
    min-height: 52px;
    line-height: 1.7;
}

.attraction-link {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px dashed rgba(200, 169, 106, 0.5);
    padding-bottom: 4px;
    font-weight: 600;
}

.attraction-link:hover {
    color: var(--text-primary);
    border-color: var(--text-primary);
}

/* Custom Scroll Progress Bar for Attractions */
.scroll-track-wrapper {
    width: 100%;
    max-width: 600px;
    height: 4px;
    background: rgba(200, 169, 106, 0.15);
    margin: 40px auto 0;
    position: relative;
    border-radius: var(--pill-radius);
}

.scroll-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 15%;
    background: var(--gold-gradient);
    border-radius: var(--pill-radius);
    transition: width 0.1s ease-out;
}

/* ==========================================
   ASYNCHRONOUS EDITORIAL GALLERY GRID (ROUNDED)
   ========================================== */
.section-header {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: flex-end;
    margin-bottom: 60px;
}

.section-header .header-action p {
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 0;
    font-size: 1.05rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 240px;
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    box-shadow: var(--soft-shadow);
}

.gallery-item.large {
    grid-column: span 8;
    grid-row: span 2;
}

.gallery-item:not(.large):not(.wide) {
    grid-column: span 4;
}

.gallery-item.wide {
    grid-column: span 12;
    grid-row: span 1.5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Soft sunlight overlay instead of pure black overlay */
    background: linear-gradient(to top, rgba(247, 243, 238, 0.92) 0%, rgba(247, 243, 238, 0.4) 60%, rgba(247, 243, 238, 0) 100%);
    padding: 40px;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: var(--transition-medium);
}

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

.gallery-info {
    transform: translateY(20px);
    transition: var(--transition-medium);
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-tag {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
}

.gallery-info h3 {
    margin-bottom: 0;
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 400;
}

/* ==========================================
   TOURS & EXPERIENCES (CINEMATIC ORGANIC)
   ========================================== */
.tours .grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 80px;
}

.tours-text p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    max-width: 600px;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.experience-card {
    height: 280px;
    position: relative;
    overflow: hidden;
    border-radius: var(--card-radius);
    border: 1px solid var(--glass-border);
    box-shadow: var(--soft-shadow);
}

.experience-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Warm sunlight cream overlay for elegant magazine look */
    background: linear-gradient(to top, rgba(247, 243, 238, 0.95) 0%, rgba(247, 243, 238, 0.45) 55%, rgba(247, 243, 238, 0.1) 100%);
    transition: var(--transition-medium);
}

.experience-card:hover .experience-overlay {
    background: linear-gradient(to top, rgba(247, 243, 238, 0.98) 0%, rgba(247, 243, 238, 0.6) 65%, rgba(247, 243, 238, 0.2) 100%);
}

.experience-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    transition: var(--transition-medium);
}

.experience-badge {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-gold);
    margin-bottom: 8px;
    display: inline-block;
    font-weight: 600;
}

.experience-content h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 400;
}

.experience-reveal-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.experience-card:hover .experience-reveal-text {
    opacity: 1;
    max-height: 80px;
    margin-top: 10px;
}

/* ==========================================
   BOOKING SECTION (GLASSMORPHIC TROPICAL)
   ========================================== */
.booking .grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.booking-perks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 30px 0;
}

.booking-perks .perk {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.booking-perks .perk i {
    color: var(--accent-gold);
    font-size: 1.15rem;
}

.booking .timing {
    border-left: 2px solid var(--accent-gold);
    padding-left: 25px;
    margin-top: 35px;
}

.booking .timing p {
    font-size: 0.92rem;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.booking-card {
    background: var(--bg-card);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    padding: 55px;
    box-shadow: var(--soft-shadow), var(--inner-highlight);
    transition: var(--transition-slow);

    /* Default animated breathe float */
    animation: floatCard 12s infinite ease-in-out;
}

.booking-card:hover {
    border-color: rgba(200, 169, 106, 0.3);
    box-shadow: var(--hover-shadow), var(--gold-glow);
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-primary);
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    background-color: rgba(242, 236, 224, 0.4);
    border: 1px solid rgba(200, 169, 106, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    padding: 16px 20px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 400;
    transition: var(--transition-fast);
}

/* Chrome input date fix */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: sepia(50%) saturate(1000%) hue-rotate(5deg) brightness(0.6);
    cursor: pointer;
}

.form-group select option {
    background-color: var(--primary-bg);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-gold);
    background-color: #FFF;
    box-shadow: 0 0 12px rgba(200, 169, 106, 0.2);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    color: #FFF;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.28);
}

.whatsapp-btn i {
    font-size: 1.3rem;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    color: #FFF;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
}

.form-footer {
    font-size: 0.82rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
}

.form-footer a {
    color: var(--accent-gold);
    border-bottom: 1px dashed var(--accent-gold);
    font-weight: 500;
}

.form-footer a:hover {
    color: var(--text-primary);
    border-color: var(--text-primary);
}

/* ==========================================
   TESTIMONIALS SECTION (SOFT GLOW PILLS)
   ========================================== */
.google-rating-summary {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--pill-radius);
    padding: 15px 40px;
    margin-bottom: 60px;
    box-shadow: var(--soft-shadow), var(--inner-highlight);
}

.google-logo img {
    height: 24px;
}

.rating-details {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-value {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: var(--text-primary);
    font-weight: 400;
}

.rating-details .stars {
    color: var(--accent-gold);
    display: flex;
    gap: 4px;
}

.rating-count {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Star glow styling */
.animated-stars .ui-icon {
    text-shadow: 0 0 12px rgba(200, 169, 106, 0.65);
}

.reviews-slider {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    min-height: 380px;
}

.review-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.review-card {
    background-color: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    padding: 60px 80px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    z-index: 1;
    transform: translateY(20px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    pointer-events: none;
    box-shadow: var(--soft-shadow), var(--inner-highlight);

    /* Default animated float */
    animation: floatCardAlt 9s infinite ease-in-out;
}

.review-card.active-slide {
    opacity: 1;
    z-index: 2;
    transform: translateY(0);
    pointer-events: auto;
    border-color: rgba(200, 169, 106, 0.3);
    box-shadow: var(--hover-shadow), var(--gold-glow);
}

.review-card .stars {
    color: var(--accent-gold);
    font-size: 0.95rem;
    margin-bottom: 25px;
    justify-content: center;
    display: flex;
    gap: 6px;
}

.review-card p {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    line-height: 1.55;
    color: var(--text-primary);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 30px;
}

.guest-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.guest-name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-gold);
}

.guest-origin {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.slider-nav button {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 106, 0.3);
    background-color: var(--bg-card);
    color: var(--text-primary);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    cursor: pointer;
    box-shadow: var(--soft-shadow);
}

.slider-nav button:hover {
    border-color: var(--accent-gold);
    color: #FFF;
    background: var(--gold-gradient);
    box-shadow: var(--gold-glow);
    transform: translateY(-2px);
}

/* ==========================================
   CONTACT SECTION & MAP (WARM EDITORIAL)
   ========================================== */
.contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.contact-item .icon-box {
    font-size: 1.4rem;
    color: var(--accent-gold);
    width: 52px;
    height: 52px;
    background-color: var(--bg-card);
    border: 1px solid rgba(200, 169, 106, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-medium);
    box-shadow: var(--soft-shadow);
}

.contact-item:hover .icon-box {
    background: var(--gold-gradient);
    color: #FFF;
    border-color: transparent;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 5px 15px rgba(200, 169, 106, 0.35);
}

.contact-item h3 {
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    font-weight: 600;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.social-icon {
    width: 46px;
    height: 46px;
    background-color: var(--bg-card);
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 106, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.05rem;
    transition: var(--transition-fast);
    box-shadow: var(--soft-shadow);
}

.social-icon:hover {
    border-color: var(--accent-gold);
    color: #FFF;
    background: var(--gold-gradient);
    transform: translateY(-3px);
    box-shadow: var(--gold-glow);
}

.map-wrapper {
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    position: relative;
    padding: 10px;
    background-color: var(--bg-card);
    box-shadow: var(--soft-shadow);
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.map-wrapper:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 169, 106, 0.45);
    box-shadow: var(--hover-shadow), var(--gold-glow);
}

.map-wrapper iframe {
    display: block;
    border-radius: 16px;
    /* Proper natural map colors all the time (no sepia or washed out default) */
    filter: none;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.map-wrapper:hover iframe {
    transform: scale(1.03);
}


/* ==========================================
   FOOTER (ELEGANT TROPICAL CHARCOAL MINIMAL)
   ========================================== */
footer {
    background-color: #242220;
    /* Dark warm charcoal for subtle grounding */
    border-top: 1px solid rgba(200, 169, 106, 0.15);
    padding: 95px 0 45px;
    color: #DFDFDF;
}

.footer-grid {
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 70px;
}

.footer-about .logo-text {
    margin-bottom: 25px;
    color: #FFF;
}

.footer-about p {
    color: #A9A9A9;
    font-size: 0.95rem;
    line-height: 1.85;
    max-width: 400px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--accent-champagne);
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: #A9A9A9;
    font-size: 0.92rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-champagne);
    padding-left: 6px;
}

.footer-contact p {
    color: #A9A9A9;
    font-size: 0.92rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    border-bottom: 1.5px solid rgba(230, 211, 163, 0.25);
    padding-bottom: 8px;
    align-items: center;
}

.newsletter-form input {
    flex-grow: 1;
    color: #FFF;
    font-size: 0.9rem;
    padding: 10px 0;
}

.newsletter-form input::placeholder {
    color: #7E7E7E;
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: var(--accent-champagne);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-fast);
    padding: 10px;
}

.newsletter-form button:hover {
    color: #FFF;
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(242, 236, 224, 0.06);
    padding-top: 35px;
    font-size: 0.82rem;
    color: #7E7E7E;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: #7E7E7E;
}

.footer-legal a:hover {
    color: var(--accent-champagne);
}

/* ==========================================
   SCROLL REVEAL CLASSIFICATION
   ========================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   STYLISH LIGHTBOX MODAL FOR GALLERY
   ========================================== */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(247, 243, 238, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    color: var(--text-primary);
    font-size: 2.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10010;
}

.lightbox-close:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--bg-card);
    border: 1px solid rgba(200, 169, 106, 0.25);
    border-radius: 50%;
    color: var(--text-primary);
    width: 60px;
    height: 60px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10005;
    box-shadow: var(--soft-shadow);
}

.lightbox-btn:hover {
    border-color: transparent;
    color: #FFF;
    background: var(--gold-gradient);
    box-shadow: var(--gold-glow);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--card-radius);
    border: 1px solid var(--glass-border);
    box-shadow: var(--soft-shadow);
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.lightbox-modal.active .lightbox-content img {
    transform: scale(1);
    opacity: 1;
}

#lightbox-caption {
    margin-top: 25px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-primary);
    letter-spacing: 0.03em;
    text-align: center;
}

/* ==========================================
   STICKY BOTTOM MOBILE ACTION NAVIGATION (ROUNDED PILL)
   ========================================== */
.sticky-mobile-nav {
    display: none;
    /* Desktop hidden */
    position: fixed;
    bottom: 20px;
    left: 5%;
    width: 90%;
    height: 68px;
    background-color: rgba(242, 236, 224, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(200, 169, 106, 0.3);
    border-radius: 40px;
    /* High luxury pill shape */
    box-shadow: 0 10px 30px rgba(183, 168, 143, 0.2);
    z-index: 999;
    overflow: hidden;
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--text-secondary);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-family: var(--font-body);
    font-weight: 600;
    border-right: 1px solid rgba(200, 169, 106, 0.15);
    transition: var(--transition-fast);
}

.sticky-btn:last-child {
    border-right: none;
}

.sticky-btn i {
    font-size: 1.2rem;
}

.sticky-btn .ui-icon,
.sticky-btn .brand-icon {
    font-size: 1.15rem;
}

.sticky-btn.call-btn:hover,
.sticky-btn.call-btn:active {
    color: var(--text-primary);
    background-color: rgba(200, 169, 106, 0.05);
}

.sticky-btn.map-btn:hover,
.sticky-btn.map-btn:active {
    color: var(--accent-gold);
    background-color: rgba(200, 169, 106, 0.05);
}

.sticky-btn.book-btn {
    color: #128C7E;
}

.sticky-btn.book-btn:hover,
.sticky-btn.book-btn:active {
    background-color: rgba(37, 211, 102, 0.08);
}

/* ==========================================
   📱 RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */

/* Large Tablets & Desktop adjust */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .about .grid,
    .tours .grid,
    .booking .grid,
    .contact-grid {
        gap: 50px;
    }
}

/* Tablets (landscape / portrait) */
@media (max-width: 991px) {
    .section-padding {
        padding: 85px 0;
    }

    .about .grid,
    .tours .grid,
    .booking .grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        order: -1;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item:not(.large):not(.wide) {
        grid-column: span 1;
    }

    .gallery-item.wide {
        grid-column: span 2;
        grid-row: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-about {
        grid-column: span 2;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-cta {
        display: none !important;
    }

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 380px;
        height: 100vh;
        background-color: rgba(247, 243, 238, 0.99);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-left: 1px solid rgba(200, 169, 106, 0.25);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 1050;
        transition: var(--transition-slow);
    }

    .nav-links.active {
        right: 0;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .attraction-card {
        flex: 0 0 300px;
    }

    .attraction-img {
        height: 200px;
    }

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

    .experience-card {
        height: 240px;
    }

    .booking-card {
        padding: 40px 20px;
    }

    .reviews-slider {
        min-height: 480px;
    }

    .review-card {
        padding: 40px 20px;
    }

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

    .footer-about {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* Sticky Mobile Navigation Activation */
    body {
        padding-bottom: 95px;
        /* Leave space for floating bottom bar */
    }

    .sticky-mobile-nav {
        display: flex;
    }

    .lightbox-btn {
        width: 45px;
        height: 45px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
    }

    .section-header {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .social-links {
        margin-left: 0;
        justify-content: center;
    }
}