/**
 * Kailasha Luxury Theme - Custom Design Styles
 * Warm Earthy Luxury Palette: Beige, Ivory, Gold, Charcoal
 * Inspired by Aman Resorts & Four Seasons
 */

@font-face {
    font-family: 'optimanormal';
    src: local('Optima Regular'), local('Optima-Regular'), local('Optima'),
         url('../fonts/optimanormal.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ==========================================
   1. CORE VARIABLES & DESIGN SYSTEM
   ========================================== */
:root {
    /* Color Palette */
    --color-primary: #242055;        /* Dark Blue / Indigo */
    --color-secondary: #E4BF5C;      /* Soft Gold */
    --color-gold: #E4BF5C;
    --color-gold-dark: #ccab4b;
    --color-gold-light: #f7e6bb;
    --color-ivory: #faf8f5;          /* Base background */
    --color-beige: #f3eee6;          /* Contrasting light background */
    --color-charcoal: #242055;
    --color-text-main: #606161;      /* Slate Gray Content Text */
    --color-text-muted: #606161;
    --color-border: #e3dec3;
    --color-white: #ffffff;
    --color-whatsapp: #25d366;
    
    /* Button Colors */
    --color-button: #D8741B;         /* Vibrant Orange */
    --color-button-hover: #b85e10;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-poppins: 'Montserrat', sans-serif;
    --font-body: Verdana, Geneva, sans-serif;
    
    /* Transitions & Borders */
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 4px;
    --shadow-premium: 0 10px 30px rgba(28, 28, 28, 0.04);
    --shadow-hover: 0 20px 40px rgba(197, 168, 128, 0.12);
    
    /* Compact Section Spacing */
    --section-spacing: 75px;
}

/* ==========================================
   2. GLOBAL RESETS & STYLING
   ========================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.8;
    color: var(--color-text-main);
    background-color: var(--color-ivory);
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.02em; /* Adjusted tracking for Montserrat */
}

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

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

/* Common Section Layout elements */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-pretitle {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.section-title {
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-subtitle-text {
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: var(--color-text-muted);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;
    font-family: var(--font-heading);
}

.section-header-center {
    text-align: center;
    margin-bottom: 40px;
}

.section-header-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: flex-end;
    margin-bottom: 50px;
}

.section-header-split .header-right p {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* General Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-button);
    color: var(--color-white);
    height: 56px;
    padding: 0 32px;
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--color-button);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 24px;
}

.btn-primary:hover {
    background-color: var(--color-button-hover);
    border-color: var(--color-button-hover);
    color: var(--color-white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--color-white);
    height: 56px;
    padding: 0 32px;
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--color-white);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 24px;
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--color-primary);
    height: 56px;
    padding: 0 32px;
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--color-primary);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 24px;
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.btn-whatsapp-widget {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    height: 56px;
    padding: 0 32px;
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    margin-top: 24px;
    border: none;
}

.btn-whatsapp-widget:hover {
    background-color: #20ba5a;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

/* ==========================================
   3. ANNOUNCEMENT BAR & NAVIGATION HEADER
   ========================================== */
.announcement-bar {
    background-color: var(--color-primary);
    color: var(--color-gold-light);
    font-size: 11px;
    letter-spacing: 0.08em;
    padding: 6px 0;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    font-family: var(--font-poppins);
}

.announcement-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.announcement-left, .announcement-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.announcement-bar i {
    color: var(--color-gold);
}

.announcement-bar .divider {
    color: rgba(255, 255, 255, 0.2);
}

.announcement-whatsapp:hover {
    color: var(--color-white);
}

/* Header styling - Solid white header on start */
.site-header {
    position: absolute;
    top: 31px; /* Height of announcement bar */
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 12px 0;
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

/* Sticky Class triggered via Javascript */
.site-header.is-sticky {
    position: fixed;
    top: 0;
    background-color: var(--color-white) !important;
    padding: 8px 0;
    box-shadow: 0 5px 25px rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Custom Typography styled Logo */
.logo-link,
.custom-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image,
.custom-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--color-white);
    line-height: 1.1;
}

.logo-sub {
    font-size: 8px;
    font-family: var(--font-poppins);
    font-weight: 600;
    letter-spacing: 0.24em;
    color: var(--color-gold);
    margin-top: 4px;
}

/* Sticky Theme Logo Colors */
.site-header.is-sticky .logo-main {
    color: var(--color-primary);
}

/* Desktop Navigation Menu */
.main-navigation {
    display: block;
}

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

.nav-menu a {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--color-primary);
    padding: 8px 0;
    position: relative;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-button);
    transition: var(--transition-smooth);
}

.nav-menu a:hover {
    color: var(--color-button);
}

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

/* Sticky navigation link colors */
.site-header.is-sticky .nav-menu a {
    color: var(--color-primary);
}

.site-header.is-sticky .nav-menu a:hover {
    color: var(--color-button);
}

/* Header Right Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-whatsapp-header {
    background-color: transparent;
    color: var(--color-whatsapp);
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 1.5px solid var(--color-whatsapp);
    transition: var(--transition-smooth);
}

.btn-whatsapp-header:hover {
    background-color: #000000;
    color: var(--color-white);
    border-color: #000000;
}

.site-header.is-sticky .btn-whatsapp-header {
    background-color: transparent;
    color: var(--color-whatsapp);
    border-color: var(--color-whatsapp);
}

.site-header.is-sticky .btn-whatsapp-header:hover {
    background-color: #000000;
    color: var(--color-white);
    border-color: #000000;
}

.btn-booking-header {
    background-color: var(--color-button);
    color: var(--color-white);
    font-size: 10px;
    font-family: var(--font-poppins);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 12px 22px;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-booking-header:hover {
    background-color: var(--color-button-hover);
    color: var(--color-white);
}

.site-header.is-sticky .btn-booking-header {
    background-color: var(--color-button);
    color: var(--color-white);
}

.site-header.is-sticky .btn-booking-header:hover {
    background-color: var(--color-button-hover);
    color: var(--color-white);
}

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

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

.site-header.is-sticky .menu-toggle .bar {
    background-color: var(--color-primary);
}

/* Mobile Drawer (Closed initially) */
.mobile-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--color-white);
    z-index: 1000;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
}

