/* ==========================================================================
   BANAGHATT RETREATS VILLAS - MULTI-PAGE & SLIDER STYLESHEET
   Location: Banasura Sagar Dam, Wayanad, Kerala
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & TOKENS
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --color-forest-dark: #1A3931;
    --color-forest-primary: #2F5D50;
    --color-forest-medium: #3B6F61;
    --color-forest-light: #548E7F;
    --color-olive-accent: #437367;
    
    --color-sand-light: #FAF7F2;
    --color-sand-medium: #F3ECE2;
    --color-sand-dark: #E6DBCB;

    --color-gold-primary: #C5A059;
    --color-gold-light: #E5C88D;
    --color-gold-dark: #A47E39;

    --color-brown-earth: #7D5A44;
    --color-slate-dark: #121815;
    --color-text-main: #2C3531;
    --color-text-muted: #5C6762;

    --color-white: #FFFFFF;
    --color-whatsapp: #25D366;
    --color-whatsapp-dark: #128C7E;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Shadows & Glows */
    --shadow-sm: 0 4px 12px rgba(20, 40, 30, 0.05);
    --shadow-md: 0 8px 24px rgba(20, 40, 30, 0.09);
    --shadow-lg: 0 16px 40px rgba(20, 40, 30, 0.15);
    --shadow-glass: 0 8px 32px 0 rgba(18, 24, 21, 0.2);

    /* Transitions & Animations */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

.text-center { text-align: center; }
.text-light { color: var(--color-white) !important; }
.text-white { color: #FFFFFF !important; }
.relative-z { position: relative; z-index: 2; }
.hidden { display: none !important; }

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & BUTTONS
   -------------------------------------------------------------------------- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.section-tag.center { justify-content: center; }

.tag-line {
    width: 32px;
    height: 1px;
    background-color: var(--color-gold-primary);
}

.tag-text {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--color-gold-dark);
    text-transform: uppercase;
}

.section-tag.light .tag-text { color: #FFFFFF !important; }
.section-tag.light .tag-line { background-color: var(--color-gold-light); }

.section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--color-forest-dark);
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 680px;
    margin: 0 auto 48px auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: var(--color-forest-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 88, 70, 0.3);
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-dark));
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(197, 160, 89, 0.35);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.45);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--color-forest-primary);
    color: var(--color-forest-primary);
}

.btn-secondary:hover {
    background-color: var(--color-forest-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--color-white);
    backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
    background-color: var(--color-white);
    color: var(--color-forest-dark);
    border-color: var(--color-white);
}

.btn-outline-dark {
    background-color: transparent;
    border-color: var(--color-forest-dark);
    color: var(--color-forest-dark);
}

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

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: var(--color-white);
}

.btn-whatsapp:hover {
    background-color: var(--color-whatsapp-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* --------------------------------------------------------------------------
   4. NAVIGATION BAR (ONLY LOGO.JPG)
   -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(14, 28, 20, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 0;
    box-shadow: var(--shadow-glass);
}

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

.nav-brand {
    display: flex;
    align-items: center;
}

/* Only Logo.jpg displayed cleanly */
.nav-logo-only {
    height: 75px;
    width: auto;
    border-radius: var(--radius-sm);
    object-fit: contain;
    transition: height var(--transition-normal), transform var(--transition-fast);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .nav-logo-only {
    height: 50px;
}

.nav-logo-only:hover {
    transform: scale(1.04);
}

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

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 6px 0;
}

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

.nav-link:hover, .nav-link.active {
    color: var(--color-white);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-mobile-cta { display: none; }

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu .bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--color-white);
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.hamburger-menu.active .bar:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger-menu.active .bar:nth-child(2) { opacity: 0; }
.hamburger-menu.active .bar:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   5. HERO BACKGROUND SLIDER
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.4s ease-in-out, transform 6s ease-out;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg, 
        rgba(10, 22, 16, 0.7) 0%, 
        rgba(10, 22, 16, 0.5) 50%, 
        rgba(10, 22, 16, 0.88) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 880px;
    padding-top: 90px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #FFFFFF !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all var(--transition-fast);
}

.slider-arrow:hover {
    background: var(--color-gold-primary);
    border-color: var(--color-gold-primary);
}

.slider-prev { left: 32px; }
.slider-next { right: 32px; }

.slider-dots {
    position: absolute;
    bottom: 32px;
    right: 48px;
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background: var(--color-gold-primary);
    width: 28px;
    border-radius: 6px;
}

.scroll-down-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    z-index: 3;
    cursor: pointer;
}

