/* ============================================
   NISKALA ECO-LODGE — Main Stylesheet
   Theme: Black & Green (Peaceful & Luxurious)
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    /* Primary Colors */
    --black: #0a0a0a;
    --black-light: #141414;
    --black-medium: #1a1a1a;
    --black-soft: #222222;
    --black-muted: #2a2a2a;

    /* Greens */
    --green-deep: #0d3b1e;
    --green-dark: #145a32;
    --green-primary: #1a7a42;
    --green-medium: #27ae60;
    --green-light: #2ecc71;
    --green-pale: #a8e6cf;
    --green-glow: rgba(46, 204, 113, 0.15);
    --green-shimmer: rgba(46, 204, 113, 0.05);

    /* Accents */
    --gold: #c9a84c;
    --gold-light: #e6c97a;
    --cream: #f5f0e8;
    --white: #ffffff;
    --white-soft: rgba(255, 255, 255, 0.9);
    --white-muted: rgba(255, 255, 255, 0.6);
    --white-faint: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-heading: 'Cormorant Garamond', 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white-soft);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--green-primary);
    color: var(--white);
}

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

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

ul { list-style: none; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-accent { color: var(--green-light); }

/* ---- Logo Image Styles ---- */
.preloader-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 0 20px rgba(46, 204, 113, 0.3));
}

.nav-logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 50%;
    transition: var(--transition-fast);
    filter: drop-shadow(0 0 8px rgba(46, 204, 113, 0.2));
}

.nav-logo:hover .nav-logo-img {
    filter: drop-shadow(0 0 12px rgba(46, 204, 113, 0.4));
    transform: scale(1.05);
}

.hero-logo-wrapper {
    margin-bottom: 24px;
}

.hero-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin: 0 auto;
    border-radius: 50%;
    filter: drop-shadow(0 0 40px rgba(46, 204, 113, 0.25));
    animation: floatSlow 6s ease-in-out infinite;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 0 8px rgba(46, 204, 113, 0.2));
}

/* ---- Preloader ---- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.leaf-icon {
    font-size: 48px;
    animation: floatLeaf 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--green-light);
    margin: 16px 0;
    letter-spacing: 4px;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--black-soft);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--green-primary), var(--green-light));
    border-radius: 2px;
    animation: loadProgress 2s ease-in-out forwards;
}

@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes floatLeaf {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* ---- Particles ---- */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--green-light);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 15s linear infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) translateX(0); }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-10vh) translateX(100px); }
}

/* ---- Navigation ---- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    transition: var(--transition-smooth);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(46, 204, 113, 0.15);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
    margin-right: 60px;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.logo-sub {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--green-light);
    font-weight: 500;
}

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

.nav-link {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 6px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--green-light);
    text-shadow: 0 0 8px rgba(46, 204, 113, 0.3);
}

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

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
    margin-right: 8px;
    position: relative;
}

.lang-switcher i {
    color: var(--green-light);
    font-size: 13px;
    pointer-events: none;
}

.lang-switcher select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--white-faint);
    color: var(--white);
    padding: 6px 28px 6px 10px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    outline: none;
    transition: var(--transition-fast);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%232ecc71'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 10px;
    min-width: 120px;
}

.lang-switcher select:hover {
    border-color: var(--green-primary);
    background-color: rgba(26, 122, 66, 0.15);
}

.lang-switcher select:focus {
    border-color: var(--green-light);
    box-shadow: 0 0 0 2px rgba(46, 204, 113, 0.2);
}

.lang-switcher select option {
    background: var(--black-soft);
    color: var(--white);
    padding: 8px;
}

.nav-cta {
    background: linear-gradient(135deg, var(--green-primary), var(--green-medium));
    border: 1px solid var(--green-medium);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-fast);
    box-shadow: 0 2px 10px rgba(26, 122, 66, 0.3);
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--green-medium), var(--green-light));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(46, 204, 113, 0.4);
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-menu {
    text-align: center;
}

.mobile-nav-menu li {
    margin: 16px 0;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--white-muted);
    transition: var(--transition-fast);
}

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

.mobile-nav-link.cta {
    color: var(--green-light);
    font-size: 18px;
    font-family: var(--font-body);
    border: 1px solid var(--green-primary);
    padding: 12px 32px;
    border-radius: var(--radius-xl);
    display: inline-block;
    margin-top: 16px;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        url('../img/hero-bg.jpg')
        center/cover no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.1) 40%,
        rgba(10, 10, 10, 0.6) 80%,
        rgba(10, 10, 10, 1) 100%
    );
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center bottom,
        rgba(26, 122, 66, 0.15) 0%,
        transparent 60%
    );
}

/* Fireflies */
.firefly-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.firefly {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--green-pale);
    box-shadow: 0 0 6px 2px rgba(168, 230, 207, 0.6),
                0 0 20px 4px rgba(168, 230, 207, 0.2);
    animation: fireflyMove var(--duration) ease-in-out infinite;
    opacity: 0;
}