.close-mobile-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    outline: none;
    color: rgba(36, 32, 85, 0.6);
    font-size: 38px;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
    z-index: 1010;
}

.close-mobile-menu:hover,
.close-mobile-menu:focus {
    color: var(--color-primary);
    transform: rotate(90deg);
    outline: none;
}

.mobile-navigation.is-open {
    right: 0;
}

.mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-menu a {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-primary);
}

.mobile-nav-menu a:hover {
    color: var(--color-button);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
}

.mobile-nav-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 13px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.12em;
    font-weight: 600;
    border-radius: var(--border-radius);
    font-family: var(--font-poppins);
    transition: var(--transition-smooth);
}

.mobile-nav-call:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* ==========================================
   4. HERO SECTION & BOOKING WIDGET
   ========================================== */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    animation: kenBurnsEffect 8s forwards ease-in-out;
}

@keyframes kenBurnsEffect {
    0% {
        transform: scale(1.0);
    }
    100% {
        transform: scale(1.06);
    }
}

.hero-slide-indicators {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hero-dot.active, .hero-dot:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    transform: scale(1.2);
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 40px 0 40px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-text-container {
    color: var(--color-white);
}

.hero-tagline {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    font-size: 84px;
    line-height: 1.05;
    color: var(--color-white);
    margin-bottom: 25px;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 400;
}

.hero-actions-row {
    display: flex;
    gap: 20px;
}

/* Floating booking widget (Glassmorphism design) */
.floating-booking-widget {
    background: rgba(28, 28, 28, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    color: var(--color-white);
}

.widget-title {
    font-size: 26px;
    margin-bottom: 25px;
    color: var(--color-white);
    text-align: center;
}

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

.booking-form-grid-horizontal {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 992px) {
    .booking-form-grid-horizontal {
        display: grid;
        grid-template-columns: repeat(4, 1fr) 1.2fr;
        gap: 20px;
        align-items: flex-end;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-gold-light);
    font-weight: 500;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    color: var(--color-gold);
    font-size: 14px;
}

.input-with-icon input,
.input-with-icon select {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 14px 15px 14px 45px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 13px;
    border-radius: var(--border-radius);
    outline: none;
    transition: var(--transition-smooth);
}

.input-with-icon input:focus,
.input-with-icon select:focus {
    border-color: var(--color-gold);
    background: rgba(255,255,255,0.1);
}

.input-with-icon select option {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-widget-submit {
    width: 100%;
    background-color: var(--color-button);
    color: var(--color-white);
    border: none;
    padding: 16px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.btn-widget-submit:hover {
    background-color: var(--color-button-hover);
    color: var(--color-white);
}

.widget-whatsapp-booking {
    margin-top: 25px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.widget-whatsapp-booking span {
    display: block;
    font-size: 11px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

/* ==========================================
   5. ABOUT SECTION
   ========================================== */
.about-section {
    padding: var(--section-spacing) 0;
    background-color: var(--color-ivory);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 45px;
    align-items: center;
}

.section-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    gap: 15px;
}

.highlight-icon {
    font-size: 20px;
    color: var(--color-gold-dark);
    margin-top: 3px;
}

.highlight-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.highlight-text p {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* Media right column styling */
.about-media {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    padding-bottom: 30px;
}

.about-img-main {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
    width: 100%;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 40px;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid rgba(197, 168, 128, 0.2);
}

.experience-badge .years {
    display: block;
    font-family: var(--font-poppins);
    font-size: 38px;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 5px;
    font-weight: 700;
}

.experience-badge .label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-family: var(--font-poppins);
}

/* Counters Row */
.about-counters-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid var(--color-border);
    padding-top: 40px;
}

.counter-card {
    display: flex;
    flex-direction: column;
}

.counter-number {
    font-family: var(--font-poppins);
    font-size: 36px;
    color: var(--color-primary);
    line-height: 1;
    font-weight: 700;
}

.counter-plus {
    font-size: 24px;
    color: var(--color-gold-dark);
}

.counter-label {
    font-family: var(--font-poppins);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-top: 10px;
}

/* ==========================================
   6. ROOMS SECTION & TAB SWITCHER
   ========================================== */
.rooms-section {
    padding: var(--section-spacing) 0;
    background-color: var(--color-beige);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.room-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
    border: 1px solid rgba(36, 32, 85, 0.05);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(228, 191, 92, 0.2);
}

.room-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

.room-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.room-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #B95E10;
    color: var(--color-white);
    padding: 6px 12px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    border-radius: var(--border-radius);
    font-family: var(--font-poppins);
    z-index: 2;
}

.room-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-subtitle-label {
    font-family: var(--font-poppins);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold-dark);
    margin-bottom: 6px;
    display: block;
}

.room-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.room-card-desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.room-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    padding: 16px 0;
    border-top: 1px solid rgba(36, 32, 85, 0.08);
    border-bottom: 1px solid rgba(36, 32, 85, 0.08);
    margin-bottom: 24px;
}

.room-spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-poppins);
    font-size: 11px;
    font-weight: 500;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.room-spec-item .svg-icon {
    color: var(--color-gold-dark);
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.room-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-family: var(--font-poppins);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    line-height: 1;
}

.price-amount {
    font-family: var(--font-poppins);
    font-size: 22px;
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-top: 4px;
}

