/* ============================================
   GRANT LUXURY CABANAS - PREMIUM STYLESHEET
   Production-Ready Luxury Design System
   ============================================ */

/* CSS Variables - Refined Luxury Palette */
:root {
    /* Primary Colors - Sophisticated Earth Tones */
    --primary-color: #8B7355;
    --primary-dark: #6A5642;
    --primary-light: #A89178;
    --primary-lighter: #C4B5A6;

    /* Accent Colors - Warm Gold */
    --accent-color: #D4A574;
    --accent-dark: #B8905F;
    --accent-light: #E8C9A0;

    /* Neutral Colors */
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #6B6B6B;
    --text-lighter: #9E9E9E;
    --text-white: #FFFFFF;

    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-cream: #FAFAF8;
    --bg-light: #F5F5F3;
    --bg-lighter: #FEFEFE;

    /* Border & Divider Colors */
    --border-light: #E8E8E6;
    --border-medium: #D4D4D2;
    --divider: rgba(139, 115, 85, 0.12);

    /* Shadows - Layered Depth */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.10);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.14);

    /* Luxury Shadows with Color */
    --shadow-primary: 0 8px 24px rgba(139, 115, 85, 0.15);
    --shadow-accent: 0 8px 24px rgba(212, 165, 116, 0.20);

    /* Transitions - Smooth & Natural */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Spacing System */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

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

    /* Typography Scale */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3rem;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Smooth scroll enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--bg-white);
    font-size: var(--font-size-base);
    font-weight: 400;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: 0;
    line-height: 1.8;
}

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

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

/* Container System */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    width: 100%;
}

/* ============================================
   SCROLL PROGRESS INDICATOR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg,
        var(--primary-color) 0%,
        var(--accent-color) 50%,
        var(--primary-color) 100%);
    background-size: 200% 100%;
    z-index: 10001;
    transition: width 0.1s ease-out;
    box-shadow: 0 2px 12px rgba(139, 115, 85, 0.3);
	    /* Dedicated non-rotating shimmer for the scroll progress bar */
	    animation: scroll-progress-shimmer 3s ease-in-out infinite;
}

@keyframes scroll-progress-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
	    /* Default state: integrated with hero at top of page */
	    background:
	        linear-gradient(
	            to bottom,
	            rgba(0, 0, 0, 0.55) 0%,
	            rgba(0, 0, 0, 0.30) 40%,
	            rgba(0, 0, 0, 0.00) 100%
	        );
	    backdrop-filter: blur(12px) saturate(160%);
	    -webkit-backdrop-filter: blur(12px) saturate(160%);
	    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
	    z-index: 1000;
	    transition: all var(--transition-base);
	    transform: translateY(0);
	    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.navbar.scrolled {
	    /* Distinct white container once user scrolls past threshold */
	    background: rgba(255, 255, 255, 0.97);
	    backdrop-filter: blur(20px) saturate(180%);
	    -webkit-backdrop-filter: blur(20px) saturate(180%);
	    box-shadow: var(--shadow-md);
	    border-bottom-color: var(--border-light);
	}

.navbar.hide {
    transform: translateY(-100%);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    transition: padding var(--transition-base);
}

.navbar.scrolled .nav-wrapper {
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition-base);
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-image {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition-base);
}

.navbar.scrolled .logo-image {
    height: 42px;
}

.logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.01em;
    transition: var(--transition-base);
}

	/* Top-of-page navbar (not scrolled) – ensure text is readable on hero */
	.navbar:not(.scrolled) .logo h2 {
	    color: var(--text-white);
	    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
	}

	.navbar:not(.scrolled) .nav-link {
	    color: rgba(255, 255, 255, 0.9);
	}

	.navbar:not(.scrolled) .nav-link:hover,
	.navbar:not(.scrolled) .nav-link.active {
	    color: var(--accent-light);
	}

	.navbar:not(.scrolled) .menu-toggle span {
	    background: var(--text-white);
	}

.logo h2:hover {
    color: var(--primary-dark);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(1.5rem, 2.5vw, 2.25rem);
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: var(--font-size-sm);
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-base);
    letter-spacing: 0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width var(--transition-smooth);
    border-radius: var(--radius-full);
}

