/* Global CSS Variables & Reset */
:root {
    --color-bg: #f7f6f3;      /* Sophisticated Warm Linen/Ivory */
    --color-surface: #ffffff; /* Pure white card surfaces */
    --color-surface-hover: #f5f2eb;
    --color-gold: #a38258;    /* Brushed antique gold */
    --color-gold-hover: #80633d;
    --color-gold-muted: rgba(163, 130, 88, 0.1);
    --color-text-white: #0f1115; /* Charcoal headings */
    --color-text-light: #2d3139; /* Dark slate body text */
    --color-text-muted: #64748b; /* Slate gray */
    --color-border: rgba(163, 130, 88, 0.2);
    --color-border-light: rgba(0, 0, 0, 0.05);
    --gold-gradient: linear-gradient(135deg, #a38258 0%, #d8c3a5 50%, #b8986c 100%);
    
    --font-serif: 'Cinzel', 'Playfair Display', serif;
    --font-sans: 'Plus Jakarta Sans', 'Inter', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-gold-glow: 0 4px 20px rgba(163, 130, 88, 0.05);
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-text-light);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--color-text-white);
    letter-spacing: 0.05em;
}

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

/* Header & Nav */
.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    border-bottom: 1px solid transparent;
}

.header-container.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border-light);
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.nav-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.1em;
}

.header-container.scrolled .logo-link {
    color: var(--color-text-white);
}

.logo-symbol {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.3rem;
    box-shadow: var(--shadow-gold-glow);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-item a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.9);
}

.header-container.scrolled .nav-item a {
    color: var(--color-text-light);
}

.nav-item a:hover, .header-container.scrolled .nav-item a:hover, .nav-item.active a, .header-container.scrolled .nav-item.active a {
    color: var(--color-gold);
}

.nav-item.cta-item a {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    color: #ffffff !important;
}

.header-container.scrolled .nav-item.cta-item a {
    border-color: var(--color-gold);
    color: var(--color-gold) !important;
}

.nav-item.cta-item a:hover, .header-container.scrolled .nav-item.cta-item a:hover {
    background: var(--gold-gradient);
    color: #ffffff !important;
    border-color: transparent;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

.header-container.scrolled .menu-toggle span {
    background-color: var(--color-text-white);
}

/* Hero & Slider Showcase */
.hero-slider {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(9, 11, 14, 0.9) 0%, rgba(9, 11, 14, 0.45) 50%, rgba(9, 11, 14, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 1.5rem;
    margin-top: -5vh;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f3e5d0 50%, #d8c3a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.8));
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Booking Bar (Shangri-La inspired) */
.booking-bar-wrapper {
    max-width: 1100px;
    width: calc(100% - 3rem);
    margin: -4rem auto 0 auto;
    position: relative;
    z-index: 200;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: var(--shadow-premium), var(--shadow-gold-glow);
    padding: 1.5rem 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.booking-form {
    display: grid;
    grid-template-columns: 2.2fr 2.2fr 2fr 1.3fr 1.8fr 1.8fr 1.5fr;
    gap: 1rem;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-group label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gold);
    font-weight: 600;
}

.form-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border-light);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    color: var(--color-text-white);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-input:focus {
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.05);
}

.booking-submit-btn {
    background: var(--gold-gradient);
    border: none;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

.booking-submit-btn:hover {
    box-shadow: 0 0 15px var(--color-gold);
    transform: translateY(-2px);
}

/* Page Intro Header (Header blocks in inner pages) */
.page-intro-header {
    padding: 10rem 2rem 5rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(197, 168, 128, 0.05) 0%, transparent 100%);
    border-bottom: 1px solid var(--color-border-light);
}

.page-intro-header h1 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

.page-intro-header p {
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Sections & Alternate Grid Cards */
.section-wrapper {
    max-width: 1300px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-wrapper h2 {
    font-size: 2.2rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title-wrapper p {
    color: var(--color-gold);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Alternating content cards */
.alt-showcase {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.alt-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.alt-card.reverse {
    direction: rtl;
}

.alt-card.reverse .alt-content {
    direction: ltr;
}

.alt-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    aspect-ratio: 16 / 10;
}

.alt-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.alt-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.alt-subtitle {
    color: var(--color-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.alt-title {
    font-size: 2rem;
    font-weight: 600;
}

.alt-description {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.alt-btn {
    display: inline-flex;
    align-self: flex-start;
    border-bottom: 1px solid var(--color-gold);
    padding-bottom: 0.3rem;
    color: var(--color-gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.alt-btn:hover {
    color: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    padding-left: 0.5rem;
}

/* Legacy Circle / Loyalty Club CTA */
.loyalty-banner {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    margin-bottom: 6rem;
}

.loyalty-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.loyalty-content h3 {
    font-size: 2.2rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loyalty-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.benefit-icon {
    color: var(--color-gold);
    font-size: 1.2rem;
}

.benefit-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.benefit-text p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.loyalty-image-wrapper {
    background-size: cover;
    background-position: center;
    position: relative;
}

.loyalty-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-surface) 0%, transparent 100%);
}

/* Footer Section */
footer {
    background-color: #050608;
    border-top: 1px solid var(--color-border-light);
    padding: 5rem 2rem 2rem 2rem;
}

.footer-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: #ffffff;
}

footer p {
    color: rgba(255, 255, 255, 0.65) !important;
}

.footer-col h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 0.3rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border-light);
    padding: 0.75rem;
    color: #ffffff;
    font-size: 0.85rem;
    border-radius: 4px;
    outline: none;
}

.newsletter-btn {
    background: var(--color-gold);
    color: var(--color-bg);
    border: none;
    padding: 0.75rem 1.2rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
}

.newsletter-btn:hover {
    background: var(--color-gold-hover);
}

.social-links {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    margin-top: 1rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
}

.social-links a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    max-width: 1300px;
    margin: 4rem auto 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border-light);
    display: flex;
    justify-content: space-between;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

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

/* Grid for Rooms & Dining lists */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
}

.item-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.item-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border);
}

.item-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.item-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.item-card-content {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.item-card-price {
    font-size: 1.25rem;
    color: var(--color-gold);
    font-weight: 600;
}

.item-card-specs {
    display: flex;
    gap: 1.5rem;
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
    padding: 0.8rem 0;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* Booking checkout invoice simulation styling */
.booking-summary-wrapper {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 3rem;
    margin: 2rem 0;
}

.booking-details-card, .invoice-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-premium);
}

.invoice-summary-line {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--color-border-light);
}

