/* CSS Variables for Light & Dark Themes */
:root {
    --primary-font: 'Outfit', sans-serif;
    --heading-font: 'Playfair Display', serif;
    
    /* Light Theme Colors */
    --bg-color: #f8f9fa;
    --bg-light: #ffffff;
    --text-color: #2c3e50;
    --text-muted: #6c757d;
    --accent-gold: #d4af37;
    --accent-gold-hover: #b5952f;
    --border-color: rgba(0, 0, 0, 0.1);
    
    /* Glassmorphism settings */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

body.dark-mode {
    /* Dark Theme Colors */
    --bg-color: #121212;
    --bg-light: #1e1e1e;
    --text-color: #f5f6fa;
    --text-muted: #a4b0be;
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Dark Glassmorphism settings */
    --glass-bg: rgba(30, 30, 30, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    height: 100%;
}

body {
    font-family: var(--primary-font);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: background-color 0.4s ease, color 0.4s ease;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    position: relative;
    padding: 100px 0;
}

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

.text-gold {
    color: var(--accent-gold);
}

/* Glassmorphism Utility */
.glassmorphism {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    font-family: var(--primary-font);
}

.btn-primary {
    background-color: var(--accent-gold);
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

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

.btn-secondary:hover {
    background-color: var(--accent-gold);
    color: #ffffff !important;
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.icon-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 8px;
    border-radius: 50%;
}

.icon-btn:hover {
    color: var(--accent-gold);
    background: var(--border-color);
}

.icon-btn.sound-active {
    color: var(--accent-gold) !important;
    background: rgba(212, 175, 55, 0.2) !important;
    animation: soundPulse 1.8s infinite ease-in-out;
}

@keyframes soundPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5); }
    70% { transform: scale(1.08); box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    color: #fff;
}

.navbar .logo,
.navbar .nav-links li a,
.navbar .icon-btn {
    color: #fff;
}

.navbar.scrolled {
    padding: 10px 0;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-color);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links li a,
.navbar.scrolled .icon-btn {
    color: var(--text-color);
}

.nav-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.logo {
    font-family: var(--heading-font);
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.brand-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.35);
    transition: var(--transition);
    flex-shrink: 0;
}

.logo:hover .brand-logo-img {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.6);
}

.footer-logo .brand-logo-img {
    width: 54px;
    height: 54px;
}

.logo span {
    color: var(--accent-gold);
}

.logo i {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.4vw, 20px);
}

.nav-links li a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
    white-space: nowrap;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

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

.nav-links li a.active {
    color: var(--accent-gold) !important;
}

.btn-book-nav {
    background: var(--accent-gold);
    color: #fff !important;
    padding: 8px 18px;
    font-size: 0.92rem;
    border-radius: 20px;
    white-space: nowrap;
}

.btn-book-nav::after {
    display: none;
}

/* Page Header / Subpage Hero */
.page-hero {
    position: relative;
    padding: 160px 0 70px;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)), url('../images/gallery/hero.png') center/cover no-repeat;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-hero p {
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 15px;
    opacity: 0.9;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.12);
    padding: 6px 18px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

.breadcrumb a {
    color: #fff;
}

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

.breadcrumb span {
    color: var(--accent-gold);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 10s ease;
}

.hero:hover .hero-bg {
    transform: scale(1.05);
}

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

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    color: #fff;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.glass-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.glass-btn:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #ffffff !important;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.divider {
    height: 3px;
    width: 60px;
    background: var(--accent-gold);
    margin: 0 auto 20px;
    border-radius: 2px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.about-text p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Enhanced Feature Cards */
.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 28px 0 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border-radius: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    transform: translateX(8px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.feature-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: var(--accent-gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-box {
    background: var(--accent-gold);
    color: #fff;
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.feature-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-color);
    margin: 0;
}

.feature-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin: 0 !important;
}

.about-image-wrapper {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    display: block;
}

.stat-card {
    position: absolute;
    bottom: -15px;
    left: -15px;
    padding: 16px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: floatStatCard 4s ease-in-out infinite alternate;
}

@keyframes floatStatCard {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.stat-number {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: var(--heading-font);
    line-height: 1.1;
}

.stat-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Badge Gold */
.badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--accent-gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* About Photo Mosaic / Bento Gallery */
.about-mosaic-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 190px 190px;
    gap: 16px;
    position: relative;
    width: 100%;
}

.about-mosaic-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.about-mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

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