.nav-link:hover {
    color: var(--primary-color);
}

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

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
    background: var(--accent-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    position: relative;
    z-index: 1001;
}

.menu-toggle:hover {
    background: var(--bg-light);
}

.menu-toggle:active {
    transform: scale(0.95);
}

.menu-toggle span {
    width: 26px;
    height: 2.5px;
	    background: var(--primary-color);
    transition: all var(--transition-base);
    border-radius: var(--radius-full);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    max-height: 1080px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgba(26, 26, 26, 0.35) 0%,
        rgba(106, 86, 66, 0.45) 50%,
        rgba(139, 115, 85, 0.40) 100%),
        url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-white);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 var(--spacing-lg);
    animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    margin-bottom: var(--spacing-sm);
    opacity: 0.95;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: var(--spacing-xl);
    opacity: 0.92;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-white);
    font-size: var(--font-size-xs);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.85;
    animation: bounce 2.5s ease-in-out infinite;
    cursor: pointer;
    transition: var(--transition-base);
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-arrow {
    width: 2px;
    height: 35px;
    background: linear-gradient(to bottom, transparent, var(--text-white));
    position: relative;
    border-radius: var(--radius-full);
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--text-white);
    border-bottom: 2px solid var(--text-white);
    transform: translateX(-50%) rotate(45deg);
    border-radius: 2px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-height: 52px;
    will-change: transform;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:active {
    transform: scale(0.98);
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 165, 116, 0.35);
}

/* Secondary Button */
.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.98);
    color: var(--primary-color);
    transform: translateY(-3px);
    border-color: var(--text-white);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.btn-full {
    width: 100%;
}

/* Button Loading State */
.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: clamp(80px, 12vw, 120px) 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(50px, 8vw, 70px);
    position: relative;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--accent-color) 50%,
        transparent 100%);
    border-radius: var(--radius-full);
    opacity: 0.8;
}

.section-tag {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    font-size: var(--font-size-xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.section-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    line-height: 1.2;
}

.section-description {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}


/* About Section */
.about {
    background: linear-gradient(135deg, var(--bg-white) 0%, #fafafa 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('../images/about-background.jpg') center/cover,
        linear-gradient(135deg, rgba(139, 115, 85, 0.05) 0%, rgba(212, 165, 116, 0.05) 100%);
    opacity: 0.3;
    z-index: 0;
}

.about-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(-2deg);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about.revealed .about-image {
    transform: rotate(0deg);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.1) 0%, transparent 100%);
}

.about-text {
    text-align: left;
    position: relative;
    z-index: 1;
}

.about-text .lead {
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--bg-light);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-text p:nth-child(1) {
    transition-delay: 0.1s;
}

.about-text p:nth-child(2) {
    transition-delay: 0.3s;
}

.about-text p:nth-child(3) {
    transition-delay: 0.5s;
}

.about:not(.revealed) .about-text p {
    opacity: 0.8;
    transform: translateY(15px);
}