.invoice-summary-line.total {
    border-bottom: none;
    font-size: 1.4rem;
    color: var(--color-gold);
    font-weight: 700;
    padding-top: 1.5rem;
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-surface);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-premium);
    }
    
    .nav-item a {
        color: var(--color-text-light) !important;
    }
    
    .nav-item.cta-item a {
        color: var(--color-gold) !important;
        border-color: var(--color-gold) !important;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .booking-form {
        grid-template-columns: 1fr 1fr;
    }
    
    .booking-submit-btn {
        grid-column: span 2;
    }
    
    .alt-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .alt-card.reverse {
        direction: ltr;
    }
    
    .loyalty-banner {
        grid-template-columns: 1fr;
    }
    
    .loyalty-image-wrapper {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .booking-summary-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .booking-form {
        grid-template-columns: 1fr;
    }
    .booking-submit-btn {
        grid-column: span 1;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Rooms Page Interactive Carousel Styles */
.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #e2e8f0;
}

.carousel-slide {
    display: block;
    width: 100%;
    height: 100%;
}

.carousel-arrow {
    opacity: 0.8;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.carousel-arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1) !important;
}

.indicator-dot {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.indicator-dot:hover {
    transform: scale(1.3);
    background: #ffffff !important;
}

/* Testimonials Styles & Google Reviews Integration */
.testimonials-section {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 6rem 2rem;
    text-align: center;
}
.google-reviews-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: rgba(163, 130, 88, 0.04);
    border: 1px solid var(--color-border);
    padding: 0.6rem 1.6rem;
    border-radius: 50px;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-premium);
    flex-wrap: wrap;
}
.google-rating-score {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-text-white);
    display: inline-block;
}
.google-rating-stars {
    color: #ffb300; /* Vibrant Google Star Gold */
    font-size: 1.05rem;
    letter-spacing: 1px;
    display: inline-block;
}
.google-rating-count {
    color: var(--color-text-muted);
    font-size: 0.82rem;
    display: inline-block;
}
.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-slide {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}
.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}
.testimonial-rating-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}
.google-rating-stars-review {
    color: #ffb300; /* Vibrant Google Star Gold */
    font-size: 1.2rem;
    letter-spacing: 2px;
}
.google-review-time {
    color: var(--color-text-muted);
    font-size: 0.8rem;
}
.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    line-height: 1.7;
    color: var(--color-text-white);
    font-style: italic;
    font-weight: 400;
}
.testimonial-author-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}
.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.05rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    flex-shrink: 0;
}
.reviewer-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.testimonial-author {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-white);
    letter-spacing: 0.02em;
}
.reviewer-meta {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-top: 0.1rem;
}
.verified-text {
    color: #2e7d32; /* Google Trust Green */
    font-weight: 500;
}
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
}
.testimonial-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(163, 130, 88, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}
.testimonial-dot.active {
    background: var(--color-gold);
    transform: scale(1.2);
}
.google-btn-outline {
    border: 1px solid var(--color-border);
    background: transparent;
    padding: 0.7rem 1.8rem;
    border-radius: 4px;
    color: var(--color-text-light);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-premium);
}
.google-btn-outline:hover {
    background: rgba(163, 130, 88, 0.05);
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
}
.google-btn-gold {
    border: 1px solid var(--color-gold);
    background: var(--color-gold);
    padding: 0.7rem 1.8rem;
    border-radius: 4px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    box-shadow: var(--shadow-premium);
}
.google-btn-gold:hover {
    background: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    transform: translateY(-2px);
}

