/* =========================================
   VARIABLES & THEME SETUP
   ========================================= */
:root {
    /* Light Theme (Default) */
    --primary-bg: #E2E8F0;
    --surface-bg: #ffffff;
    --text-main: #0F172A;
    --text-muted: #475569;
    --accent-gold: #F59E0B;
    --gradient-cinematic: linear-gradient(135deg, #4338ca 0%, #a855f7 50%, #4338ca 100%);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);

    /* Depth Layers */
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 50px -10px rgba(15, 23, 42, 0.15);

    /* Fluid Typography */
    --font-h1: clamp(2.5rem, 5vw + 1rem, 5rem);
    --font-h2: clamp(2rem, 4vw, 3.5rem);
    --font-body: clamp(1rem, 1.2vw, 1.125rem);
}

/* Dark Theme Overrides */
.dark-theme {
    --primary-bg: #0F172A;
    --surface-bg: #1E293B;
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --glass-bg: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 20px 50px -10px rgba(0, 0, 0, 0.6);
}

/* =========================================
   RESET & TYPOGRAPHY
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* html scroll-behavior removed for Lenis compatibility */

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

li {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 6rem 0;
}

/* =========================================
   SCROLL BAR & UTILITIES
   ========================================= */
.scroll-progress-container {
    position: fixed;
    top: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 9999;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--gradient-cinematic);
    width: 0%;
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-hover);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(-10deg);
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   NAVIGATION (GLASSMORPHISM)
   ========================================= */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 48px;
    width: auto;
    border-radius: 8px;
    /* Optional rounding */
    object-fit: contain;
}

.logo span {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.icon-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-main);
    cursor: pointer;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.theme-text {
    font-size: 0.9rem;
    font-weight: 500;
    font-family: inherit;
}

.icon-btn:hover {
    transform: scale(1.1);
}

.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--text-main);
    color: var(--primary-bg);
}

.btn-primary:hover {
    background: var(--accent-gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.btn-gradient {
    background: var(--gradient-cinematic);
    background-size: 200% 200%;
    color: white;
    animation: gradientShift 4s ease infinite;
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--text-main);
}

.dark-theme .btn-outline {
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: var(--text-main);
    color: var(--primary-bg) !important;
}

.dark-theme .btn-outline:hover {
    background: var(--text-main);
    color: var(--primary-bg) !important;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* =========================================
   HERO SECTION & CAROUSEL
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
    /* Contains background carousel */
}

/* Background Image Carousel */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 4s ease-in-out;
    transform: scale(1.05);
    /* Slight scale for luxury ken-burns effect */
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.8));
}

/* //added */
.mobile-book {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--gradient-cinematic);
    text-align: center;
    padding: 1rem;
    display: none;
}

@media (max-width:768px) {
    .mobile-book {
        display: block;
    }
}

.btn {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:active {
    transform: scale(0.96);
}

.btn-gradient:hover {
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.hero {
    background-attachment: fixed;
}

section {
    position: relative;
}

section::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--primary-bg));
}

/* //added */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    width: 90%;
    max-width: 1000px;
}

.hero-title {
    font-size: var(--font-h1);
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: inline-block;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    background: linear-gradient(135deg, #FDE047 0%, #F59E0B 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite;
}

.hero-subtitle {
    font-size: var(--font-body);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.5);
    /* Gold outline */
    color: var(--accent-gold);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.15);
    animation: float 4s ease-in-out infinite;
}

.discount-badge i {
    font-size: 1.2rem;
}

.booking-glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.booking-form {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
}