.about.revealed .about-text p {
    opacity: 1;
    transform: translateY(0);
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Reviews Section */
.reviews {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding: 100px 0 80px;
    overflow: hidden;
    position: relative;
}

.reviews::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(139, 115, 85, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(212, 165, 116, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(139,115,85,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.reviews .section-header {
    position: relative;
    z-index: 1;
}

.reviews-container {
    position: relative;
    overflow: hidden;
    padding: 30px 0 40px;
    margin-bottom: 20px;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.reviews-track {
    display: flex;
    gap: 30px;
    animation: scroll-reviews 60s linear infinite;
    will-change: transform;
}

	/* Manual reviews navigation controls */
	.reviews-nav {
	    position: absolute;
	    top: 50%;
	    transform: translateY(-50%);
	    width: 40px;
	    height: 40px;
	    border-radius: 999px;
	    border: 1px solid rgba(139, 115, 85, 0.3);
	    background: rgba(255, 255, 255, 0.95);
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    color: var(--primary-color);
	    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
	    cursor: pointer;
	    z-index: 2;
	    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
	}

	.reviews-nav:hover {
	    background: #ffffff;
	    transform: translateY(-50%) translateY(-2px);
	    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
	}

	.reviews-nav:focus-visible {
	    outline: 2px solid var(--primary-color);
	    outline-offset: 2px;
	}

	.reviews-nav-prev {
	    left: 10px;
	}

	.reviews-nav-next {
	    right: 10px;
	}

	.reviews-nav i {
	    font-size: 1.1rem;
	}

	/* Reviews position indicators */
	.reviews-indicators {
	    display: flex;
	    justify-content: center;
	    gap: 8px;
	    margin-bottom: 10px;
	    position: relative;
	    z-index: 1;
	}

	.reviews-indicator {
	    width: 8px;
	    height: 8px;
	    border-radius: 50%;
	    border: none;
	    padding: 0;
	    background: rgba(139, 115, 85, 0.3);
	    cursor: pointer;
	    opacity: 0.7;
	    transition: background-color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
	}

	.reviews-indicator.active {
	    background: var(--primary-color);
	    opacity: 1;
	    transform: scale(1.25);
	}

	.reviews-indicator:focus-visible {
	    outline: 2px solid var(--primary-color);
	    outline-offset: 2px;
	}

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

.review-card {
    flex: 0 0 420px;
    min-height: 280px;
    background: var(--bg-white);
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(139, 115, 85, 0.08);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 100px;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    opacity: 0.06;
    line-height: 1;
    pointer-events: none;
}

.review-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(139, 115, 85, 0.15);
    border-color: rgba(139, 115, 85, 0.15);
}

.review-card:hover::after {
    transform: scaleX(1);
}

.review-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.review-rating .star {
    color: #ffa726;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(255, 167, 38, 0.3);
}

.review-text {
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: auto;
    font-size: 0.98rem;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 115, 85, 0.1);
    position: relative;
    z-index: 1;
}

.review-author strong {
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 600;
}

.review-author span {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Reviews Stats */
.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0 30px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.stat-badge {
    background: var(--bg-white);
    padding: 25px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(139, 115, 85, 0.1);
}

.stat-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.15);
}

.stat-badge .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-badge .stat-stars {
    color: #ffa726;
    font-size: 1.2rem;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(255, 167, 38, 0.3);
}

.stat-badge .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.reviews-link {
    text-align: center;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.reviews-link .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--text-white);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    padding: 16px 32px;
    box-shadow: var(--shadow-md);
}

.reviews-link .btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

@keyframes scroll-reviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-420px * 4 - 120px));
    }
}

/* Responsive reviews */
@media (max-width: 968px) {
    .reviews-stats {
        gap: 20px;
    }

    .stat-badge {
        padding: 20px 30px;
    }

    .stat-badge .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 340px;
        min-height: 300px;
        padding: 30px 25px;
    }

    .reviews-stats {
        gap: 15px;
    }

	    .reviews-nav {
	        width: 36px;
	        height: 36px;
	    }

    .stat-badge {
        padding: 18px 25px;
        flex: 1;
        min-width: 140px;
    }

    .stat-badge .stat-number {
        font-size: 1.8rem;
    }

    @keyframes scroll-reviews {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-340px * 4 - 120px));
        }
    }
}

@media (max-width: 480px) {
    .reviews {
        padding: 80px 0 60px;
    }

    .review-card {
        flex: 0 0 300px;
        min-height: 320px;
    }

    .stat-badge {
        min-width: 120px;
    }
}

/* Packages Section */
.packages {
    background: 
        linear-gradient(135deg, rgba(139, 115, 85, 0.03) 0%, rgba(212, 165, 116, 0.03) 100%),
        url('../images/packages-background.jpg') center/cover;
    background-blend-mode: overlay;
    position: relative;
}