.price-unit {
    font-size: 11px;
    font-family: var(--font-poppins);
    color: var(--color-text-muted);
    font-weight: 500;
}

.btn-booking-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-button);
    color: var(--color-white);
    padding: 10px 20px;
    font-family: var(--font-poppins);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-button);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-booking-card:hover {
    background-color: var(--color-button-hover);
    border-color: var(--color-button-hover);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(216, 116, 27, 0.25);
}

/* Responsive Grid Adjustments */
@media (max-width: 991px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .room-card-image {
        aspect-ratio: 16 / 10;
    }
}

/* Room Comparison Table Grid */
.room-comparison-container {
    margin-top: 100px;
    padding-top: 60px;
    border-top: 1px solid rgba(28, 28, 28, 0.1);
}

.comparison-title {
    font-size: 26px;
    text-align: center;
    margin-bottom: 40px;
}

.table-wrapper {
    overflow-x: auto;
    background-color: var(--color-ivory);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
    text-align: left;
}

.comparison-table th, .comparison-table td {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(28,28,28,0.06);
    font-size: 14px;
}

.comparison-table th {
    background-color: var(--color-primary);
    color: var(--color-gold);
    font-family: var(--font-poppins);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.1em;
}

.comparison-table tr:hover td {
    background-color: rgba(197, 168, 128, 0.05);
}

/* ==========================================
   7. RESTAURANT SECTION & RESERVATIONS
   ========================================== */
.restaurant-section {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.restaurant-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.restaurant-media {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 60px;
}

.restaurant-badge {
    background: rgba(28, 28, 28, 0.85);
    border-left: 3px solid var(--color-gold);
    padding: 25px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    max-width: 400px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.restaurant-badge i {
    font-size: 24px;
    color: var(--color-gold);
}

.restaurant-badge span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.5;
}

.restaurant-content {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.restaurant-content .section-title {
    color: var(--color-white);
}

.restaurant-content .section-desc {
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
}

.menu-highlights-container {
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--border-radius);
    padding: 35px;
    margin-bottom: 40px;
}

.menu-title {
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-item {
    display: flex;
    flex-direction: column;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dish-name {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-gold-light);
}

.dish-dots {
    flex-grow: 1;
    border-bottom: 1px dashed rgba(255,255,255,0.15);
    margin: 0 15px;
}

.dish-price {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-gold);
}

.dish-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 5px;
}

.restaurant-cta-row {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Modal Popup Form */
.reservation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

.reservation-modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--color-ivory);
    padding: 50px;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: var(--color-primary);
}

.modal-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 5px;
}

.modal-subtitle {
    text-align: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold-dark);
    margin-bottom: 30px;
}

.reservation-form .form-group {
    margin-bottom: 20px;
}

.reservation-form label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    font-weight: 600;
}

.reservation-form input,
.reservation-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    outline: none;
    font-family: var(--font-poppins);
}

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

/* ==========================================
   8. NEARBY ATTRACTIONS
   ========================================== */
.attractions-section {
    padding: var(--section-spacing) 0;
    background-color: var(--color-ivory);
}

.attractions-slider-outer {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.attractions-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.attraction-card {
    min-width: calc(33.333% - 20px);
    width: calc(33.333% - 20px);
    background-color: var(--color-beige);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.attraction-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card-img-box {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.distance-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: #B95E10;
    color: var(--color-white);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--border-radius);
    font-family: var(--font-poppins);
}

.card-info {
    padding: 24px;
}

.card-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.card-info p {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 15px;
    line-height: 1.6;
}

.travel-time {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    font-family: var(--font-poppins);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.slider-arrow {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.slider-arrow:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* ==========================================
   9. GOOGLE REVIEWS SECTION
   ========================================== */
.reviews-section {
    padding: var(--section-spacing) 0;
    background-color: var(--color-beige);
}

/* ─────────────────────────────────────────────
   REVIEWS MARQUEE AUTOMATIC SCROLLING
───────────────────────────────────────────── */
.reviews-marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 15px 0;
    display: flex;
}

.reviews-marquee-container::before,
.reviews-marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.reviews-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--color-beige) 0%, transparent 100%);
}
.reviews-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--color-beige) 0%, transparent 100%);
}
@media (max-width: 768px) {
    .reviews-marquee-container::before,
    .reviews-marquee-container::after {
        width: 40px;
    }
}

.reviews-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: reviewsMarqueeScroll 28s linear infinite;
}

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

@keyframes reviewsMarqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-320px * 4 - 20px * 4));
    }
}

.gmb-card-box {
    width: 320px;
    flex-shrink: 0;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-sizing: border-box;
}

.gmb-card-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.gmb-card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.google-icon-logo svg {
    width: 20px;
    height: 20px;
    display: block;
    stroke: none;
}

.review-stars-row {
    display: flex;
    gap: 3px;
}

.review-stars-row svg {
    width: 13px;
    height: 13px;
    fill: var(--color-gold);
    stroke: none;
}

.brand-google-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 10px 0;
    font-family: var(--font-poppins);
}

.gmb-headline {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 8px 0;
    font-family: var(--font-poppins);
    line-height: 1.3;
}

.gmb-card-box .review-text {
    font-family: var(--font-body);
    font-size: 12.5px;
    line-height: 1.7;
    color: var(--color-text-muted);
    font-style: normal;
    margin: 0 0 16px 0;
}

.reviewer-details-row .divider-line {
    height: 1px;
    background-color: var(--color-border);
    margin-bottom: 12px;
}

.reviewer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reviewer-name {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
    font-family: var(--font-poppins);
}

.reviewer-meta {
    font-size: 9.5px;
    color: var(--color-text-muted);
    margin: 2px 0 0 0;
    font-family: var(--font-poppins);
}

.verified-guest-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #059669; /* emerald-600 */
    font-weight: 500;
    font-size: 9.5px;
    font-family: var(--font-poppins);
}