@keyframes fireflyMove {
    0% { opacity: 0; transform: translate(0, 0); }
    15% { opacity: 1; }
    50% { opacity: 0.6; transform: translate(var(--tx), var(--ty)); }
    85% { opacity: 1; }
    100% { opacity: 0; transform: translate(var(--tx2), var(--ty2)); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--white-faint);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--green-pale);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(56px, 10vw, 110px);
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-title span {
    display: block;
}

.hero-title-accent {
    color: var(--green-light);
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--white-muted);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-primary), var(--green-medium));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(26, 122, 66, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(46, 204, 113, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white-faint);
}

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

.btn-sm {
    padding: 10px 24px;
    font-size: 11px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--green-light);
    display: inline;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--green-light);
}

.stat-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--white-faint);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease 1.5s both;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--white-faint);
    border-radius: 12px;
    margin: 0 auto 8px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--green-light);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

.scroll-indicator span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white-muted);
}

/* ---- Section Styles ---- */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, var(--green-shimmer) 0%, transparent 50%),
                       radial-gradient(circle at 80% 20%, var(--green-shimmer) 0%, transparent 50%);
    pointer-events: none;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--green-light);
    margin-bottom: 16px;
}

.section-tag.light {
    color: var(--green-pale);
}

.section-tag i {
    font-size: 14px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.section-title.light {
    color: var(--white);
}

.section-desc {
    font-size: 16px;
    color: var(--white-muted);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* ---- About Section ---- */
.about {
    background: var(--black-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 6s ease;
}

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

.img-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--green-primary);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green-light);
}

.badge-year {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid var(--black-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.about-img-secondary img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.about-content { }

.about-text {
    font-size: 15px;
    color: var(--white-muted);
    margin-bottom: 16px;
    font-weight: 300;
    line-height: 1.8;
}

.about-text strong {
    color: var(--green-light);
    font-weight: 500;
}

.about-text em {
    color: var(--gold-light);
}

.about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--black-soft);
    border: 1px solid var(--white-faint);
    transition: var(--transition-fast);
}

.about-feature:hover {
    border-color: var(--green-primary);
    background: rgba(26, 122, 66, 0.08);
}

.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-deep), var(--green-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-light);
    font-size: 16px;
}

.about-feature h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.about-feature p {
    font-size: 13px;
    color: var(--white-muted);
    font-weight: 300;
}

/* ---- Accommodation Section ---- */
.accommodation {
    background: var(--black);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.room-card {
    background: var(--black-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--white-faint);
    transition: var(--transition-smooth);
}

.room-card:hover {
    transform: translateY(-8px);
    border-color: var(--green-primary);
    box-shadow: 0 20px 60px rgba(26, 122, 66, 0.15);
}

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

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}

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

.room-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    background: var(--green-primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-xl);
}

.room-badge.exclusive {
    background: var(--gold);
    color: var(--black);
}

.room-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

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

.room-content {
    padding: 24px;
}

.room-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green-light);
    font-weight: 600;
    margin-bottom: 4px;
}

.room-name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 10px;
}

.room-desc {
    font-size: 13px;
    color: var(--white-muted);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 16px;
}

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