@media (max-width: 768px) {
    .form-row {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
}

.input-group {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group textarea {
    resize: vertical;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-main);
    font-family: inherit;
    font-size: 1.1rem;
    outline: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.dark-theme .input-group input,
.dark-theme .input-group select,
.dark-theme .input-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.8;
}

.input-group input:focus,
.input-group textarea:focus {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.dark-theme .input-group input:focus,
.dark-theme .input-group textarea:focus {
    background: rgba(255, 255, 255, 0.1);
}

/* =========================================
   FEATURED (ISOMETRIC HOVER CARDS)
   ========================================= */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-header h2 {
    font-size: var(--font-h2);
}

.section-header span {
    color: var(--accent-gold);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.iso-card {
    background: var(--surface-bg);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    cursor: pointer;
    border: 1px solid var(--glass-border);
}

.iso-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.price-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.price-tag span {
    font-size: 0.8rem;
    font-weight: 400;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.rating {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.rating i {
    color: var(--accent-gold);
}

.amenities-mini {
    display: flex;
    gap: 15px;
    color: var(--text-muted);
    font-size: 1.1rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
}

/* =========================================
   WHY CHOOSE US (BENTO GRID)
   ========================================= */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
}

.glass-panel {
    background: var(--surface-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease;
}

.glass-panel:hover {
    transform: translateY(-5px);
}

.icon-glow {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-cinematic);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: gradientShift 4s ease infinite;
}

.bento-large {
    grid-column: span 1;
    grid-row: span 2;
    background: var(--gradient-cinematic);
    background-size: 200% 200%;
    color: white;
    animation: gradientShift 6s ease infinite;
}

.bento-large .icon-glow {
    -webkit-text-fill-color: white;
}

.bento-large p {
    color: rgba(255, 255, 255, 0.8);
}

.bento-wide {
    grid-column: span 2;
}

/* =========================================
   WELCOME SECTION
   ========================================= */
.welcome-section {
    padding: 6rem 0;
    text-align: center;
    background: var(--surface-bg);
}

.sub-heading {
    color: #9A3B3B;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.welcome-section h2 {
    color: #1A4D2E;
    font-size: var(--font-h2);
    margin-bottom: 1.5rem;
    font-family: 'Times New Roman', Times, serif;
}

.welcome-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.fan-images {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    padding: 2rem 0;
}

.fan-img {
    width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    border: 4px solid #1A4D2E;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, z-index 0.4s ease;
    margin: 0 -40px;
    cursor: pointer;
}

.fan-1 {
    transform: rotate(-12deg);
    z-index: 1;
}

.fan-2 {
    transform: rotate(-4deg) translateY(20px);
    z-index: 2;
}

.fan-3 {
    transform: rotate(4deg) translateY(20px);
    z-index: 3;
}

.fan-4 {
    transform: rotate(12deg);
    z-index: 4;
}

.fan-img:hover {
    z-index: 10;
    transform: scale(1.1) rotate(0deg) translateY(0);
}

@media (max-width: 768px) {
    .fan-images {
        flex-direction: column;
        gap: 20px;
        margin-top: 2rem;
        margin-bottom: 2rem;
        align-items: center;
    }

    .fan-img {
        margin: 0;
        transform: rotate(0) !important;
        width: 90%;
        max-width: 350px;
        height: auto;
    }
}

/* =========================================
   HIGHLIGHTS SECTION
   ========================================= */
.highlights-section {
    padding: 6rem 0;
    position: relative;
    background-color: var(--primary-bg);
}

.highlights-header {
    text-align: center;
    margin-bottom: 4rem;
}

.highlights-header h2 {
    font-size: var(--font-h2);
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.highlights-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.highlight-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--surface-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.star-icon {
    font-size: 2rem;
    margin-top: 5px;
    background: var(--gradient-cinematic);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.highlight-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.highlight-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* =========================================
   CINEMATIC CTA
   ========================================= */
.cinematic-cta {
    background: var(--gradient-cinematic);
    padding: 8rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cinematic-cta h2 {
    font-size: var(--font-h1);
    margin-bottom: 1rem;
}

.btn-huge {
    margin-top: 2rem;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    background: #fff;
    color: #0F172A;
}

.btn-huge:hover {
    background: var(--accent-gold);
    color: #fff;
    transform: scale(1.05);
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background: var(--surface-bg);
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.grid-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 1rem 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-bg);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-gold);
    color: white;
    transform: translateY(-3px);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
}

.footer-links ul li a:hover {
    color: var(--accent-gold);
}

.newsletter-ui {
    display: flex;
    margin-top: 1rem;
    background: var(--primary-bg);
    border-radius: 50px;
    padding: 5px;
}

.newsletter-ui input {
    flex: 1;
    border: none;
    background: none;
    padding: 0 1rem;
    outline: none;
    color: var(--text-main);
}

.newsletter-ui button {
    background: var(--gradient-cinematic);
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-ui button:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================================
   RESPONSIVE (MEDIA QUERIES)
   ========================================= */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .bento-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .booking-form {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-gradient {
        margin-top: 10px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--surface-bg);
        flex-direction: column;
        justify-content: center;
        transition: left 0.4s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: block;
    }

    .nav-btn {
        display: none;
    }

    .grid-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large,
    .bento-wide {
        grid-column: span 1;
    }

    .hero-title {
        padding: 0.8rem 1.2rem;
    }
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--text-main);
    color: var(--primary-bg);
    border-color: var(--text-main);
}

/* Gallery section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.5rem;
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
}

.gallery-item {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    display: flex;
}

.gallery-item .card-image {
    width: 100%;
    flex: 1;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.gallery-item:hover .card-image {
    transform: scale(1.1);
}

.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--surface-bg);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--glass-border);
}

.rating-badge i {
    color: var(--accent-gold);
}

.rating-badge span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* Contact section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-item .icon-glow {
    font-size: 2rem;
    margin-bottom: 0;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.info-item p {
    color: var(--text-muted);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    min-height: 300px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--glass-border);
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .item-large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* FAQ Section */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    padding: 1.5rem 2rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--text-main);
}

.faq-question i {
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-top: 1rem;
    color: var(--text-muted);
}

.faq-item.active {
    background: var(--surface-bg);
    border-color: var(--accent-gold);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--text-main);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.hero-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
}

/* Testimonials */
.reviews-grid {
    display: flex;
    overflow-x: auto;
    /* scroll-snap-type: x mandatory; */ /* Disabled for smooth auto-scroll */
    gap: 2rem;
    padding: 2rem 1rem 4rem 1rem;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
    -webkit-overflow-scrolling: touch;
}

.reviews-grid::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.testimonial-card {
    flex: 0 0 400px;
    scroll-snap-align: center;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
    min-height: 320px;
}

.testimonial-card .stars i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-right: 4px;
}