.verified-guest-tag .tag-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #059669;
}

.reviews-action-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 45px;
}

@media (max-width: 767px) {
    .reviews-action-row {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 0 15px;
    }
    
    .reviews-action-row a {
        text-align: center;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
    }
}

/* ==========================================
   10. GALLERY SECTION & LIGHTBOX
   ========================================== */
.gallery-section {
    padding: var(--section-spacing) 0;
    background-color: var(--color-ivory);
}

.gallery-swiper-container {
    position: relative;
    padding: 20px 40px 60px 40px;
}

.gallery-swiper {
    padding: 10px 10px 30px 10px !important;
}

.gallery-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(36, 32, 85, 0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(228, 191, 92, 0.2);
}

.gallery-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-card:hover .gallery-card-image img {
    transform: scale(1.06);
}

.gallery-card-body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: var(--color-white);
}

.gallery-card-tag {
    font-family: var(--font-poppins);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-gold-dark);
}

.gallery-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-primary);
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Swiper navigation buttons premium customization */
.gallery-swiper-container .swiper-button-prev,
.gallery-swiper-container .swiper-button-next {
    color: var(--color-primary) !important;
    width: 44px;
    height: 44px;
    background-color: var(--color-white);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(28, 28, 28, 0.08);
    transition: var(--transition-smooth);
    border: 1px solid rgba(28, 28, 28, 0.05);
}

.gallery-swiper-container .swiper-button-prev:after,
.gallery-swiper-container .swiper-button-next:after {
    font-size: 16px !important;
    font-weight: bold;
}

.gallery-swiper-container .swiper-button-prev:hover,
.gallery-swiper-container .swiper-button-next:hover {
    background-color: var(--color-primary);
    color: var(--color-white) !important;
    border-color: var(--color-primary);
}

.gallery-swiper-container .swiper-button-prev {
    left: -10px !important;
}

.gallery-swiper-container .swiper-button-next {
    right: -10px !important;
}

/* Swiper pagination bullets premium customization */
.gallery-swiper-container .swiper-pagination-bullet {
    background: var(--color-primary) !important;
    opacity: 0.25;
    width: 8px;
    height: 8px;
    transition: var(--transition-smooth);
}

.gallery-swiper-container .swiper-pagination-bullet-active {
    background: var(--color-gold) !important;
    opacity: 1 !important;
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .gallery-swiper-container {
        padding: 10px 15px 50px 15px;
    }
    .gallery-swiper-container .swiper-button-prev,
    .gallery-swiper-container .swiper-button-next {
        display: none !important;
    }
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 15, 12, 0.96); /* Elegant very dark brown, matching theme */
    z-index: 2000; /* Extremely high z-index to stay on top */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px); /* Premium backdrop blur */
    transition: opacity 0.4s ease;
}

.lightbox-modal.active {
    display: flex;
}

/* Close button style: Premium circular gold outline */
.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.3);
    background: rgba(43, 34, 27, 0.5);
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2005;
}

.close-lightbox svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.close-lightbox:hover {
    border-color: var(--color-gold);
    background: rgba(197, 160, 89, 0.15);
    color: var(--color-gold);
}

.close-lightbox:hover svg {
    transform: rotate(90deg);
}

.lightbox-content-box {
    max-width: 80%;
    max-height: 80%;
    text-align: center;
    position: relative;
    z-index: 2001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease;
}

.lightbox-caption {
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    margin-top: 25px;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Navigation Arrow style: Premium circular gold buttons */
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.3);
    background: rgba(43, 34, 27, 0.5);
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2003;
}

.lightbox-arrow svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.lightbox-arrow.prev-arrow {
    left: 40px;
}

.lightbox-arrow.next-arrow {
    right: 40px;
}

.lightbox-arrow:hover {
    border-color: var(--color-gold);
    background: rgba(197, 160, 89, 0.2);
    color: var(--color-gold);
}

.lightbox-arrow.prev-arrow:hover svg {
    transform: translateX(-3px);
}

.lightbox-arrow.next-arrow:hover svg {
    transform: translateX(3px);
}

/* Responsiveness for Arrows and Close Button on Mobile devices */
@media (max-width: 768px) {
    .lightbox-arrow {
        width: 45px;
        height: 45px;
    }
    .lightbox-arrow.prev-arrow {
        left: 15px;
    }
    .lightbox-arrow.next-arrow {
        right: 15px;
    }
    .close-lightbox {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    .lightbox-content-box {
        max-width: 90%;
    }
    #lightbox-img {
        max-height: 60vh;
    }
    .lightbox-caption {
        font-size: 18px;
        margin-top: 15px;
    }
}

/* ==========================================
   11. WHY CHOOSE US
   ========================================== */
.why-choose-us-section {
    padding: var(--section-spacing) 0;
    background-color: var(--color-beige);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.why-card {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    border-top: 3px solid transparent;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--color-gold);
}