.room-amenities span {
    font-size: 11px;
    color: var(--white-muted);
    background: var(--black-soft);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 4px;
}

.room-amenities span i {
    color: var(--green-light);
    font-size: 10px;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--white-faint);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--green-light);
}

.price-period {
    font-size: 12px;
    color: var(--white-muted);
}

.room-rating {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
}

.room-rating i {
    font-size: 12px;
    margin-right: 2px;
}

/* ---- Facilities Section ---- */
.facilities {
    background: var(--black-light);
}

.facility-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.facility-showcase.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.facility-showcase.reverse .facility-visual {
    order: 2;
}

.facility-showcase.reverse .facility-info {
    order: 1;
}

.facility-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.facility-img-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 8s ease;
}

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

.facility-img-accent {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.4), transparent 50%);
}

.facility-number {
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 300;
    color: var(--green-primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -10px;
}

.facility-name {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 16px;
}

.facility-desc {
    font-size: 15px;
    color: var(--white-muted);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 24px;
}

.facility-desc em {
    color: var(--gold-light);
    font-style: italic;
}

.facility-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.facility-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--white-soft);
    font-weight: 300;
}

.facility-highlights li i {
    color: var(--green-light);
    font-size: 12px;
    width: 20px;
}

/* ---- Parallax Divider ---- */
.parallax-divider {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    inset: -50px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.75);
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 24px;
}

.parallax-content blockquote p {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 38px);
    font-style: italic;
    font-weight: 300;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 16px;
}

.parallax-content cite {
    font-size: 14px;
    color: var(--green-light);
    font-style: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ---- Tourism Activities ---- */
.tourism {
    background: var(--black);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.activity-card {
    background: var(--black-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--white-faint);
    transition: var(--transition-smooth);
    position: relative;
}

.activity-card:hover {
    transform: translateY(-6px);
    border-color: var(--green-primary);
    box-shadow: 0 16px 50px rgba(26, 122, 66, 0.12);
}

.activity-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-light);
    font-size: 18px;
    z-index: 2;
    border: 1px solid var(--white-faint);
}

.activity-image {
    height: 200px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}

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

.activity-content {
    padding: 24px;
}

.activity-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 10px;
}

.activity-content p {
    font-size: 13px;
    color: var(--white-muted);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 16px;
}

.activity-meta {
    display: flex;
    gap: 16px;
}

.activity-meta span {
    font-size: 12px;
    color: var(--green-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.activity-meta span i {
    font-size: 11px;
}

/* ---- Gallery Section ---- */
.gallery {
    background: var(--black-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--white-faint);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition-fast);
}

.gallery-item:hover {
    border-color: var(--green-primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.85), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: var(--transition-fast);
}

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

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--white);
    font-weight: 600;
    line-height: 1.2;
}

.gallery-tall,
.gallery-wide {
    grid-row: span 1;
    grid-column: span 1;
}

/* ---- Testimonials ---- */
.testimonials {
    background: var(--black);
}

.testimonial-slider {
    max-width: 800px;
    margin: 40px auto 0;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    text-align: center;
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 16px;
}

.testimonial-stars i {
    margin: 0 2px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-style: italic;
    font-weight: 300;
    color: var(--white-soft);
    line-height: 1.6;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-deep), var(--green-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--green-light);
}

.testimonial-author h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.testimonial-author span {
    font-size: 12px;
    color: var(--white-muted);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.testimonial-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--white-faint);
    background: transparent;
    color: var(--white-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    border-color: var(--green-primary);
    color: var(--green-light);
    background: rgba(26, 122, 66, 0.1);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white-faint);
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-dot.active {
    background: var(--green-light);
    width: 24px;
    border-radius: 4px;
}

/* ---- Booking Section ---- */
.booking {
    background: var(--black-light);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--black-medium);
    border: 1px solid var(--white-faint);
    border-radius: var(--radius-xl);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.booking-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(26, 122, 66, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.booking-info {
    position: relative;
    z-index: 1;
}

.booking-info p {
    font-size: 15px;
    color: var(--white-muted);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 32px;
}

.booking-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--white-muted);
}