.packages::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.05) 0%, transparent 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%);
    transition: clip-path 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.packages.revealed::after {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

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

.package-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.packages:not(.revealed) .package-card {
    opacity: 0.7;
    transform: translateY(20px) scale(0.98);
}

.packages.revealed .package-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.package-card:nth-child(1) {
    transition-delay: 0.1s;
}

.package-card:nth-child(2) {
    transition-delay: 0.2s;
}

.package-card:nth-child(3) {
    transition-delay: 0.3s;
}

.package-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* Simplified Packages background on mobile */
@media (max-width: 768px) {
    .packages {
        background: none !important;
    }

    .packages::after {
        content: none !important;
    }
}

.package-card.featured {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, #fff 0%, #fef9f3 100%);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-color);
    color: var(--text-white);
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: var(--shadow-sm);
}

.package-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.package-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.price-note {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

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

.package-time {
    display: flex;
    gap: 20px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 10px;
}

.time-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.time-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.time-value {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.package-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.package-features li {
    color: var(--text-light);
    font-size: 0.95rem;
}

.package-meal {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 5px;
}

.package-options {
    margin-bottom: 15px;
}

.meal-detail {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 5px;
    font-style: italic;
}

.meal-details {
    margin-top: 10px;
}

.package-cta {
    text-align: center;
    margin-top: 40px;
}

/* Rooms Section */
.rooms {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 250, 0.95) 100%),
        url('../images/rooms-background.jpg') center/cover;
    background-blend-mode: overlay;
    position: relative;
}

.rooms::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--border-color) 20%, 
        var(--border-color) 80%, 
        transparent 100%);
    transform: scaleX(0);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.rooms.revealed::before {
    transform: scaleX(1);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.room-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
    perspective: 1000px;
}

.room-card:hover {
    transform: translateY(-10px) rotateY(2deg);
    box-shadow: var(--shadow-lg);
}

.room-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-light);
    position: relative;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1 !important;
}

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

.room-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-content {
    padding: 30px;
}

.room-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.room-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.room-spec {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.room-spec i {
    color: var(--primary-color);
    font-size: 1rem;
}

.room-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.room-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.room-features li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Amenities Section */
.amenities {
    background: linear-gradient(135deg, var(--bg-light) 0%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
}

.amenities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('../images/amenities-background.jpg') center/cover,
        radial-gradient(circle, rgba(139, 115, 85, 0.08) 0%, transparent 70%);
    opacity: 0.2;
    z-index: 0;
}

.amenities-showcase {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.amenity-featured {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.amenity-featured:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.amenity-featured-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.amenity-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.amenity-featured:hover .amenity-featured-image img {
    transform: scale(1.1);
}

.amenity-featured-content {
    padding: 30px;
    text-align: center;
}

.amenity-featured-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 2rem;
}

.amenity-featured-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.amenity-featured-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.amenities-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.amenity-compact {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
}

.amenity-compact:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--bg-white) 0%, #fef9f3 100%);
}

.amenity-compact-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.amenity-compact:hover .amenity-compact-icon {
    background: var(--primary-color);
    color: var(--text-white);
    transform: scale(1.1) rotate(5deg);
}

.amenity-compact-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.amenity-compact-text span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.amenity-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-white);
    border-radius: 15px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0) scale(1);
}

.amenities:not(.revealed) .amenity-item {
    opacity: 0.7;
    transform: translateY(15px) scale(0.95);
}