.about-mosaic-main {
    grid-row: span 2;
}

.about-mosaic-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(18, 18, 18, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.about-mosaic-badge i {
    color: var(--accent-gold);
}

/* Features 2x2 Grid */
.features-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 40px 0;
}

/* About Spotlight Banner */
.about-spotlight-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(0, 150, 136, 0.06));
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    border-radius: 22px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
}

.about-spotlight-content h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.about-spotlight-content p {
    font-size: 1.02rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .about-mosaic-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 240px 180px 180px;
    }
    .about-mosaic-main {
        grid-row: span 1;
    }
    .features-grid-2x2 {
        grid-template-columns: 1fr;
    }
    .about-spotlight-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}

/* Facilities */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.facility-card {
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-10px);
}

.facility-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.facility-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.facility-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.booking-options {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.option-card {
    background: var(--accent-gold);
    color: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    max-width: 400px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.option-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Pricing Showcase & Plans */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-bottom: 30px;
}

.pricing-card {
    padding: 40px 32px;
    border-radius: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--glass-border);
}

.pricing-card.featured-plan {
    border: 2px solid var(--accent-gold);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.18);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(212, 175, 55, 0.25);
}

.pricing-card-header {
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: var(--accent-gold);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.pricing-badge.popular-badge {
    background: linear-gradient(135deg, #d4af37 0%, #f39c12 100%);
}

.pricing-plan-name {
    font-size: 1.65rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.price-tag-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 10px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.price-amount {
    font-family: var(--heading-font);
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-gold);
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.price-bb-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 16px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px dashed var(--accent-gold);
    color: var(--accent-gold);
    font-weight: 600;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.pricing-plan-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 10px;
}

.pricing-list {
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.98rem;
    color: var(--text-color);
    line-height: 1.5;
}

.pricing-list li i {
    color: var(--accent-gold);
    margin-top: 4px;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.pricing-card-footer {
    text-align: center;
    margin-top: auto;
}

/* Dining Section */
.dining {
    position: relative;
}

.dining-intro-card {
    padding: 35px 30px;
    margin-bottom: 45px;
    text-align: center;
    border-radius: 20px;
}

.dining-intro-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-color);
}

.dining-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.dining-card {
    padding: 40px 30px;
    text-align: center;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dining-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.18);
}

.dining-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.dining-card h3 {
    margin-bottom: 15px;
    font-size: 1.35rem;
}

.dining-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Perks / Special Welcome Section */
.perks-section {
    position: relative;
    overflow: hidden;
}