/* Experiences / Excursions Grid */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.experience-card {
    position: relative;
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    cursor: pointer;
}
.experience-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.experience-card:hover .experience-img {
    transform: scale(1.08);
}
.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(9, 11, 14, 0.85) 0%, rgba(9, 11, 14, 0.3) 50%, rgba(9, 11, 14, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    z-index: 2;
}
.experience-badge {
    align-self: flex-start;
    background: var(--color-gold);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 0.8rem;
}
.experience-title {
    font-size: 1.35rem;
    color: #ffffff !important;
    margin-bottom: 0.3rem;
}
.experience-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    line-height: 1.4;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin 0.4s ease;
}
.experience-card:hover .experience-desc {
    max-height: 80px;
    margin-top: 0.5rem;
}

/* Feature Highlights Grid */
.intro-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
    text-align: center;
}
.highlight-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}
.highlight-col:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 35px rgba(163, 130, 88, 0.08);
}
.highlight-icon {
    font-size: 2.2rem;
}
.highlight-title {
    font-size: 1.05rem;
    color: var(--color-text-white);
    font-weight: 600;
}
.highlight-desc {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Page Intro Header Styling */
.page-intro-header {
    height: 45vh;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 0 1.5rem;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 0;
    z-index: 10;
}

.page-intro-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(9, 11, 14, 0.85) 0%, rgba(9, 11, 14, 0.5) 50%, rgba(9, 11, 14, 0.75) 100%);
    z-index: 1;
}

.page-intro-header h1, .page-intro-header p {
    position: relative;
    z-index: 2;
}

.page-intro-header h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: linear-gradient(135deg, #ffffff 0%, #f3e5d0 50%, #d8c3a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
    animation: fadeInUp 0.8s ease-out;
}

.page-intro-header p {
    font-size: 1.15rem;
    font-weight: 300;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    letter-spacing: 0.05em;
    line-height: 1.5;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

/* Dining Page Layout Styles */
.dining-layout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

@media (max-width: 1024px) {
    .dining-layout-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.menu-section-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-text-white);
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.menu-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}

.menu-item:hover {
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(163, 130, 88, 0.04);
}

.menu-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-white);
}

.menu-item-description {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.menu-item-price {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-gold);
    white-space: nowrap;
}

.reservation-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-premium), var(--shadow-gold-glow);
    position: sticky;
    top: 100px;
}

.reservation-form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-text-white);
    margin-bottom: 0.5rem;
    text-align: center;
}

.reservation-form-subtitle {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 2rem;
}

.dining-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 5rem;
}

.dining-gallery-item {
    aspect-ratio: 3 / 2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    cursor: pointer;
    border: 1px solid var(--color-border-light);
    transition: var(--transition-smooth);
}

.dining-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.dining-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(163, 130, 88, 0.12);
    border-color: var(--color-gold);
}

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

@media (max-width: 600px) {
    .dining-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

/* WhatsApp Chat Widget Styles */
.wa-widget-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    font-family: var(--font-sans);
}

.wa-bubble {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: wa-bounce 4s infinite;
}

.wa-bubble:hover {
    transform: scale(1.08);
    background-color: #20ba5a;
}

.wa-bubble svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.wa-card {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 320px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.wa-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wa-card-header {
    background: #0f1319;
    padding: 1.2rem;
    border-bottom: 1px solid var(--color-border-light);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
}

.wa-butler-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    object-fit: cover;
}

.wa-butler-info h4 {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-white);
    font-family: var(--font-serif);
}

.wa-butler-info span {
    font-size: 0.72rem;
    color: var(--color-gold);
    display: block;
}

.wa-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}

.wa-close-btn:hover {
    color: #ffffff;
}

.wa-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.wa-welcome-text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0;
}

.wa-chat-btn {
    background-color: #25D366;
    color: #ffffff !important;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.2s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.wa-chat-btn:hover {
    background-color: #20ba5a;
}

.wa-chat-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

@keyframes wa-bounce {
    0%, 100%, 20%, 50%, 80% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

@media (max-width: 600px) {
    .wa-widget-container {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    .wa-card {
        width: 290px;
        right: -10px;
    }
}

/* Accessibility & SEO Helpers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