.mouse-icon {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    position: relative;
}

.wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--color-gold-primary);
    border-radius: 2px;
    animation: scrollWheel 1.8s infinite;
}

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 20px; }
}

/* --------------------------------------------------------------------------
   6. INNER HERO BANNER
   -------------------------------------------------------------------------- */
.inner-hero {
    position: relative;
    padding: 160px 0 90px 0;
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    text-align: center;
    overflow: hidden;
}

.inner-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(12, 24, 18, 0.82) 0%, rgba(12, 24, 18, 0.9) 100%);
}

.inner-hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #FFFFFF !important;
}

.breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-gold-light);
    font-weight: 500;
}

.breadcrumbs a { color: rgba(255, 255, 255, 0.85); }
.breadcrumbs a:hover { color: var(--color-white); }

/* --------------------------------------------------------------------------
   7. SECTIONS & CONTENT CARDS
   -------------------------------------------------------------------------- */
.welcome-grid, .signature-grid, .location-grid, .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--color-forest-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.body-text {
    color: var(--color-text-muted);
    margin-bottom: 36px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.highlight-item { display: flex; gap: 16px; }

.highlight-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background-color: rgba(43, 88, 70, 0.1);
    color: var(--color-forest-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--color-forest-dark);
    margin-bottom: 4px;
}

.highlight-content p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.image-composition {
    position: relative;
    padding-bottom: 40px;
    padding-right: 40px;
}

.main-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.main-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.image-glass-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    padding: 12px 20px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-forest-dark);
    box-shadow: var(--shadow-sm);
}

.secondary-image-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 6px solid var(--color-sand-light);
    box-shadow: var(--shadow-md);
}

.sec-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* Rooms Showcase (NO PRICE BADGE, NO VIEW DETAILS BUTTON) */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.room-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(43, 88, 70, 0.08);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.room-image-wrapper {
    position: relative;
    height: 270px;
    overflow: hidden;
}

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

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

.room-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--color-gold-primary);
    color: var(--color-white);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.room-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-meta {
    display: flex;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.room-meta i { color: var(--color-forest-primary); }

.room-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-forest-dark);
    margin-bottom: 12px;
}

.room-desc {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.room-amenities span {
    background-color: var(--color-sand-light);
    color: var(--color-forest-dark);
    font-size: 0.78rem;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.room-amenities i { color: var(--color-gold-dark); }

.room-actions {
    margin-top: auto;
    width: 100%;
}

.room-actions .btn {
    width: 100%;
}

/* --------------------------------------------------------------------------
   8. SIGNATURE EXPERIENCE SECTION (HIGH CONTRAST WHITE TEXT & NEW BACKGROUND)
   -------------------------------------------------------------------------- */
.signature-experience-section {
    position: relative;
    padding: 120px 0;
    background-color: #0E1D15;
    overflow: hidden;
    color: #FFFFFF !important;
}

.signature-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.45;
    filter: brightness(0.85);
}

.signature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(10, 22, 16, 0.92) 0%, 
        rgba(14, 29, 21, 0.88) 50%, 
        rgba(10, 22, 16, 0.94) 100%
    );
    z-index: 1;
}

.signature-content {
    color: #FFFFFF !important;
}

.signature-content .section-title {
    color: #FFFFFF !important;
    font-size: 2.9rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.signature-lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: #FFFFFF !important;
    margin-bottom: 32px;
    line-height: 1.7;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.signature-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.sig-point {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    font-weight: 500;
    color: #FFFFFF !important;
}

.sig-point i {
    color: var(--color-gold-light);
    font-size: 1.25rem;
}

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

.edit-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.edit-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.edit-card-2 { margin-top: 40px; }

.edit-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(10, 22, 16, 0.85);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
}

/* Why Us Grid */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background-color: var(--color-white);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid rgba(43, 88, 70, 0.06);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(197, 160, 89, 0.3);
}

.why-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: var(--color-sand-medium);
    color: var(--color-forest-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.why-card:hover .why-icon {
    background-color: var(--color-forest-primary);
    color: var(--color-white);
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-forest-dark);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.55;
}

/* Experiences */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.exp-card {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.exp-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.exp-image-box {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.exp-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.exp-card:hover .exp-image-box img {
    transform: scale(1.08);
}

.exp-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(20, 40, 30, 0.85);
    color: var(--color-gold-light);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
}

.exp-content { padding: 24px; }
.exp-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-forest-dark);
    margin-bottom: 10px;
}