.perks-tagline {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    font-style: italic;
    color: var(--accent-gold);
    margin-top: -30px;
    margin-bottom: 45px;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.perk-card {
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.perk-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 35px rgba(212, 175, 55, 0.22);
}

.perk-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 25px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.perk-icon {
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.perk-card h3 {
    font-size: 1.45rem;
    margin-bottom: 15px;
}

.perk-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Experience / Read, Write & Relax Section */
.experience-section {
    position: relative;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.experience-card {
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 35px rgba(212, 175, 55, 0.18);
}

.experience-icon {
    font-size: 3.2rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.experience-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.experience-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.experience-quote-card {
    padding: 30px 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.06);
    max-width: 900px;
    margin: 0 auto;
}

.experience-quote-card .quote-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.experience-quote-card .quote-text {
    font-family: var(--heading-font);
    font-size: 1.35rem;
    font-weight: 600;
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    height: 350px;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: #fff;
    font-size: 2rem;
}

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

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

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
}

/* Custom Alert Modal */
.custom-alert-content {
    background: var(--glass-bg);
    padding: 30px 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
}

.lightbox.active .custom-alert-content {
    transform: scale(1);
    opacity: 1;
}

.alert-icon {
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.alert-icon.success { color: #2ecc71; }
.alert-icon.error { color: #e74c3c; }
.alert-icon.warning { color: #f39c12; }

#custom-alert-title {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

#custom-alert-message {
    color: var(--text-muted);
    margin-bottom: 25px;
}

#custom-alert-close {
    width: 100%;
}

/* Booking Section */
.booking-section {
    position: relative;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(212, 175, 55, 0.3);
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(0, 150, 136, 0.1);
    bottom: -150px;
    right: -100px;
}

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

.calendar-container, .form-container {
    padding: 30px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-legend {
    display: flex;
    gap: 12px 18px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    flex-wrap: wrap;
    align-items: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.color-box {
    width: 15px;
    height: 15px;
    border-radius: 3px;
}

.color-box.available { background: var(--bg-light); border: 1px solid var(--border-color); }
.color-box.partial { background: #ff9800; }
.color-box.pending { background: #a855f7; }
.color-box.booked { background: #ff6b6b; }
.color-box.selected { background: var(--accent-gold); }

.calendar-table {
    width: 100%;
    border-collapse: collapse;
}

.calendar-table th {
    padding: 10px;
    color: var(--text-muted);
    font-weight: 500;
}

.calendar-table td {
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 8px;
    position: relative;
}

.calendar-table td.empty {
    cursor: default;
}

.calendar-table td:not(.empty):not(.booked):not(.pending-booked):hover {
    background: rgba(212, 175, 55, 0.2);
}

.calendar-table td.partial-booked {
    background: rgba(255, 152, 0, 0.22) !important;
    color: #ff9800 !important;
    border: 1px dashed #ff9800 !important;
    font-weight: 700;
}

.calendar-table td.partial-booked:hover {
    background: rgba(255, 152, 0, 0.38) !important;
    transform: scale(1.05);
}

.calendar-table td.pending-booked {
    background: rgba(168, 85, 247, 0.22) !important;
    color: #a855f7 !important;
    border: 1px dashed #a855f7 !important;
    cursor: not-allowed;
    text-decoration: line-through;
    font-weight: 600;
}

body.dark-mode .calendar-table td.pending-booked {
    background: rgba(168, 85, 247, 0.28) !important;
    color: #c084fc !important;
    border-color: #a855f7 !important;
}

.calendar-table td.booked {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    cursor: not-allowed;
    text-decoration: line-through;
}

.calendar-table td.selected {
    background: var(--accent-gold) !important;
    color: #fff !important;
    font-weight: bold;
    border-style: solid !important;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-light);
    color: var(--text-color);
    font-family: var(--primary-font);
    font-size: 1rem;
    outline: none;
    transition: border 0.3s;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--accent-gold);
}

/* Terms Checkbox in Booking Form */
.terms-checkbox-group {
    margin-top: 15px;
    margin-bottom: 22px;
}

.terms-label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.88rem !important;
    color: var(--text-muted);
    line-height: 1.45;
    font-weight: 400 !important;
    user-select: none;
}

.terms-label input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    margin-top: 2px;
    accent-color: var(--accent-gold);
    cursor: pointer;
    flex-shrink: 0;
}

.terms-label .terms-link {
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: underline;
    transition: var(--transition);
}

.terms-label .terms-link:hover {
    color: var(--text-color);
}

.w-100 {
    width: 100%;
}

/* Dynamic Price Summary Card */
.price-summary-card {
    background: rgba(212, 175, 55, 0.1);
    border: 1.5px solid var(--accent-gold);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 22px;
    transition: all 0.3s ease;
    animation: fadeInPrice 0.35s ease forwards;
}

@keyframes fadeInPrice {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.price-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.price-summary-header i {
    color: var(--accent-gold);
    margin-right: 6px;
}

.price-summary-badge {
    padding: 4px 12px;
    background: var(--accent-gold);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-calc-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.price-highlight {
    font-family: var(--heading-font);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.price-inclusions-text {
    font-size: 0.86rem;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 6px;
    border-top: 1px dashed rgba(212, 175, 55, 0.35);
    padding-top: 10px;
    margin-top: 6px;
    line-height: 1.4;
}

body.dark-mode .price-summary-card {
    background: rgba(212, 175, 55, 0.08);
}

/* Footer */
.footer {
    margin-top: auto;
    background: var(--bg-light);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

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

.footer-logo {
    margin-bottom: 20px;
}

.footer-info p {
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-brand-desc {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-sub-tagline {
    color: var(--accent-gold) !important;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px !important;
}

/* Footer Section Headings */
.footer-links h3, .footer-contact h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--text-color);
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 38px;
    height: 2.5px;
    background: var(--accent-gold);
    border-radius: 2px;
}

/* Footer Quick Links */
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 450;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    padding: 2px 0;
}

.footer-links li a::before {
    content: '\f105'; /* FontAwesome chevron-right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.78rem;
    color: var(--accent-gold);
    transition: transform 0.25s ease;
}

.footer-links li a:hover {
    color: var(--accent-gold);
    transform: translateX(6px);
}

.footer-links li a:hover::before {
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-gold);
    color: #fff;
    transform: translateY(-3px);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.contact-list i {
    color: var(--accent-gold);
    margin-top: 5px;
}

.map-container {
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-powered-by {
    margin-top: 8px;
    font-size: 0.86rem;
    color: var(--text-muted);
}

.footer-powered-by a {
    color: var(--accent-gold);
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-powered-by a:hover {
    color: var(--text-color);
    text-decoration: underline;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-links {
        gap: 12px;
    }
    .nav-links li a {
        font-size: 0.88rem;
    }
    .btn-book-nav {
        padding: 7px 14px;
        font-size: 0.88rem;
    }
    .logo {
        font-size: 1.4rem;
    }
}

@media (max-width: 1050px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        width: 80%;
        max-width: 340px;
        height: 100vh;
        background: var(--glass-bg);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
        border-left: 1px solid var(--glass-border);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        z-index: 1001;
        gap: 22px;
        visibility: hidden;
        pointer-events: none;
    }
    
    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }
    
    .hamburger {
        display: block;
        z-index: 1002;
    }
}

@media (max-width: 992px) {
    .hero-title { font-size: 2.8rem; }
    .about-grid { grid-template-columns: 1fr; gap: 35px; }
    .about-image-wrapper { order: -1; }
    .booking-wrapper { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    .section-header {
        margin-bottom: 35px;
    }
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    .divider {
        margin: 0 auto 15px;
    }
    .container {
        padding: 0 16px;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 500px;
        padding: 90px 0 40px;
    }
    .hero-title {
        font-size: 2.1rem;
        line-height: 1.25;
        margin-bottom: 15px;
    }
    .hero-subtitle {
        font-size: 0.98rem;
        line-height: 1.6;
        margin-bottom: 25px;
        padding: 0 5px;
    }
    .hero-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    .hero-cta .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    /* About Mobile */
    .about-text h3 {
        font-size: 1.45rem;
        margin-bottom: 15px;
    }
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 18px;
    }
    .feature-item {
        padding: 12px 14px;
        gap: 12px;
        border-radius: 14px;
    }
    .feature-icon-box {
        width: 38px;
        height: 38px;
        font-size: 1.05rem;
        border-radius: 10px;
    }
    .feature-title {
        font-size: 0.94rem;
    }
    .feature-desc {
        font-size: 0.86rem;
    }
    .stat-card {
        bottom: 10px;
        left: 10px;
        padding: 10px 16px;
    }
    .stat-number {
        font-size: 1.4rem;
    }
    .stat-text {
        font-size: 0.78rem;
    }

    /* Grids & Cards Mobile */
    .facilities-grid,
    .dining-grid,
    .perks-grid,
    .experience-grid,
    .gallery-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .facility-card,
    .dining-card,
    .perk-card,
    .experience-card,
    .pricing-card {
        padding: 28px 20px;
        border-radius: 18px;
    }
    
    .price-amount {
        font-size: 2.7rem;
    }
    .price-currency {
        font-size: 1.3rem;
    }
    .pricing-list li {
        font-size: 0.92rem;
        gap: 10px;
    }
    
    .dining-intro-card {
        padding: 22px 16px;
        margin-bottom: 25px;
    }
    .dining-intro-card p {
        font-size: 0.96rem;
    }
    
    .experience-quote-card {
        padding: 22px 16px;
    }
    .experience-quote-card .quote-text {
        font-size: 1.05rem;
        line-height: 1.5;
    }

    .gallery-item {
        height: 230px;
    }

    /* Booking Mobile */
    .calendar-container,
    .form-container {
        padding: 22px 16px;
        border-radius: 18px;
    }
    .calendar-header h3 {
        font-size: 1.15rem;
    }
    .calendar-legend {
        flex-wrap: wrap;
        gap: 8px 12px;
        font-size: 0.8rem;
    }
    .calendar-table th,
    .calendar-table td {
        padding: 6px 2px;
        font-size: 0.85rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Footer Mobile */
    .footer {
        padding: 50px 0 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .map-container {
        height: 180px;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.25rem;
        gap: 8px;
    }
    .brand-logo-img {
        width: 34px;
        height: 34px;
    }
    .nav-controls {
        gap: 8px;
    }
    .hero-title {
        font-size: 1.85rem;
    }
    .hero-subtitle {
        font-size: 0.92rem;
    }
    .pricing-card-header {
        padding-bottom: 18px;
        margin-bottom: 18px;
    }
    .pricing-plan-name {
        font-size: 1.35rem;
    }
}