.why-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--color-beige);
    color: var(--color-gold-dark);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon-box {
    background-color: var(--color-primary);
    color: var(--color-gold);
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.why-card p {
    font-size: 13.5px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ==========================================
   12. GOOGLE MAP SECTION & CONTACT DETAILS
   ========================================== */
.map-contact-section {
    background-color: var(--color-ivory);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.map-container-left {
    width: 100%;
    height: 480px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(36, 32, 85, 0.05);
}

.contact-details-right {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .map-container-left {
        height: 380px;
    }
}

.contact-intro {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.info-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-block i {
    font-size: 22px;
    color: var(--color-gold-dark);
    margin-top: 3px;
}

.info-block h4 {
    font-size: 16px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-block p {
    font-size: 14px;
    color: var(--color-text-muted);
}

.contact-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap; /* Force single row on desktop/tablet */
    margin-top: 24px;
}

.contact-cta-buttons .btn-primary,
.contact-cta-buttons .btn-outline,
.contact-cta-buttons .btn-whatsapp-widget {
    margin-top: 0 !important; /* Reset margin top */
    flex: 1; /* Distribute width equally */
    font-size: 13px; /* Fits text cleanly on a single row */
    padding: 0 12px;
    height: 50px; /* Uniform height */
    letter-spacing: 0.5px;
    white-space: nowrap; /* Prevent button text wrapping */
}

.contact-cta-buttons svg {
    width: 18px !important;
    height: 18px !important;
    margin-right: 6px;
}

@media (max-width: 767px) {
    .contact-cta-buttons {
        flex-wrap: wrap;
    }
    .contact-cta-buttons .btn-primary,
    .contact-cta-buttons .btn-outline,
    .contact-cta-buttons .btn-whatsapp-widget {
        flex: 1 1 100%; /* Full width stack on mobile */
        font-size: 14px;
    }
}

/* ==========================================
   13. FINAL BOOKING CTA SECTION
   ========================================== */
.final-cta-section {
    padding: 85px 0; /* Reduced from 140px to make it compact */
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    color: var(--color-white);
}

.cta-inner-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.cta-tag {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    margin-bottom: 12px; /* Reduced from 20px */
    font-weight: 600;
}

.cta-headline {
    font-size: 42px; /* Reduced from 52px */
    color: var(--color-white);
    margin-bottom: 15px; /* Reduced from 20px */
}

.cta-subtitle {
    font-size: 16px; /* Reduced from 18px */
    color: rgba(255,255,255,0.85);
    margin-bottom: 25px; /* Reduced from 40px */
}

/* ==========================================
   14. FOOTER & STICKY BOTTOM BUTTONS
   ========================================== */
.orchid-footer {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    background-color: #B95E10; /* Warm brand copper/orange background */
    padding: 120px 80px; /* Spacing: 120px padding, 80px side padding */
    font-family: var(--font-body);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .orchid-footer {
        padding: 80px 40px;
    }
}
@media (max-width: 767px) {
    .orchid-footer {
        padding: 80px 24px; /* Mobile Side Padding: 24px */
    }
}

.footer-mountain-sketch {
    display: none;
}

.orchid-footer-video {
    display: none;
}

.orchid-footer-overlay {
    display: none;
}

.orchid-footer-content {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* 6 brand logos row */
.brand-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0.9;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .brand-logos-row {
        gap: 30px;
    }
}

.brand-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-white);
    text-align: center;
}

.brand-logo-text {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-top: 8px;
    font-weight: 500;
}

.footer-top-divider {
    width: 90%;
    margin: 0 auto 50px auto;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

/* Main footer 4-column grid */
.footer-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}
@media (max-width: 1024px) {
    .footer-main-grid {
        grid-template-columns: 1fr 1fr; /* Tablet: 2 columns */
        gap: 40px;
    }
}
@media (max-width: 767px) {
    .footer-main-grid {
        grid-template-columns: 1fr; /* Mobile: Single column */
        gap: 35px;
    }
}

.footer-grid-col {
    display: flex;
    flex-direction: column;
}

.orchid-footer-heading {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6); /* Muted white, identical to labels in the reference image */
    margin-bottom: 25px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.4;
}
@media (max-width: 767px) {
    .orchid-footer-heading {
        font-size: 11px;
    }
}

.footer-body-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

/* 3 luxury award badges */
.award-badges-container {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.award-badge-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 8px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    width: 85px;
}

.award-badge-box svg {
    margin-bottom: 6px;
}

.text-gold {
    color: var(--color-gold-light); /* Soft light gold so it pops nicely on orange */
}

.award-title {
    font-size: 8px;
    font-weight: 750;
    color: var(--color-gold-light);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.award-sub {
    font-size: 6px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-top: 2px;
}

/* Column 2: Contact */
.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-brand-title {
    font-weight: 600;
    color: var(--color-gold-light);
    margin-bottom: 0;
}

.contact-address-text {
    opacity: 0.95;
    margin-bottom: 0;
}

.contact-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-group-label {
    font-size: 11px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    margin-bottom: 0;
}

.contact-group-value {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
}

.contact-group-value a {
    color: var(--color-white);
    transition: var(--transition-smooth);
}
.contact-group-value a:hover {
    color: var(--color-gold-light);
}

/* Column 3: Links */
.footer-links-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 480px) {
    .footer-links-wrapper {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .orchid-footer-link {
        white-space: normal !important;
    }
}

.links-subcol {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-toggle-icon {
    display: none;
}
.links-collapse {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 767px) {
    .links-subcol.accordion-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 15px;
        margin-bottom: 10px;
    }
    .links-subcol.accordion-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .orchid-footer-heading.accordion-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        margin-bottom: 0 !important;
        padding: 5px 0;
        transition: color 0.3s ease;
    }
    .orchid-footer-heading.accordion-header:hover {
        color: var(--color-white) !important;
    }
    .accordion-toggle-icon {
        display: inline-flex;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .accordion-toggle-icon .svg-icon {
        width: 12px !important;
        height: 12px !important;
        stroke: rgba(255, 255, 255, 0.6);
        margin-right: 0 !important;
    }
    .links-collapse {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .links-subcol.accordion-item.active .links-collapse {
        margin-top: 15px;
    }
    .links-subcol.accordion-item.active .accordion-toggle-icon {
        transform: rotate(180deg);
    }
}
@media (min-width: 768px) {
    .links-collapse {
        max-height: none !important;
    }
}


.orchid-footer-link {
    position: relative;
    display: inline-block;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    align-self: flex-start;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.orchid-footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-gold-light);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.orchid-footer-link:hover {
    color: var(--color-gold-light);
}

.orchid-footer-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Column 4: Newsletter */
.newsletter-form-wrapper {
    width: 100%;
}

.newsletter-input-box {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    padding: 2px 10px;
    transition: var(--transition-smooth);
}

.newsletter-input-box:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.newsletter-input-box:focus-within {
    border-color: var(--color-gold-light);
    box-shadow: 0 0 8px rgba(247, 230, 187, 0.2);
}

.newsletter-email-field {
    background: transparent;
    border: none;
    outline: none;
    color: var(--color-white);
    padding: 12px 10px;
    font-size: 14px;
    flex-grow: 1;
    font-family: var(--font-body);
}

.newsletter-email-field::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-submit-arrow {
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 18px;
    cursor: pointer;
    padding: 5px 10px;
    transition: var(--transition-smooth);
}

.newsletter-submit-arrow:hover {
    color: var(--color-gold-light);
    transform: scale(1.1);
}

/* Bottom copyright row */
.footer-bottom-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin-bottom: 30px;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 1024px) {
    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
    }
}

.location-tagline {
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.05em;
}

/* Developer Credit */
.developer-credit {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
    letter-spacing: 0.03em;
}

.developer-link {
    color: var(--color-gold-light);
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: var(--transition-smooth);
}

.developer-link:hover {
    color: var(--color-white);
    text-shadow: 0 0 12px rgba(247, 230, 187, 0.8);
}

/* Shiny Shimmer Animation */
@keyframes shiny-sweep {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.shiny-text {
    background: linear-gradient(
        90deg,
        var(--color-gold-light) 0%,
        var(--color-gold-light) 35%,
        #ffffff 50%,
        var(--color-gold-light) 65%,
        var(--color-gold-light) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shiny-sweep 3s ease-in-out infinite;
}

.socials-icon-col {
    display: flex;
    align-items: center;
    gap: 24px;
}

.orchid-footer-social {
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.orchid-footer-social svg {
    width: 18px;
    height: 18px;
}

.orchid-footer-social svg.svg-google path {
    fill: currentColor !important;
}

.orchid-footer-social:hover {
    color: var(--color-gold-light);
    filter: drop-shadow(0 0 8px rgba(247, 230, 187, 0.6));
    transform: translateY(-2px);
}

/* WhatsApp footer icon - brand green color */
.orchid-footer-social[aria-label="WhatsApp"] {
    color: var(--color-whatsapp);
}

.orchid-footer-social[aria-label="WhatsApp"]:hover {
    background-color: #000000;
    color: var(--color-white);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    filter: none;
}

.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--color-primary);
    z-index: 998;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(197, 168, 128, 0.2);
}

.mobile-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--color-white);
    font-family: var(--font-poppins);
}

