/* Base & CSS Variables */
:root {
    /* Modern Elegance Color Palette */
    --primary: #D4AF37;
    /* Rich Gold */
    --primary-hover: #b5952f;
    --background: #FAFAFA;
    /* Soft Pearl White */
    --surface: #FFFFFF;
    /* Pure White for cards */
    --surface-light: #F0F0F0;
    --text-primary: #111111;
    /* Deep Charcoal */
    --text-secondary: #555555;
    /* Medium Gray */
    --accent: #E8E2D6;
    /* Warm beige for subtle backgrounds */

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --container-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
    --background: #121212;
    --surface: #1E1E1E;
    --surface-light: #2A2A2A;
    --text-primary: #F5F5F5;
    --text-secondary: #B0B0B0;
    --accent: #2C2C2C;
    --border-color: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: clip;
    /* Modern way to prevent horizontal bleed without locking vertical scroll */
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.highlight {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    /* Sleek, slightly rounded edges */
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

.btn-outline:hover {
    background: var(--primary);
    color: #FFFFFF;
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Navigation - Enhanced Mobile Responsive */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: var(--surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.btn-register {
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    min-width: 40px;
    min-height: 40px;
}

.theme-toggle:hover {
    color: var(--primary);
    transform: rotate(15deg);
    background: rgba(212, 175, 55, 0.1);
}

[data-theme="dark"] .fa-moon {
    display: none;
}

[data-theme="light"] .fa-sun {
    display: none;
}

html:not([data-theme]) .fa-sun {
    display: none;
}

/* Default light */

.nav-links a:not(.btn) {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 8px;
    border-radius: 8px;
    min-width: 44px;
    min-height: 44px;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary);
}

.mobile-menu-btn.active {
    color: var(--primary);
    background: rgba(212, 175, 55, 0.15);
}

/* Mobile Navigation Responsive Breakpoints */
@media (max-width: 860px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .logo img {
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo img {
        max-height: 40px;
    }

    .logo {
        font-size: 1.2rem;
    }
}

/* Hero Section - Enhanced Mobile Responsive */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    /* Support for dynamic viewport height */
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 5rem;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05), transparent 40%),
        radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.03), transparent 40%),
        var(--background);
    overflow: hidden;
}

.hero-split-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 2rem;
    line-height: 1.1;
    color: var(--text-primary);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-media {
    position: relative;
}

/* Hero Mobile Responsive Breakpoints */
@media (max-width: 860px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 3rem;
    }

    .hero-split-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-text p {
        margin: 0 auto 3rem;
        font-size: 1.1rem;
    }

    .hero-actions {
        justify-content: center;
        gap: 1rem;
    }

    .hero-actions .btn {
        flex: 1;
        min-width: 140px;
    }

    .hero-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -15px;
        width: 90%;
        max-width: 280px;
    }

    .hero-logo-card {
        min-height: auto;
        padding-bottom: 2rem;
    }

    .hero-pills-row {
        margin: 1rem 0;
        gap: 0.4rem;
    }

    .hero-pill {
        padding: 0.35rem 0.7rem;
        font-size: 0.65rem;
    }
}

@media (max-width: 600px) {
    .hero {
        padding-top: 90px;
        padding-bottom: 2rem;
    }

    .hero-split-container {
        gap: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 375px) {
    .hero {
        padding-top: 80px;
    }

    .hero-split-container {
        gap: 1.5rem;
    }
}

/* Hero Logo Card - Premium Showcase */
.hero-logo-card {
    position: relative;
    border-radius: 20px;
    padding: 3rem 2rem 4rem;
    background: linear-gradient(145deg, #0d2318 0%, #10301f 40%, #0a1a10 70%, #071208 100%);
    box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
    min-height: 560px;
    justify-content: center;
    gap: 1.5rem;
}

/* Animated golden ambient glow */
.hero-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

/* Decorative ring around logo */
.hero-logo-ring {
    position: relative;
    z-index: 2;
    width: clamp(140px, 40vw, 280px);
    height: clamp(140px, 40vw, 280px);
    border-radius: 50%;
    padding: 10px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.05) 50%, rgba(212, 175, 55, 0.25));
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.2),
        0 0 40px rgba(212, 175, 55, 0.12),
        inset 0 0 20px rgba(212, 175, 55, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ringRotate 12s linear infinite;
}