.exp-content p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.55;
}

/* Gallery Masonry */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    background-color: var(--color-white);
    border: 1px solid rgba(43, 88, 70, 0.15);
    color: var(--color-text-main);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--color-forest-primary);
    color: var(--color-white);
    border-color: var(--color-forest-primary);
}

.gallery-grid {
    column-count: 4;
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: var(--radius-md);
    transition: transform var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(20, 40, 30, 0.85) 0%, rgba(20, 40, 30, 0.1) 70%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--color-white);
    transition: opacity var(--transition-normal);
    padding: 20px;
    text-align: center;
}

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

.gallery-overlay i { font-size: 1.5rem; color: var(--color-gold-light); }
.gallery-overlay span { font-size: 0.9rem; font-weight: 500; }

/* Lightbox Modal */
.lightbox-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 20, 15, 0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    object-fit: contain;
    margin: 0 auto;
}

.lightbox-caption {
    color: var(--color-sand-light);
    margin-top: 16px;
    font-size: 1.1rem;
    font-weight: 300;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background var(--transition-fast);
}

.lightbox-close { top: 24px; right: 24px; width: 48px; height: 48px; font-size: 1.8rem; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1.2rem; }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1.2rem; }

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
    background: var(--color-gold-primary);
}

/* Location Section */
.map-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-header {
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid var(--color-sand-medium);
}

.map-header i { font-size: 1.8rem; color: var(--color-forest-primary); }
.map-header h3 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--color-forest-dark); }
.map-header p { font-size: 0.88rem; color: var(--color-text-muted); }
.map-iframe-container { width: 100%; height: 380px; background-color: var(--color-sand-dark); }
.map-footer { padding: 16px 24px; text-align: center; background-color: var(--color-sand-light); }

.attraction-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-forest-dark);
    margin-bottom: 24px;
}

.attractions-wrapper { display: flex; flex-direction: column; gap: 16px; }

.attraction-card {
    background-color: var(--color-white);
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
}

.attraction-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: rgba(43, 88, 70, 0.1);
    color: var(--color-forest-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.attraction-info { flex-grow: 1; }
.attraction-info h4 { font-size: 1.05rem; font-weight: 600; color: var(--color-forest-dark); margin-bottom: 4px; }
.attraction-info p { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.4; }

.distance-badge {
    background-color: var(--color-sand-medium);
    color: var(--color-forest-dark);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-full);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background-color: var(--color-white);
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(43, 88, 70, 0.08);
}

.stars { color: var(--color-gold-primary); font-size: 0.95rem; margin-bottom: 20px; display: flex; gap: 4px; }
.review-text { font-size: 1rem; color: var(--color-text-main); font-style: italic; line-height: 1.65; margin-bottom: 28px; }
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-forest-primary);
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-info h4 { font-size: 0.98rem; font-weight: 600; color: var(--color-forest-dark); }
.reviewer-info span { font-size: 0.8rem; color: var(--color-text-muted); }

/* CTA Banner */
.booking-cta-section {
    position: relative;
    padding: 110px 0;
    background-color: var(--color-forest-dark);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.55;
    filter: brightness(0.9);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(14, 28, 20, 0.72) 0%, rgba(14, 28, 20, 0.85) 100%);
}

.cta-tag { font-size: 0.85rem; letter-spacing: 3px; color: var(--color-gold-light); font-weight: 600; margin-bottom: 12px; display: block; }
.cta-title { font-family: var(--font-heading); font-size: 3.2rem; margin-bottom: 20px; color: #FFFFFF !important; }
.cta-desc { font-size: 1.2rem; font-weight: 300; color: rgba(255, 255, 255, 0.95); max-width: 680px; margin: 0 auto 40px auto; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* Contact Section */
.contact-info-card {
    background-color: var(--color-forest-dark);
    color: var(--color-white);
    padding: 44px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-logo-only { width: 52px; height: 52px; border-radius: var(--radius-sm); object-fit: contain; }
.info-header h3 { font-family: var(--font-heading); font-size: 1.4rem; color: #FFFFFF; }
.sub-loc { font-size: 0.85rem; color: var(--color-gold-light); }

.contact-info-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.contact-info-list li { display: flex; gap: 16px; }

.contact-info-list .icon-box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-list strong { display: block; font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 2px; }
.contact-info-list p { font-size: 0.95rem; color: var(--color-white); }

.contact-socials { display: flex; align-items: center; gap: 16px; }
.contact-socials span { font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); }

.contact-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.contact-socials a:hover { background: var(--color-gold-primary); }

.contact-form-wrapper {
    background-color: var(--color-white);
    padding: 44px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h3 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--color-forest-dark); margin-bottom: 8px; }
.form-sub { font-size: 0.92rem; color: var(--color-text-muted); margin-bottom: 32px; }
.enquiry-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--color-forest-dark); }

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(43, 88, 70, 0.2);
    border-radius: var(--radius-sm);
    background-color: var(--color-sand-light);
    color: var(--color-text-main);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-forest-primary);
    box-shadow: 0 0 0 3px rgba(43, 88, 70, 0.12);
}