.testimonial-card .quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.8;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--text-muted);
    margin-top: auto;
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 85%;
    }
}

/* Standalone Booking Section */
.booking-section {
    padding: 2rem 0;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.booking-text h2 {
    font-size: var(--font-h2);
    margin-bottom: 1rem;
}

.booking-text span {
    color: var(--accent-gold);
}

.booking-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.booking-perks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-perks li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.booking-perks li i {
    color: #10B981;
    /* Green check */
    font-size: 1.2rem;
}

.booking-form-standalone {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 1rem;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* =========================================
   KEYFRAME ANIMATIONS
   ========================================= */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================================
   LIGHTBOX GALLERY
   ========================================= */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Controls */
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.lightbox-zoom-in,
.lightbox-zoom-out {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-zoom-in:hover,
.lightbox-zoom-out:hover {
    background: var(--accent-gold);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10001;
}

.lightbox-zoom-in,
.lightbox-zoom-out {
    position: relative;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

/* =========================================
   PRELOADER
   ========================================= */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    overflow: hidden;
}

.preloader-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.preloader-logo span {
    color: var(--accent-gold);
}

.preloader-logo.show {
    opacity: 1;
    transform: translateY(0);
}

.preloader-progress {
    width: 0%;
    height: 2px;
    background: var(--gradient-cinematic);
    transition: width 0.1s linear;
}

.preloader-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--gradient-cinematic);
    z-index: 1;
    transition: height 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

body.loading {
    overflow: hidden !important;
}

/* =========================================
   CONTACT OVERRIDES
   ========================================= */
.directions-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 16px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.directions-link:hover {
    background: var(--gradient-cinematic);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-gold);
}

/* =========================================
   PROMOTIONAL POPUP
   ========================================= */
.promo-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.promo-popup.active {
    opacity: 1;
    pointer-events: all;
}

.promo-content {
    background: var(--surface-bg);
    width: 90%;
    max-width: 450px;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.promo-popup.active .promo-content {
    transform: translateY(0) scale(1);
}

.promo-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark-theme .promo-close {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

.promo-close:hover {
    background: #ef4444;
    color: white;
    transform: scale(1.1);
}

.promo-header {
    margin-bottom: 2rem;
}

.promo-header h3 {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
    font-family: 'Times New Roman', Times, serif;
}

.promo-header p {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.6;
}

.promo-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.promo-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1.1rem;
}

.promo-call-btn {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.promo-call-btn:hover {
    background: var(--accent-gold);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #1EBE55;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* =========================================
   COMPREHENSIVE MOBILE OPTIMIZATION
   ========================================= */
@media (max-width: 768px) {
    .container {
        padding: 4rem 0;
        /* Reduced from 6rem */
    }

    .highlights-section {
        padding: 4rem 0;
        /* Reduced from 6rem */
    }

    .highlight-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
        /* Reduced from 2.5rem */
    }

    .glass-panel {
        padding: 1.5rem;
        /* Reduced from 2.5rem */
    }

    .contact-wrapper {
        padding: 1.5rem;
        /* Reduced from 3rem */
        gap: 2rem;
    }

    .promo-content {
        padding: 1.5rem;
        /* Reduced from 2.5rem */
        width: 95%;
    }

    .promo-header h3 {
        font-size: 1.5rem;
    }

    .promo-header p {
        font-size: 0.95rem;
    }

    .promo-actions {
        gap: 0.8rem;
    }

    .promo-btn {
        padding: 0.8rem;
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
        padding: 0.8rem 1rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .gallery-filters {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }

    .booking-text {
        text-align: center;
    }
}