.amenities.revealed .amenity-item {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.amenity-item:nth-child(1) { transition-delay: 0.1s; }
.amenity-item:nth-child(2) { transition-delay: 0.15s; }
.amenity-item:nth-child(3) { transition-delay: 0.2s; }
.amenity-item:nth-child(4) { transition-delay: 0.25s; }
.amenity-item:nth-child(5) { transition-delay: 0.3s; }
.amenity-item:nth-child(6) { transition-delay: 0.35s; }
.amenity-item:nth-child(7) { transition-delay: 0.4s; }
.amenity-item:nth-child(8) { transition-delay: 0.45s; }
.amenity-item:nth-child(9) { transition-delay: 0.5s; }

.amenity-item.featured {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e6b884 100%);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.amenity-item.featured::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

.amenity-item.featured h3,
.amenity-item.featured p {
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

.amenity-item.featured .amenity-icon {
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.amenity-item.featured .amenity-icon i {
    color: var(--text-white);
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.amenity-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: var(--bg-light);
    border-radius: 50%;
    transition: var(--transition);
}

.amenity-icon i,
.amenity-icon svg {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.amenity-icon svg {
    width: 32px;
    height: 32px;
}

.amenity-item:hover .amenity-icon {
    background: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
}

.amenity-item:hover .amenity-icon i,
.amenity-item:hover .amenity-icon svg {
    color: var(--text-white);
    transform: scale(1.1);
}

.amenity-item:hover .amenity-icon svg {
    fill: var(--text-white);
}

.amenity-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

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

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4 / 3;
    background: var(--bg-light);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:has(img[style*="display: none"]) {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8e8e8 100%);
}

.gallery-item:has(img[style*="display: none"])::before {
    content: 'Image Coming Soon';
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 115, 85, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay i {
    font-size: 3rem;
    color: var(--text-white);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Gallery placeholder styling */
.gallery-placeholder {
    position: relative;
}

.gallery-placeholder::after {
    content: 'Coming Soon';
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(139, 115, 85, 0.9);
    color: var(--text-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 2;
}

/* Location Section */
.location {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(248, 248, 248, 0.98) 100%);
    position: relative;
}

.location::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--accent-color) 50%, 
        var(--primary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.location.revealed::after {
    transform: scaleX(1);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-link {
    display: block;
    text-decoration: none;
    transition: var(--transition);
}

.map-link:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.map-link-text {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.map-link-text:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.location-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-link:hover img {
    transform: scale(1.05);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-attractions h3 {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.attractions-subtitle {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
}

/* Compact Attractions Grid */
.attractions-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.attraction-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    cursor: pointer;
}

.attraction-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--bg-white) 0%, #fef9f3 100%);
}

.attraction-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: var(--transition-base);
}

.attraction-item:hover i {
    color: var(--accent-color);
    transform: scale(1.15);
}

.attraction-name {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-dark);
    flex: 1;
    line-height: 1.3;
}

.attraction-dist {
    font-size: var(--font-size-xs);
    color: var(--text-light);
    font-weight: 600;
    padding: 4px 10px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.attraction-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.attraction-card {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
}

.location:not(.revealed) .attraction-card {
    opacity: 0.7;
    transform: translateY(10px);
}

.location.revealed .attraction-card {
    opacity: 1;
    transform: translateY(0);
}

.attraction-card:nth-child(1) { transition-delay: 0.1s; }
.attraction-card:nth-child(2) { transition-delay: 0.15s; }
.attraction-card:nth-child(3) { transition-delay: 0.2s; }
.attraction-card:nth-child(4) { transition-delay: 0.25s; }
.attraction-card:nth-child(5) { transition-delay: 0.3s; }
.attraction-card:nth-child(6) { transition-delay: 0.35s; }
.attraction-card:nth-child(7) { transition-delay: 0.4s; }
.attraction-card:nth-child(8) { transition-delay: 0.45s; }
.attraction-card:nth-child(9) { transition-delay: 0.5s; }

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--bg-white) 0%, #fef9f3 100%);
}

.attraction-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, #f0f0f0 100%);
    border-radius: 15px;
    transition: var(--transition);
}

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

.attraction-card:hover .attraction-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scale(1.1) rotate(5deg);
}

.attraction-card:hover .attraction-icon i {
    color: var(--text-white);
}

.attraction-info {
    width: 100%;
}

.attraction-info h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    line-height: 1.3;
}

.attraction-distance {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 12px;
}

/* Contact Section */
.contact {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 250, 0.95) 100%),
        url('../images/contact-background.jpg') center/cover;
    background-blend-mode: overlay;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 115, 85, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 165, 116, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.contact.revealed::before {
    opacity: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:nth-child(1) { transition-delay: 0.1s; }
.contact-item:nth-child(2) { transition-delay: 0.2s; }
.contact-item:nth-child(3) { transition-delay: 0.3s; }
.contact-item:nth-child(4) { transition-delay: 0.4s; }

.contact:not(.revealed) .contact-item {
    opacity: 0.7;
    transform: translateY(10px);
}

.contact.revealed .contact-item {
    opacity: 1;
    transform: translateY(0);
}

.contact-form-wrapper {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s,
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.contact:not(.revealed) .contact-form-wrapper {
    opacity: 0.7;
    transform: translateY(15px) scale(0.99);
}

.contact.revealed .contact-form-wrapper {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 15px;
    flex-shrink: 0;
    transition: var(--transition);
}

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

.contact-item:hover .contact-icon {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.contact-item:hover .contact-icon i {
    color: var(--text-white);
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-white);
    line-height: 1.7;
}

.contact-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

/* WhatsApp link styles removed - no longer needed */

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: 8px;
    width: fit-content;
}

.social-link:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
    transform: translateX(5px);
}