.form-toast {
    margin-top: 24px;
    padding: 20px;
    background-color: rgba(37, 211, 102, 0.1);
    border: 1px solid var(--color-whatsapp);
    border-radius: var(--radius-md);
    display: flex;
    gap: 16px;
    color: var(--color-forest-dark);
}

.form-toast i { font-size: 1.8rem; color: var(--color-whatsapp-dark); }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 16px; }

/* Footer */
.site-footer {
    background-color: var(--color-slate-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-only { height: 56px; width: auto; border-radius: var(--radius-sm); object-fit: contain; }
.footer-desc { font-size: 0.9rem; line-height: 1.65; color: rgba(255, 255, 255, 0.65); }

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background-color: var(--color-gold-primary);
}

.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; }
.footer-links a:hover { color: var(--color-gold-light); padding-left: 4px; }
.footer-contact p { display: flex; gap: 12px; font-size: 0.88rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 14px; }
.footer-contact i { color: var(--color-gold-light); }
.footer-contact a:hover { color: var(--color-gold-light); text-decoration: underline; }

.footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); color: var(--color-white); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; transition: all 0.3s ease; }
.footer-socials a:hover { background: var(--color-gold-primary); color: var(--color-dark-bg); transform: translateY(-2px); }

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Floating Actions */
.floating-whatsapp {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 990;
    transition: all var(--transition-normal);
}

.floating-whatsapp:hover { transform: scale(1.1); background-color: var(--color-whatsapp-dark); }
.floating-whatsapp .tooltip {
    position: absolute;
    right: 72px;
    background-color: var(--color-forest-dark);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
}

.floating-whatsapp:hover .tooltip { opacity: 1; }

.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-forest-dark);
    padding: 12px 16px;
    z-index: 980;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.mobile-bar-btn {
    flex: 1;
    padding: 12px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-bar-btn.whatsapp { background-color: var(--color-whatsapp); color: var(--color-white); }
.mobile-bar-btn.book { background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-dark)); color: var(--color-white); }

/* Modals */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 20, 15, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-container {
    background-color: var(--color-white);
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    position: relative;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.modal-container.modal-md { max-width: 540px; }

.booking-modal-body { padding: 36px 40px; }
.modal-header h3 { font-family: var(--font-heading); font-size: 1.75rem; color: var(--color-forest-dark); margin-bottom: 4px; }
.modal-header p { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 20px; }

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: var(--color-sand-medium);
    color: var(--color-forest-dark);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover { background-color: var(--color-forest-primary); color: var(--color-white); }
.booking-modal-body { padding: 32px 36px; }
.modal-logo { width: 56px; height: 56px; border-radius: var(--radius-sm); margin-bottom: 12px; object-fit: contain; }
.modal-header h3 { font-family: var(--font-heading); font-size: 1.7rem; color: var(--color-forest-dark); margin-bottom: 4px; }
.modal-header p { font-size: 0.88rem; color: var(--color-text-muted); margin-bottom: 20px; }

.or-divider { text-align: center; margin: 16px 0; position: relative; }
.or-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-sand-dark);
}

.or-divider span { background-color: var(--color-white); padding: 0 12px; font-size: 0.75rem; color: var(--color-text-muted); position: relative; }