.contact-item i {
    color: var(--green-light);
    font-size: 16px;
    width: 20px;
}

.booking-form-wrapper {
    position: relative;
    z-index: 1;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: var(--green-light);
    font-size: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--black-soft);
    border: 1px solid var(--white-faint);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-primary);
    box-shadow: 0 0 0 3px rgba(26, 122, 66, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group select option {
    background: var(--black-soft);
    color: var(--white);
}

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

/* ---- Contact Section ---- */
.contact {
    background: var(--black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--white-faint);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.map-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--black-light);
    color: var(--green-light);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    border-top: 1px solid var(--white-faint);
}

.map-link:hover {
    background: var(--green-primary);
    color: var(--white);
}

.map-link i {
    font-size: 12px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    padding: 24px;
    background: var(--black-light);
    border: 1px solid var(--white-faint);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.contact-card:hover {
    border-color: var(--green-primary);
    background: rgba(26, 122, 66, 0.05);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--green-deep), var(--green-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-light);
    font-size: 16px;
    margin-bottom: 12px;
}

.contact-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.contact-card p {
    font-size: 13px;
    color: var(--white-muted);
    font-weight: 300;
    line-height: 1.6;
}

/* ---- Footer ---- */
.footer {
    background: var(--black-medium);
    position: relative;
    padding-top: 80px;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    color: var(--black);
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--white-muted);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--white-faint);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-muted);
    transition: var(--transition-fast);
    font-size: 14px;
}

.footer-social a:hover {
    border-color: var(--green-primary);
    color: var(--green-light);
    background: rgba(26, 122, 66, 0.1);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: 13px;
    color: var(--white-muted);
    font-weight: 300;
    transition: var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--green-light);
    padding-left: 8px;
}

.footer-newsletter h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-newsletter p {
    font-size: 13px;
    color: var(--white-muted);
    font-weight: 300;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: var(--black-soft);
    border: 1px solid var(--white-faint);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    color: var(--white);
    font-size: 13px;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition-fast);
}

.newsletter-form input:focus {
    border-color: var(--green-primary);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    padding: 12px 18px;
    background: var(--green-primary);
    border: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--green-medium);
}

.footer-partners {
    border-top: 1px solid var(--white-faint);
    padding: 36px 0 24px;
    text-align: center;
}

.footer-partners h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--green-light);
    margin-bottom: 24px;
}

.partners-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.partner-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: var(--transition-fast);
    box-shadow: none;
}

.partner-item:hover {
    transform: translateY(-4px);
    box-shadow: none;
    border-color: transparent;
}

.partner-item img {
    max-height: 60px;
    max-width: 160px;
    object-fit: contain;
    transition: var(--transition-fast);
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.partner-item:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 0 16px rgba(46, 204, 113, 0.5));
}

.footer-bottom {
    border-top: 1px solid var(--white-faint);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--white-muted);
    font-weight: 300;
}

.btn-login-aria {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(26, 122, 66, 0.45), rgba(46, 204, 113, 0.2));
    border: 1px solid var(--green-light);
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.2);
}

.btn-login-aria:hover {
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: #fff;
    box-shadow: 0 0 25px rgba(46, 204, 113, 0.5);
    transform: translateY(-2px);
}

.btn-login-aria i {
    color: var(--green-light);
    font-size: 13px;
    transition: color 0.3s;
}

.btn-login-aria:hover i {
    color: #fff;
}

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green-primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(26, 122, 66, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-fast);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--green-medium);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46, 204, 113, 0.4);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .about-grid {
        gap: 40px;
    }

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

    .facility-showcase,
    .facility-showcase.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .facility-showcase.reverse .facility-visual,
    .facility-showcase.reverse .facility-info {
        order: unset;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
        padding: 40px;
    }

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

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

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .nav-menu,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .about-img-secondary {
        display: none;
    }

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

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-suffix {
        font-size: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .booking-wrapper {
        padding: 24px;
    }

    .facility-img-wrapper img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-tall {
        grid-row: span 1;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
}