.mobile-action-btn i {
    font-size: 16px;
    margin-bottom: 4px;
}

.action-call {
    border-right: 1px solid rgba(255,255,255,0.1);
}

.action-book {
    background-color: #3394BB !important;
    color: var(--color-white);
    font-size: 12px;
    transition: var(--transition-smooth);
}

.action-book:hover {
    background-color: #2b7d9f !important;
}

.action-whatsapp {
    border-left: 1px solid rgba(255,255,255,0.1);
    color: var(--color-whatsapp);
}

/* Back to top button styling */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #ffffff;
    color: #B95E10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    transition: var(--transition-smooth);
    border: 1px solid rgba(185, 94, 16, 0.2);
}

.back-to-top:hover {
    background-color: #B95E10;
    color: #ffffff;
    border-color: #B95E10;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(185, 94, 16, 0.3);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ==========================================
   15. RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1200px) {
    .section-title {
        font-size: 40px;
    }
    
    .hero-title {
        font-size: 64px;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-top: 100px;
    }
    
    .floating-booking-widget {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .announcement-bar {
        display: none !important;
    }
    
    .site-header {
        top: 0 !important;
    }

    :root {
        --section-spacing: 50px;
    }
    
    .section-header-split {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-grid, .room-panel-grid, .restaurant-grid, .map-contact-section {
        grid-template-columns: 1fr;
    }
    
    .restaurant-media {
        height: 400px;
    }
    
    .restaurant-content {
        padding: 40px 24px;
    }
    
    .contact-details-right {
        padding: 40px 24px;
    }
    
    .attraction-card {
        min-width: calc(50% - 15px);
        width: calc(50% - 15px);
    }
    
    .gallery-masonry-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
    }
    
    .item-wide {
        grid-column: span 1;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .main-navigation {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .header-actions .btn-booking-header {
        display: none;
    }
    
    .header-container {
        padding: 0 15px;
    }
}

@media (max-width: 767px) {
    .logo-image,
    .custom-logo {
        height: 34px;
    }

    .logo-main {
        font-size: 18px;
    }
    
    .logo-sub {
        font-size: 7px;
        letter-spacing: 0.18em;
    }

    :root {
        --section-spacing: 38px !important;
    }

    .site-header {
        padding: 0 !important;
    }

    .section-container {
        padding: 0 15px !important;
    }

    .section-title {
        font-size: 26px !important;
        line-height: 1.35 !important;
        margin-bottom: 12px !important;
    }

    .section-pretitle {
        font-size: 10px !important;
        letter-spacing: 0.15em !important;
        margin-bottom: 6px !important;
    }

    .section-subtitle-text {
        font-size: 13px !important;
        margin-bottom: 20px !important;
        line-height: 1.6 !important;
    }

    .room-card-body {
        padding: 16px !important;
    }

    .room-card-desc {
        font-size: 13px !important;
        line-height: 1.6 !important;
        margin-bottom: 15px !important;
    }

    .room-specs-grid {
        padding: 12px 0 !important;
        margin-bottom: 16px !important;
        gap: 8px 12px !important;
    }

    .why-card {
        padding: 24px !important;
    }

    .about-content h3 {
        font-size: 24px !important;
        margin-bottom: 15px !important;
    }

    .about-content .section-desc {
        font-size: 13px !important;
        line-height: 1.6 !important;
        margin-bottom: 15px !important;
    }

    .highlight-text h4 {
        font-size: 14px !important;
    }

    .highlight-text p {
        font-size: 12px !important;
    }
    
    .hero-title {
        font-size: 46px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .about-highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .about-counters-row {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .room-pricing-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .attraction-card {
        min-width: 100%;
        width: 100%;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-masonry-grid {
        grid-template-columns: 1fr;
    }
    
    .item-tall {
        grid-row: span 1;
    }
    
    .cta-headline {
        font-size: 34px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .copyright-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .mobile-action-bar {
        display: grid;
    }
    
    body {
        padding-bottom: 60px; /* Cushion for sticky footer */
    }
    
    .back-to-top {
        bottom: 80px; /* Lift above mobile footer */
    }
}

/* ==========================================
   16. STANDALONE BOOKING & SHIMMER OPTIMIZATIONS
   ========================================== */
.booking-section-standalone {
    padding: 35px 0;
    background-color: var(--color-beige);
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}

.booking-section-standalone .floating-booking-widget {
    background: var(--color-primary);
    color: var(--color-white);
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: var(--shadow-premium);
    padding: 18px 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(197, 168, 128, 0.15);
}

.booking-section-standalone .widget-title {
    color: var(--color-gold);
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: -0.05em; /* Reduced spacing between characters */
    margin-bottom: 25px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 400;
    font-style: normal;
}

.booking-section-standalone .form-group label {
    color: var(--color-gold-light);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    font-family: var(--font-poppins);
}

.booking-section-standalone .input-with-icon i {
    color: var(--color-gold);
    position: absolute;
    left: 15px;
    font-size: 14px;
    z-index: 1;
}

.booking-section-standalone input,
.booking-section-standalone select {
    width: 100%;
    height: 48px;
    padding: 0 15px 0 45px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--color-white);
    font-family: var(--font-poppins);
    font-size: 13px;
    border-radius: var(--border-radius);
    outline: none;
    transition: var(--transition-smooth);
}

.booking-section-standalone input:focus,
.booking-section-standalone select:focus {
    border-color: var(--color-gold);
    background: rgba(255,255,255,0.1);
}

.booking-section-standalone select option {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.booking-section-standalone .btn-widget-submit {
    height: 48px;
    width: 100%;
    background-color: var(--color-button);
    color: var(--color-white);
    border: none;
    font-family: var(--font-poppins);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.booking-section-standalone .btn-widget-submit:hover {
    background-color: var(--color-button-hover);
    color: var(--color-white);
}

.booking-section-standalone .widget-whatsapp-booking {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 25px;
    padding-top: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.booking-section-standalone .whatsapp-label {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-family: var(--font-poppins);
}

.booking-section-standalone .btn-whatsapp-widget-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    height: 48px;
    padding: 0 25px;
    font-family: var(--font-poppins);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.booking-section-standalone .btn-whatsapp-widget-inline:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.2);
}

.room-tag {
    font-family: var(--font-poppins);
}

.room-specs-row span {
    font-family: var(--font-poppins);
}

.amenity {
    font-family: var(--font-poppins);
}

.trust-list li {
    font-family: var(--font-poppins);
}

.footer-logo-sub {
    font-family: var(--font-poppins);
}

/* Premium CTA Shimmer Effects */
.btn-primary,
.btn-booking-header,
.btn-widget-submit,
.action-book,
.mobile-action-btn.action-book {
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-booking-header::before,
.btn-widget-submit::before,
.action-book::before,
.mobile-action-btn.action-book::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: button-shimmer 7s infinite ease-in-out;
}

@keyframes button-shimmer {
    0% {
        left: -150%;
    }
    50% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

@media (max-width: 767px) {
    .booking-section-standalone {
        padding: 15px 0;
    }
    .booking-section-standalone .floating-booking-widget {
        padding: 16px;
    }
    .booking-section-standalone .booking-form-grid-horizontal {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .booking-section-standalone .booking-form-grid-horizontal .form-submit {
        width: 100%;
    }
    .booking-section-standalone input,
    .booking-section-standalone select {
        height: 48px;
        padding: 0 10px 0 35px;
        font-size: 16px; /* Avoid iOS zoom on focus */
    }
    .booking-section-standalone .input-with-icon .svg-icon {
        left: 12px;
        width: 16px;
        height: 16px;
    }
    .booking-section-standalone .btn-widget-submit {
        height: 48px;
        font-size: 13px;
    }
}

/* ==========================================
   17. SVG PREMIUM MINIMALIST ICONS STYLING
   ========================================== */
.svg-icon {
    width: 1.25em;
    height: 1.25em;
    display: inline-block;
    vertical-align: middle;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: transform 0.3s ease;
}

.svg-phone {
    transform: scaleX(-1);
}

/* Specific alignments and sizes */
.announcement-bar .svg-icon {
    width: 14px;
    height: 14px;
    vertical-align: -2px;
    margin-right: 6px;
    stroke-width: 2.0;
}

.main-navigation .svg-icon {
    width: 16px;
    height: 16px;
}

.input-with-icon .svg-icon {
    position: absolute;
    left: 15px;
    color: var(--color-gold);
    width: 18px;
    height: 18px;
    pointer-events: none;
    z-index: 1;
}

.room-specs-row .svg-icon {
    color: var(--color-gold-dark);
    margin-right: 6px;
    width: 16px;
    height: 16px;
    vertical-align: -2px;
}

.amenity .svg-icon {
    color: var(--color-gold);
    width: 15px;
    height: 15px;
}

.why-icon-box .svg-icon {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.distance-badge .svg-icon {
    width: 12px;
    height: 12px;
    margin-right: 4px;
    vertical-align: -1px;
}

.travel-time .svg-icon {
    width: 12px;
    height: 12px;
    margin-right: 4px;
    vertical-align: -1px;
}

.review-stars .svg-icon {
    width: 14px;
    height: 14px;
    fill: var(--color-gold);
}

.social-links .svg-icon {
    width: 16px;
    height: 16px;
}

.footer-contact-list .svg-icon {
    color: var(--color-gold);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.google-rating-summary .svg-icon.svg-star {
    width: 14px;
    height: 14px;
    fill: var(--color-gold);
}

.google-rating-summary .svg-icon.svg-google {
    width: 16px;
    height: 16px;
    fill: currentColor;
    vertical-align: -3px;
}

.payment-badges .svg-icon {
    width: 32px;
    height: 32px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.payment-badges .svg-icon:hover {
    opacity: 1;
}

.mobile-action-bar .svg-icon {
    width: 18px;
    height: 18px;
    margin-bottom: 4px;
}

.back-to-top .svg-icon {
    width: 20px;
    height: 20px;
}

/* ==========================================
   18. RESORT AMENITIES & SERVICES SECTION
   ========================================== */
.amenities-section {
    padding: var(--section-spacing) 0;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

@media (min-width: 576px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (min-width: 992px) {
    .amenities-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

.amenity-category-card {
    background-color: var(--color-beige);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(197, 168, 128, 0.15);
    transition: var(--transition-smooth);
}

.amenity-category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
    border-color: var(--color-gold);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
    padding-bottom: 10px;
}

.category-icon-box {
    color: var(--color-gold);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon-box .svg-icon {
    width: 20px;
    height: 20px;
}

.category-header h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    color: var(--color-primary);
    margin: 0;
    letter-spacing: -0.05em; /* Reduced character spacing */
}

.amenity-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amenity-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-family: var(--font-poppins);
    font-size: 13px;
    color: var(--color-primary);
    border-bottom: 1px solid rgba(197, 168, 128, 0.08);
}

.amenity-list li:last-child {
    border-bottom: none;
}

.amenity-name {
    font-weight: 400;
}

.amenity-status {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: var(--color-text-muted);
}

.amenity-status.status-free {
    color: #2e7d32;
    background-color: rgba(46, 125, 50, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
}

.amenity-status.status-charge {
    color: #c62828;
    background-color: rgba(198, 40, 40, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
}

.amenities-exclusions-row {
    margin-top: 40px;
}

.exclusion-card {
    background-color: var(--color-ivory);
    border: 1px solid rgba(197, 168, 128, 0.2);
    padding: 20px 25px;
    border-radius: var(--border-radius);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.exclusion-icon-box {
    color: var(--color-gold-dark);
    flex-shrink: 0;
    margin-top: 2px;
}

.exclusion-card p {
    margin: 0;
    font-family: var(--font-poppins);
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-primary);
}

/* ==========================================================================
   18. PREMIUM WEBKIT DATE-PICKER STYLES & LAYOUT FIXES
   ========================================================================== */

/* Hide native Webkit calendar selector box/button */
input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 5;
    -webkit-appearance: none;
    appearance: none;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-clear-button {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}

/* Make date inputs container-relative and custom-styled */
input[type="date"] {
    position: relative;
    -webkit-appearance: none;
    appearance: none;
}

/* Fix iOS date input styles & text color blending */
input[type="date"]::-webkit-datetime-edit {
    color: var(--color-white) !important;
    font-family: var(--font-body);
}

input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    color: var(--color-white) !important;
}

input[type="date"]::-webkit-datetime-edit-text,
input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field {
    color: var(--color-white) !important;
}

/* ==========================================
   MOBILE ANNOUNCEMENT BAR & STICKY HEADER
   ========================================== */
.mobile-announcement-bar {
    display: none;
}

@media (max-width: 991px) {
    .mobile-announcement-bar {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        background-color: var(--color-primary); /* Navy Blue */
        padding: 5px 15px;
        font-family: var(--font-heading);
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        box-sizing: border-box;
        z-index: 1001;
    }

    .mobile-announcement-bar a {
        color: var(--color-white);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: var(--transition-smooth);
    }

    .mobile-announcement-bar .m-announcement-book {
        color: var(--color-gold-light);
    }

    .mobile-announcement-bar .m-announcement-book strong {
        color: var(--color-white);
        font-weight: 700;
        border-bottom: 1px solid var(--color-gold-light);
    }

    .mobile-announcement-bar .m-announcement-whatsapp {
        color: var(--color-white);
    }

    .mobile-announcement-bar .m-announcement-whatsapp svg,
    .mobile-announcement-bar .m-announcement-whatsapp .svg-icon {
        width: 12px;
        height: 12px;
        fill: #25D366; /* WhatsApp green */
        display: inline-block;
    }

    /* Make mobile header sticky always and adjust paddings */
    .site-header {
        position: fixed !important;
        top: 0 !important;
        padding: 0 !important;
        background-color: var(--color-white) !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
        z-index: 999;
    }

    .site-header .header-container {
        padding: 6px 15px !important;
    }

    /* Adjust page content padding top to prevent overlap on mobile */
    body.home {
        margin-top: 0;
    }
}

/* ==========================================
   SHINING BORDER ANIMATION UNDER HEADER
   ========================================== */
.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(185, 94, 16, 0) 0%, 
        rgba(185, 94, 16, 0.3) 25%, 
        #B95E10 50%, 
        rgba(185, 94, 16, 0.3) 75%, 
        rgba(185, 94, 16, 0) 100%
    );
    background-size: 200% 100%;
    animation: header-border-shine 3s infinite linear;
    z-index: 1002;
    pointer-events: none;
}

@keyframes header-border-shine {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