/* Room Modal */
.room-modal-hero { height: 340px; position: relative; }
.room-modal-hero img { width: 100%; height: 100%; object-fit: cover; }
.room-modal-details { padding: 36px; }
.room-modal-details h2 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--color-forest-dark); margin-bottom: 10px; }
.room-modal-specs { display: flex; gap: 24px; padding: 16px 0; border-top: 1px solid var(--color-sand-medium); border-bottom: 1px solid var(--color-sand-medium); margin-bottom: 24px; }
.spec-box { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--color-forest-dark); }
.spec-box i { color: var(--color-forest-primary); font-size: 1.2rem; }
.room-modal-gallery-thumbs { display: flex; gap: 12px; margin-top: 20px; }
.room-modal-gallery-thumbs img { width: 80px; height: 60px; object-fit: cover; border-radius: var(--radius-sm); cursor: pointer; border: 2px solid transparent; }
.room-modal-gallery-thumbs img.active-thumb { border-color: var(--color-gold-primary); }

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.2rem; }
    .welcome-grid, .signature-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .rooms-grid, .testimonials-grid, .why-us-grid, .experiences-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { column-count: 3; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section-padding { padding: 48px 0; }
    .section-title { font-size: 1.95rem; line-height: 1.3; }
    .section-subtitle { font-size: 0.98rem; margin-bottom: 32px; }
    .hero-title { font-size: 2.2rem; line-height: 1.25; }
    .hero-subtitle { font-size: 1.0rem; }
    .btn-nav-cta { display: none; }
    .hamburger-menu { display: flex; }

    /* Logo size adjustments for mobile header */
    .nav-logo-only { height: 55px; }
    .navbar.scrolled .nav-logo-only { height: 45px; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-forest-dark);
        flex-direction: column;
        justify-content: center;
        padding: 40px 28px;
        transition: right var(--transition-normal);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
    }

    .nav-menu.active { right: 0; }
    .nav-list { flex-direction: column; align-items: center; gap: 24px; margin-bottom: 32px; }
    .nav-link { font-size: 1.15rem; }
    .nav-mobile-cta { display: block; width: 100%; }

    .rooms-grid, .why-us-grid, .experiences-grid, .testimonials-grid, .highlights-grid, .contact-grid, .location-grid { grid-template-columns: 1fr; gap: 24px; }
    .gallery-grid { column-count: 2; }
    .form-row { grid-template-columns: 1fr; gap: 12px; }
    .contact-info-card, .contact-form-wrapper, .map-card { padding: 28px 24px; }
    .info-header h3 { font-size: 1.5rem !important; }
    .editorial-grid { grid-template-columns: 1fr; }
    .edit-card-2 { margin-top: 0; }
    .cta-title { font-size: 2.0rem; }

    /* Image Composition & Glass Card Mobile Top Alignment */
    .image-composition { padding-right: 24px; padding-bottom: 24px; }
    .main-img { height: 320px; }
    .sec-img { height: 180px; }
    .secondary-image-wrapper { width: 50%; border-width: 4px; }
    .image-glass-card {
        top: 14px;
        left: 14px;
        bottom: auto;
        padding: 8px 14px;
        font-size: 0.8rem;
        z-index: 5;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .slider-arrow { display: none; }
    .slider-dots { right: 50%; transform: translateX(50%); bottom: 20px; }

    .mobile-sticky-bar { display: flex; }
    .floating-whatsapp { bottom: 76px; right: 16px; width: 50px; height: 50px; font-size: 1.5rem; }

    .inner-hero { padding: 130px 0 60px 0; }
    .inner-hero-title { font-size: 2.2rem; line-height: 1.25; }

    /* Footer Mobile Adjustments */
    .footer-top { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    /* Modal Mobile Adjustments */
    .modal-backdrop { padding: 16px; }
    .modal-container { max-height: 92vh; border-radius: var(--radius-md); }
    .booking-modal-body { padding: 24px 20px; }
    .modal-header h3 { font-size: 1.5rem; }
    .modal-header p { font-size: 0.85rem; margin-bottom: 16px; }
    .room-modal-details { padding: 24px 20px; }
    .room-modal-details h2 { font-size: 1.75rem; }
    .room-modal-hero { height: 240px; }
    .room-modal-specs { flex-wrap: wrap; gap: 12px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section-title { font-size: 1.65rem; line-height: 1.3; }
    .hero-title { font-size: 1.75rem; }
    .inner-hero { padding: 110px 0 45px 0; }
    .inner-hero-title { font-size: 1.65rem; line-height: 1.25; }
    .hero-buttons { flex-direction: column; width: 100%; gap: 12px; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    .contact-info-card, .contact-form-wrapper, .map-card { padding: 20px 16px; }
    .info-header h3 { font-size: 1.35rem !important; }
    .contact-info-list li { gap: 10px; word-break: break-word; }
    .map-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .map-iframe-container iframe { height: 260px; }
    .gallery-grid { column-count: 1; }
    .footer-top { grid-template-columns: 1fr; }
    .nav-logo-only { height: 48px; }
    .navbar.scrolled .nav-logo-only { height: 40px; }
}