@keyframes ringRotate {
    0% {
        box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.2), 0 0 40px rgba(212, 175, 55, 0.12), inset 0 0 20px rgba(212, 175, 55, 0.05);
    }

    50% {
        box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.45), 0 0 60px rgba(212, 175, 55, 0.25), inset 0 0 30px rgba(212, 175, 55, 0.08);
    }

    100% {
        box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.2), 0 0 40px rgba(212, 175, 55, 0.12), inset 0 0 20px rgba(212, 175, 55, 0.05);
    }
}

.hero-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.25));
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-logo-card:hover .hero-logo-img {
    transform: scale(1.04);
}

/* Tagline bar below logo */
.hero-logo-tagline {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    justify-content: center;
}

.tagline-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4));
    max-width: 60px;
}

.tagline-line:last-child {
    background: linear-gradient(270deg, transparent, rgba(212, 175, 55, 0.4));
}

.tagline-text {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.85);
    white-space: nowrap;
}

/* Badge repositioned for logo card */
.hero-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--surface);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(212, 175, 55, 0.25);
    z-index: 5;
    white-space: nowrap;
}

.hero-badge i {
    font-size: 1.6rem;
    color: var(--primary);
}

.hero-badge strong {
    display: block;
    font-size: 1rem;
}

.hero-badge span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* About Section */
.about {
    padding: 8rem 0;
    background-color: var(--background);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* Reduced image size by making text column wider */
    gap: 4rem;
    align-items: flex-start;
    /* Changed from center to move content up */
}

/* About Section Stats Handling */
.stats {
    grid-column: 1;
    /* Default to first column on desktop */
    display: flex;
    gap: 3rem;
    margin-top: 0.5rem;
    /* Further reduced margin to sit closer to text */
}

@media (max-width: 1024px) {
    .stats {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1.3fr 0.7fr !important;
        /* Reduced image column even further for tablets */
        gap: 0.8rem !important;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

    .about-text h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .about-text p {
        font-size: 0.75rem !important;
        margin-bottom: 0.8rem !important;
        line-height: 1.3 !important;
    }

    .image-wrapper {
        margin-top: 0;
    }

    /* Stats stacked below the photo in the 2nd column */
    .stats {
        grid-column: 2 !important;
        grid-row: 2 !important;
        /* Place in 2nd row, below photo */
        display: flex !important;
        flex-direction: column !important;
        gap: 1.2rem !important;
        margin-top: 1.5rem !important;
        padding-top: 0 !important;
        border: none !important;
        text-align: center;
    }

    /* Ensure image is in 1st row of 2nd column too */
    .about-image {
        grid-column: 2 !important;
        grid-row: 1 !important;
    }

    /* Text spans both rows in its column */
    .about-text {
        grid-column: 1 !important;
        grid-row: 1 / span 2 !important;
    }

    .stat-item {
        padding: 0 !important;
    }

    .stat-item h3 {
        font-size: 1.6rem !important;
        /* Slightly adjusted for better fit */
        margin-bottom: 0 !important;
        line-height: 1;
        color: var(--primary);
        font-weight: 800;
    }

    .stat-item span {
        font-size: 0.65rem !important;
        font-weight: 700;
        text-transform: uppercase;
        display: block;
        line-height: 1.1;
        color: var(--text-secondary);
        letter-spacing: 0.5px;
    }

    /* Smaller badge for cramped 2nd column */
    .experience-badge {
        padding: 0.5rem 0.7rem !important;
        transform: translate(5px, -10px) !important;
        border-radius: 4px !important;
        bottom: -10px !important;
        left: -10px !important;
    }

    .experience-badge i {
        font-size: 0.85rem !important;
    }

    .experience-badge span {
        font-size: 0.5rem !important;
    }
}

.about-text h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    /* Prevent crushing on small-medium screens */
}

@media (max-width: 480px) {
    .stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.stat-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--surface);
    padding: 1.5rem 2rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--surface-light);
    transform: translate(40px, -40px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge i {
    font-size: 2rem;
    color: var(--primary);
}

.experience-badge span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
}

/* Amenities Section - Enhanced Grid Responsiveness */
.amenities {
    padding: 8rem 0;
    background-color: var(--surface-light);
    position: relative;
}

.amenities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