.social-link i,
.social-link svg {
    font-size: 1.2rem;
    width: 1.2rem;
    height: 1.2rem;
}

/* Icon-only social links */
.social-icons-only {
    flex-direction: row;
    gap: 15px;
}

.social-icons-only .social-link {
    padding: 12px;
    background: var(--bg-light);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons-only .social-link:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px) scale(1.05);
}

.social-icons-only .social-link i,
.social-icons-only .social-link svg {
    font-size: 1.4rem;
    width: 1.4rem;
    height: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fix Facebook icon centering */
.social-icons-only .social-link i.bi-facebook {
    font-size: 1.5rem;
    line-height: 1;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238b7355' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
    transform: translateY(-2px);
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin: 8px 0;
}

.footer-credit {
    font-size: 0.9rem;
    margin-top: 12px;
}

.footer-credit a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
    position: relative;
}

.footer-credit a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-credit a:hover {
    color: var(--accent-light);
}

.footer-credit a:hover::after {
    width: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* Tablet & Below (≤968px) */
@media (max-width: 968px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: left var(--transition-smooth);
        box-shadow: var(--shadow-2xl);
        padding: 100px 2rem 2rem;
        gap: 0;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu li {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

	    .nav-link {
	        display: block;
	        padding: 1rem;
	        font-size: var(--font-size-lg);
	    }

	    /* Ensure mobile menu links remain readable on light overlay,
	       even when navbar is at top-of-page (not .scrolled) */
	    .navbar .nav-menu.active .nav-link {
	        color: var(--text-dark);
	    }

	    .navbar .nav-menu.active .nav-link:hover,
	    .navbar .nav-menu.active .nav-link.active {
	        color: var(--primary-color);
	    }

    .nav-link::after {
        bottom: 0.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    /* Hero Section */
    .hero {
        min-height: 600px;
        background-attachment: scroll;
    }

    /* Sections */
    section {
        padding: clamp(60px, 10vw, 80px) 0;
    }

    .section-header {
        margin-bottom: clamp(40px, 6vw, 50px);
    }

    /* Grid Layouts */
    .about-content,
    .location-content,
    .contact-content,
    .amenities-showcase {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .attractions-grid,
    .attractions-compact-grid,
    .amenities-grid-compact {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    .attraction-item {
        padding: 12px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .attraction-name {
        font-size: 0.8rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .about-image {
        transform: rotate(0deg) !important;
    }

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

    /* Touch Targets - Minimum 44px */
    .btn,
    .nav-link,
    .menu-toggle {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Mobile (≤640px) */
@media (max-width: 640px) {
    /* Typography */
    :root {
        --font-size-base: 0.9375rem;
    }

    /* Hero */
    .hero {
        min-height: 550px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: var(--spacing-sm);
    }

    .btn {
        width: 100%;
        padding: 14px 28px;
    }

    /* Sections */
    section {
        padding: clamp(50px, 8vw, 60px) 0;
    }

    .container {
        padding: 0 var(--spacing-md);
    }

    /* Stats */
    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }

    .stat-item {
        flex: 1;
        min-width: 140px;
    }

	    /* Contact - improve text contrast on mobile */
	    .contact-item p,
	    .contact .map-link-text,
	    .contact .contact-link {
	        color: var(--text-dark);
	    }

	    .contact .map-link-text i {
	        color: inherit;
	    }

    /* Forms */
    .contact-form-wrapper {
        padding: var(--spacing-lg);
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px 18px;
        font-size: var(--font-size-base);
    }

    /* Footer */
    .footer {
        padding: 50px 0 20px;
    }

	    .footer-content {
	        gap: var(--spacing-lg);
	    }

	    /* Location map - keep map within viewport on mobile */
	    .location-map-wrapper {
	        width: 100%;
	        max-width: 100%;
	        box-sizing: border-box;
	        overflow: hidden;
	    }

	    .location-map-wrapper iframe {
	        width: 100%;
	        max-width: 100%;
	        display: block;
	    }

	    /* Rooms - ensure room cards are centered on mobile */
	    .rooms:not(.revealed) .room-card {
	        transform: translateX(0) rotateY(0deg);
	    }

	    /* Amenities - force single-column layout on mobile */
	    .amenities-grid-compact {
	        grid-template-columns: 1fr;
	    }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .section-tag {
        font-size: 0.7rem;
        padding: 8px 18px;
    }

    .stat-item {
        min-width: 100%;
    }
}

/* Large Desktop (≥1440px) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

    section {
        padding: 140px 0;
    }
}

/* 4K & Ultra-Wide (≥2560px) */
@media (min-width: 2560px) {
    .container {
        max-width: 1800px;
    }

    :root {
        --font-size-base: 1.125rem;
    }
}

/* Smooth Scroll Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ============================================
   PREMIUM ANIMATIONS & KEYFRAMES
   ============================================ */

/* Fade In Up - Hero & Section Reveals */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Scale - Cards & Elements */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Slide In From Bottom */
@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scale In - Modals & Overlays */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Bounce - Scroll Indicator */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-12px);
    }
    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

/* Pulse - Attention Grabbers */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Slide In From Left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide In From Right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Rotate In */
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* Smooth section transitions */
section {
    scroll-margin-top: 80px;
}

/* Enhanced Hover Effects */
.room-card::after,
.package-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    opacity: 0;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.1) 0%, rgba(212, 165, 116, 0.1) 100%);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.room-card:hover::after,
.package-card:hover::after {
    opacity: 1;
}

.room-content,
.package-header,
.package-details {
    position: relative;
    z-index: 1;
}

/* Icon Enhancements */
.bi {
    display: inline-block;
    vertical-align: middle;
}

/* Loading States */
.btn:active {
    transform: scale(0.98);
}

/* Focus States */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ============================================
   LIGHTBOX STYLES
   ============================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    cursor: zoom-out;
}

.lightbox.active {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
}

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

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    display: block;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--text-white);
    font-size: 2.5rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: all var(--transition-base);
    font-weight: 300;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg) scale(1.1);
}