/* Amenities Grid Responsive Breakpoints */
@media (max-width: 600px) {
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .amenity-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (min-width: 601px) and (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.amenity-card {
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.amenity-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

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

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.amenity-card:hover .icon-box {
    background: var(--primary);
}

.icon-box i {
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.amenity-card:hover .icon-box i {
    color: #FFFFFF;
    transform: scale(1.1);
}

.amenity-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

/* Services Showcase Section - Enhanced Grid Responsiveness */
.services-showcase {
    padding: 8rem 0;
    background-color: var(--background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

/* Services Grid Responsive Breakpoints */
@media (max-width: 860px) {
    .services-grid {
        gap: 2rem;
        grid-template-columns: 1fr;
    }

    .service-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (min-width: 861px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.service-card {
    background: var(--surface);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 350px;
    background-color: var(--surface-light);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 3rem 2rem;
    text-align: center;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Gallery Section - Enhanced Grid Responsiveness */
.gallery {
    padding: 8rem 0;
    background-color: var(--surface-light);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--text-secondary);
    color: var(--text-secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 500;
    transition: var(--transition);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Gallery Grid Responsive Breakpoints */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.gallery-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: var(--surface);
    cursor: pointer;
}

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

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

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

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

.gallery-overlay i {
    color: #FFFFFF;
    font-size: 2rem;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
}

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

/* Footer Section (Kept Dark for Contrast) */
.footer {
    background-color: #111111;
    color: #FFFFFF;
    padding: 6rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 1.5rem 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-contact h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-contact i {
    color: var(--primary);
    margin-top: 0.3rem;
}


.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design - Enhanced Mobile-First Approach */

/* Extra Small Devices (320px and up) */
@media (max-width: 375px) {
    .container {
        padding: 0 1rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-logo-ring {
        width: 150px;
        height: 150px;
    }

    .hero-pills-row {
        gap: 0.3rem;
    }

    .hero-pill {
        padding: 0.3rem 0.6rem;
        font-size: 0.6rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-header h2,
    .about-text h2 {
        font-size: 1.6rem;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .hero-badge {
        width: 95%;
        max-width: 240px;
        padding: 0.8rem 1rem;
    }

    .hero-badge strong {
        font-size: 0.8rem;
    }

    .hero-badge span {
        font-size: 0.7rem;
    }
}

/* Small Devices (376px - 480px) */
@media (min-width: 376px) and (max-width: 480px) {
    .container {
        padding: 0 1.2rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-logo-ring {
        width: 170px;
        height: 170px;
    }

    .section-header h2,
    .about-text h2 {
        font-size: 1.7rem;
    }

    .stat-item h3 {
        font-size: 1.6rem;
    }
}

/* Medium Small Devices (481px - 600px) */
@media (min-width: 481px) and (max-width: 600px) {
    .hero-text h1 {
        font-size: 2.3rem;
    }

    .hero-logo-ring {
        width: 200px;
        height: 200px;
    }

    .section-header h2,
    .about-text h2 {
        font-size: 2rem;
    }

    .stats {
        gap: 2rem;
    }
}

/* Medium Devices (601px - 768px) - Tablets */
@media (min-width: 601px) and (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-logo-ring {
        width: 220px;
        height: 220px;
    }

    .services-grid,
    .amenities-grid,
    .attractions-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

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

/* Small Mobile Devices (0px - 480px) */
@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand p {
        margin: 1rem auto;
    }

    .footer-contact li {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        /* Stack address parts if still too narrow */
        gap: 0.5rem;
    }

    .footer-contact i {
        margin-right: 0;
    }
}

/* Large Devices (769px - 860px) */
@media (min-width: 769px) and (max-width: 860px) {

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

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

/* Extra Large Devices (1025px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }

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

/* Ultra Wide Devices (1201px and up) */
@media (min-width: 1201px) {
    .container {
        max-width: 1400px;
    }

    .hero-text h1 {
        font-size: clamp(3rem, 6vw, 5.5rem);
    }
}

/* High DPI/Retina Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .hero-logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 860px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 2rem;
    }

    .hero-logo-card {
        min-height: 400px;
        padding: 2rem 1.5rem 3rem;
    }

    .section {
        padding: 4rem 0;
    }
}

/* Touch-Friendly Interactions and Gestures */

/* Enhanced Touch Targets */
.btn,
.filter-btn,
.theme-toggle,
.mobile-menu-btn {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
}

.gallery-item,
.service-card,
.amenity-card,
.review-card,
.attraction-card {
    touch-action: manipulation;
    cursor: pointer;
}

/* Touch Feedback */
@media (hover: none) and (pointer: coarse) {

    .btn:active,
    .filter-btn:active,
    .theme-toggle:active,
    .mobile-menu-btn:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }

    .gallery-item:active,
    .service-card:active,
    .amenity-card:active,
    .review-card:active,
    .attraction-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    /* Remove hover effects on touch devices */
    .btn:hover,
    .filter-btn:hover,
    .theme-toggle:hover,
    .mobile-menu-btn:hover {
        transform: none;
    }

    .gallery-item:hover,
    .service-card:hover,
    .amenity-card:hover,
    .review-card:hover,
    .attraction-card:hover {
        transform: none;
    }
}

/* Swipe Gestures for Gallery */
@media (hover: none) and (pointer: coarse) {
    .gallery-grid {
        scroll-snap-type: x mandatory;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .gallery-item {
        scroll-snap-align: center;
        flex: 0 0 auto;
    }
}

/* Smooth Scrolling for Mobile */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.8rem;
    }

    .logo img {
        height: 45px;
    }

    .btn-register {
        padding: 0.35rem 0.7rem;
        font-size: 0.8rem;
        margin-left: 0.5rem !important;
    }

    .nav-left {
        gap: 0.6rem;
    }

    /* Reduce gaps on small screens */
    .hero-text h1 {
        margin-bottom: 0.5rem;
    }

    .hero-text p {
        margin-bottom: 1.5rem !important;
    }

    .hero-split-container {
        gap: 1.5rem !important;
    }

    .hero-actions {
        margin-bottom: 0;
    }
}

/* Enhanced Mobile Menu Interactions */
.nav-links.active {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.nav-links.active a {
    padding: 1rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
}

.nav-links.active a:last-child {
    border-bottom: none;
}

/* Touch-Optimized Form Elements */
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    min-height: 44px;
    font-size: 16px;
    /* Prevents zoom on iOS */
    touch-action: manipulation;
}

/* Safe Area Support for Notched Devices */
@supports (padding: max(0px)) {
    .sticky-mobile-bar {
        padding-left: max(0.5rem, env(safe-area-inset-left));
        padding-right: max(0.5rem, env(safe-area-inset-right));
    }

    .navbar {
        padding-left: max(0.5rem, env(safe-area-inset-left));
        padding-right: max(0.5rem, env(safe-area-inset-right));
    }
}

/* Haptic Feedback Support */
@media (hover: none) and (pointer: coarse) {

    .btn,
    .filter-btn,
    .theme-toggle,
    .mobile-menu-btn {
        -webkit-tap-highlight-color: rgba(212, 175, 55, 0.3);
    }
}

/* Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-logo-glow,
    .hero-pills-row .hero-pill {
        animation: none !important;
    }
}

/* Dark Mode Media Query Support */
@media (prefers-color-scheme: dark) {
    html:not([data-theme]) {
        --background: #121212;
        --surface: #1E1E1E;
        --surface-light: #2A2A2A;
        --text-primary: #F5F5F5;
        --text-secondary: #B0B0B0;
        --accent: #2C2C2C;
        --border-color: rgba(255, 255, 255, 0.1);
    }
}

/* Additional Mobile Optimizations */

/* Performance Optimizations for Mobile */
@media (max-width: 860px) {

    /* Reduce animation complexity on mobile */
    .hero-logo-glow {
        animation: pulseGlow 4s ease-in-out infinite;
    }

    .hero-pills-row .hero-pill {
        animation: none;
        opacity: 0.9;
    }

    /* Optimize images for mobile */
    img {
        image-rendering: -webkit-optimize-contrast;
    }

    /* Reduce box shadows for performance */
    .service-card,
    .amenity-card,
    .review-card,
    .attraction-card {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }
}

/* Viewport Meta Tag Support */
@viewport {
    width: device-width;
    zoom: 1.0;
}

/* iOS Safari Specific Fixes */
@supports (-webkit-touch-callout: none) {
    .navbar {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    /* Fix iOS scrolling momentum */
    .nav-links.active {
        -webkit-overflow-scrolling: touch;
    }
}

/* Android Chrome Specific Fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {

    input:focus,
    textarea:focus,
    select:focus {
        outline: 2px solid var(--primary);
        outline-offset: 2px;
    }
}

/* Small Screen Height Optimizations */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 80px;
        padding-bottom: 1rem;
    }

    .hero-split-container {
        gap: 1rem;
    }

    .hero-logo-card {
        min-height: 300px;
        padding: 1.5rem 1rem 2rem;
    }

    .section {
        padding: 3rem 0;
    }
}

/* Ultra-Wide Mobile Screens */
@media (min-width: 375px) and (max-width: 428px) and (orientation: portrait) {
    .container {
        padding: 0 1.2rem;
    }

    .hero-text h1 {
        font-size: 2.1rem;
    }

    .hero-logo-ring {
        width: 190px;
        height: 190px;
    }
}

/* Foldable Phone Support */
@media (min-width: 768px) and (max-width: 860px) and (orientation: portrait) {
    .hero-split-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

/* High Refresh Rate Display Support */
@media (min-resolution: 120dpi) {
    * {
        transition-duration: 0.3s;
    }
}

/* Mobile Nav Menu Active State */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    background: var(--surface);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--border-color);
    gap: 1.5rem;
    text-align: center;
}

.nav-links.active .nav-actions {
    flex-direction: column;
    width: 100%;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.nav-links.active .btn {
    width: 100%;
}

/* Modal Styling */
.modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(5px);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal.hide {
    opacity: 0;
    visibility: hidden;
}

.modal-content {
    background-color: var(--surface-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    width: 90%;
    position: relative;
    text-align: center;
    transform: translateY(0);
    transition: transform 0.4s ease;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.modal.hide .modal-content {
    transform: translateY(30px);
}

.modal-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.modal-content h2 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary);
}

/* Reviews / Testimonials Section - Enhanced Grid Responsiveness */
.reviews {
    padding: 8rem 0;
    background-color: var(--background);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Reviews Grid Responsive Breakpoints */
@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (min-width: 601px) and (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.review-card {
    background: var(--surface);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.stars {
    color: #FFB800;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
}

.reviewer-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Attractions Section - Enhanced Grid Responsiveness */
.attractions {
    padding: 8rem 0;
    background-color: var(--surface-light);
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

/* Attractions Grid Responsive Breakpoints */
@media (max-width: 600px) {
    .attractions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .attraction-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (min-width: 601px) and (max-width: 768px) {
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.2rem;
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

.attraction-card {
    background: var(--surface);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.attraction-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.attraction-content {
    padding: 2rem;
}

.attraction-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.attraction-content h3 a:hover {
    color: var(--primary);
}

.attraction-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.distance {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(212, 175, 55, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 50px;
}

.btn-video {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #FFFFFF;
    background: var(--primary);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

.btn-video:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
    color: #FFFFFF;
}

.btn-video i {
    font-size: 0.75rem;
}

/* Map Container */
.map-container {
    width: 100%;
    height: 400px;
    background: #E5E3DF;
    margin-top: -6rem;
    /* Offset footer padding */
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(15%) contrast(1.1);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #1EBE5D;
    transform: scale(1.1);
    color: #FFF;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    background: linear-gradient(90deg, #0d2318 0%, #10301f 50%, #0d2318 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.55rem 3rem 0.55rem 0;
    overflow: hidden;
    position: relative;
    z-index: 1001;
    display: flex;
    align-items: center;
}

.announcement-bar.hidden {
    display: none;
}

.announcement-track {
    display: flex;
    white-space: nowrap;
    animation: scrollAnnouncement 30s linear infinite;
    gap: 0;
}

.announcement-track:hover {
    animation-play-state: paused;
}

.announcement-item {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(212, 175, 55, 0.9);
    letter-spacing: 0.5px;
    padding: 0 1.5rem;
    flex-shrink: 0;
}

.announcement-item i {
    margin-right: 0.4rem;
    color: var(--primary);
}

.announcement-item strong {
    color: #fff;
}

@keyframes scrollAnnouncement {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.announcement-close {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(212, 175, 55, 0.8);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: var(--transition);
    z-index: 10;
    flex-shrink: 0;
}

.announcement-close:hover {
    background: rgba(212, 175, 55, 0.25);
    color: #D4AF37;
}

/* Push navbar down when bar visible */
body:has(.announcement-bar:not(.hidden)) .navbar {
    top: 0;
}

/* ============================================
   GALLERY LIGHTBOX
   ============================================ */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(6px);
}

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

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#lightboxImg {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
    transform: scale(0.93);
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox-modal.open #lightboxImg {
    transform: scale(1);
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-align: center;
    letter-spacing: 0.5px;
}

/* High Quality Review Button Styling */
.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--primary);
    border-radius: 100px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
    width: fit-content;
}

@media (max-width: 480px) {
    .google-review-btn {
        margin: 1.5rem auto 0;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

.lightbox-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

.lightbox-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.gallery-item {
    cursor: zoom-in;
}

/* ============================================
   STAR RATING ANIMATION
   ============================================ */
.review-card .stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}

.review-card .stars i {
    color: #ccc;
    font-size: 1.1rem;
    transition: color 0.15s ease, transform 0.2s ease;
}

/* Stars animate in when card becomes active via JS */
.review-card.stars-animated .stars i {
    color: var(--primary);
}

.review-card.stars-animated .stars i:nth-child(1) {
    animation: starPop 0.4s ease 0.1s both;
}

.review-card.stars-animated .stars i:nth-child(2) {
    animation: starPop 0.4s ease 0.2s both;
}

.review-card.stars-animated .stars i:nth-child(3) {
    animation: starPop 0.4s ease 0.3s both;
}

.review-card.stars-animated .stars i:nth-child(4) {
    animation: starPop 0.4s ease 0.4s both;
}

.review-card.stars-animated .stars i:nth-child(5) {
    animation: starPop 0.4s ease 0.5s both;
}

@keyframes starPop {
    0% {
        color: #ccc;
        transform: scale(0.5) rotate(-20deg);
    }

    60% {
        color: var(--primary);
        transform: scale(1.35) rotate(5deg);
    }

    100% {
        color: var(--primary);
        transform: scale(1) rotate(0deg);
    }
}

/* Typing cursor for tagline */
#heroTagline::after {
    content: '|';
    color: rgba(212, 175, 55, 0.8);
    animation: blink 0.7s step-end infinite;
    margin-left: 2px;
}

#heroTagline.typing-done::after {
    display: none;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #D4AF37, #f0c84a, #D4AF37);
    background-size: 200% 100%;
    animation: shimmerBar 2s linear infinite;
    z-index: 9999;
    transition: width 0.05s linear;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

@keyframes shimmerBar {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ============================================
   HERO AMENITY PILLS (row below logo)
   ============================================ */
.hero-pills-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    position: relative;
    z-index: 3;
}

.hero-pill {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: rgba(212, 175, 55, 0.95);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    animation: floatPill 4s ease-in-out infinite;
}

.hero-pill:nth-child(1) {
    animation-duration: 4.0s;
    animation-delay: 0.0s;
}

.hero-pill:nth-child(2) {
    animation-duration: 4.5s;
    animation-delay: 0.6s;
}

.hero-pill:nth-child(3) {
    animation-duration: 3.8s;
    animation-delay: 1.2s;
}

.hero-pill:nth-child(4) {
    animation-duration: 4.2s;
    animation-delay: 0.3s;
}

.hero-pill span {
    font-size: 0.9rem;
}

@keyframes floatPill {

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

    50% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

/* ============================================
   GOOGLE REVIEW BUTTON
   ============================================ */
.btn-review {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: rgba(212, 175, 55, 0.9);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-review i {
    color: #D4AF37;
    font-size: 0.85rem;
}

.btn-review:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

/* ============================================
   STICKY MOBILE BOTTOM BAR
   ============================================ */
.sticky-mobile-bar {
    display: none;
}

@media (max-width: 860px) {
    .sticky-mobile-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--surface);
        border-top: 1px solid var(--border-color);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
        padding: 0.5rem 0.5rem calc(0.3rem + env(safe-area-inset-bottom));
        gap: 0.4rem;
    }

    .whatsapp-float {
        bottom: 85px !important;
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    .sticky-btn {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.2rem;
        padding: 0.4rem 0.3rem;
        border-radius: 8px;
        font-family: var(--font-heading);
        font-size: 0.65rem;
        font-weight: 600;
        letter-spacing: 0.3px;
        text-transform: uppercase;
        text-decoration: none;
        transition: var(--transition);
        cursor: pointer;
        border: none;
    }

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

    .sticky-call {
        background: rgba(212, 175, 55, 0.1);
        color: var(--primary);
        border: 1px solid rgba(212, 175, 55, 0.25);
    }

    .sticky-call:hover {
        background: rgba(212, 175, 55, 0.2);
    }

    .sticky-whatsapp {
        background: #25D366;
        color: #fff;
    }

    .sticky-whatsapp:hover {
        background: #1EBE5D;
    }

    .sticky-book {
        background: var(--primary);
        color: #fff;
    }

    .sticky-book:hover {
        background: var(--primary-hover);
    }

    /* Push content up so it's not hidden behind the sticky bar */
    body {
        padding-bottom: 60px;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-text {
        padding-top: 0;
    }

    .hero-logo-card {
        padding: 1.5rem 1rem 2rem;
    }
}

/* ============================================
   COUNTER ANIMATION
   ============================================ */
.stat-item h3 {
    transition: color 0.3s ease;
}

.stat-item h3.counting {
    color: var(--primary);
    animation: statPulse 0.3s ease;
}

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

    50% {
        transform: scale(1.08);
    }

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

/* ============================================
   TOUCH-FRIENDLY INTERACTIONS AND GESTURES
   ============================================ */

/* Enhanced Touch Targets */
.btn,
.filter-btn,
.theme-toggle,
.mobile-menu-btn {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
}

.gallery-item,
.service-card,
.amenity-card,
.review-card,
.attraction-card {
    touch-action: manipulation;
    cursor: pointer;
}

/* Touch Feedback */
@media (hover: none) and (pointer: coarse) {

    .btn:active,
    .filter-btn:active,
    .theme-toggle:active,
    .mobile-menu-btn:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }

    .gallery-item:active,
    .service-card:active,
    .amenity-card:active,
    .review-card:active,
    .attraction-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    /* Remove hover effects on touch devices */
    .btn:hover,
    .filter-btn:hover,
    .theme-toggle:hover,
    .mobile-menu-btn:hover {
        transform: none;
    }

    .gallery-item:hover,
    .service-card:hover,
    .amenity-card:hover,
    .review-card:hover,
    .attraction-card:hover {
        transform: none;
    }
}

/* Smooth Scrolling and Swipe Gestures */
@media (hover: none) and (pointer: coarse) {

    .nav-links.active,
    .modal-content {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    .gallery-grid {
        scroll-snap-type: x mandatory;
        overflow-x: auto;
        scroll-behavior: smooth;
    }

    .gallery-item {
        scroll-snap-align: center;
    }
}

/* ============================================
   ANDROID-SPECIFIC OPTIMIZATIONS
   ============================================ */

/* ---- Global Android Fixes ---- */
body {
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    word-break: break-word;
    /* Prevent text overflow on narrow Android screens */
    overscroll-behavior-y: contain;
    /* Prevent pull-to-refresh interfering with sticky elements */
}

/* Disable tap highlight on all interactive elements for Android Chrome */
a,
button,
.btn,
.filter-btn,
.gallery-item,
.service-card,
.amenity-card,
.review-card,
.attraction-card,
.sticky-btn,
.mobile-menu-btn,
.theme-toggle,
.close-modal {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
}

/* Input zoom prevention (Android Chrome zooms on focus if font < 16px) */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
    font-size: 16px !important;
    touch-action: manipulation;
}

/* ---- Android Navigation Bar (Software buttons) & Safe Areas ---- */
@media (max-width: 860px) {
    .sticky-mobile-bar {
        /* Software nav bar clearance for Android */
        padding-bottom: max(0.5rem, env(safe-area-inset-bottom, 8px)) !important;
        padding-left: max(0.5rem, env(safe-area-inset-left, 0px)) !important;
        padding-right: max(0.5rem, env(safe-area-inset-right, 0px)) !important;
    }

    body {
        /* Enough room for sticky bar + Android nav bar */
        padding-bottom: max(70px, calc(60px + env(safe-area-inset-bottom, 12px))) !important;
    }

    .navbar {
        padding-top: max(0.5rem, env(safe-area-inset-top, 0px)) !important;
    }
}

/* ---- Android landscape optimizations ---- */
@media (max-width: 860px) and (orientation: landscape) {

    .about,
    .services-showcase,
    .gallery,
    .amenities,
    .reviews,
    .attractions {
        padding: 2.5rem 0;
    }
}

/* ---- Input zoom prevention (Android Chrome zooms on focus if font < 16px) ---- */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
    font-size: 16px !important;
    touch-action: manipulation;
}

/* ---- Sticky bar icon size fix for small Android ---- */
@media (max-width: 360px) {
    .sticky-btn i {
        font-size: 1rem;
    }

    .sticky-btn span {
        font-size: 0.6rem;
    }
}