.lightbox-close:active {
    transform: rotate(90deg) scale(0.95);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.7);
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 85%;
    }
}

/* ============================================
   NOTIFICATION SYSTEM
   ============================================ */
.notification {
    position: fixed;
    top: 100px;
    right: -400px;
    max-width: 400px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    padding: var(--spacing-md) var(--spacing-lg);
    z-index: 10000;
    transition: right var(--transition-smooth);
    border-left: 4px solid var(--primary-color);
}

.notification.show {
    right: var(--spacing-lg);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.notification-icon {
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.notification-message {
    font-size: var(--font-size-sm);
    line-height: 1.5;
    color: var(--text-dark);
}

.notification-success {
    border-left-color: #10b981;
}

.notification-success .notification-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.notification-error {
    border-left-color: #ef4444;
}

.notification-error .notification-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.notification-info {
    border-left-color: var(--accent-color);
}

.notification-info .notification-icon {
    background: rgba(212, 165, 116, 0.1);
    color: var(--accent-color);
}

/* Form Validation States */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.form-group input.valid,
.form-group textarea.valid,
.form-group select.valid {
    border-color: #10b981;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================================
   SCROLL-TRIGGERED ANIMATIONS
   ============================================ */

/* Section animations */
.section-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Element animations */
.element-animate {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.element-revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Specific animation variations */
.section-header.element-animate {
    transform: translateY(30px);
}

.section-header.element-revealed {
    transform: translateY(0);
}

.gallery-item.element-animate {
    transform: translateY(30px) scale(0.9);
}

.gallery-item.element-revealed {
    transform: translateY(0) scale(1);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .section-animate,
    .element-animate {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

