﻿@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ============================================
   DESIGN TOKENS — PREMIUM PALETTE
   ============================================ */
:root {
    --gold-primary: #c9a96e;
    --gold-light: #dfc89a;
    --gold-dark: #a07d4a;
    --gold-glow: rgba(201, 169, 110, 0.25);

    --bg-cream: #faf8f4;
    --bg-sand: #f0ece4;
    --bg-warm: #f5f1eb;

    --dark-deep: #1a1714;
    --dark-rich: #2a2520;
    --dark-soft: #3d3730;

    --text-primary: #2c2825;
    --text-secondary: #6b6460;
    --text-muted: #9a948e;

    --white-pure: #ffffff;
    --white-soft: rgba(255, 255, 255, 0.95);
    --white-transparent: rgba(255, 255, 255, 0.08);

    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 4px 25px rgba(201, 169, 110, 0.2);

    --transition-smooth: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: all 0.3s ease;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ============================================
   GLOBAL RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-cream);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

::selection {
    background: var(--gold-primary);
    color: var(--white-pure);
}

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

/* ============================================
   TYPOGRAPHY — PREMIUM
   ============================================ */
h1, h2, h3, h4, h5, h6, .navbar-brand, .section-title {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    color: var(--text-primary);
    font-weight: 500;
}

.font-serif {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif !important;
}

.font-lato {
    font-family: 'Lato', sans-serif !important;
}

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

.bg-dark-premium {
    background-color: var(--dark-deep) !important;
}

/* ============================================
   BUTTONS — PREMIUM
   ============================================ */
.btn-gold {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white-pure);
    border: none;
    border-radius: 0;
    padding: 14px 36px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-family: 'Lato', sans-serif;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-deep), var(--dark-rich));
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-gold:hover {
    color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover::before {
    left: 0;
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-primary);
    border: 1.5px solid var(--gold-primary);
    border-radius: 0;
    padding: 14px 36px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-family: 'Lato', sans-serif;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-primary);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-outline-gold:hover {
    color: var(--white-pure);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.btn-outline-gold:hover::before {
    left: 0;
}

/* ============================================
   NAVBAR — PREMIUM GLASSMORPHISM
   ============================================ */
.navbar {
    background: transparent !important;
    border-bottom: none;
    padding: 20px 0;
    transition: var(--transition-smooth);
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(250, 248, 244, 0.92) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 0;
    box-shadow: var(--shadow-soft);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white-pure) !important;
    transition: var(--transition-smooth);
    font-weight: 600;
}

.navbar.scrolled .navbar-brand {
    color: var(--text-primary) !important;
}

.nav-link {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 400;
    padding: 8px 0 !important;
    margin: 0 16px;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--gold-primary);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

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

.nav-link:hover {
    color: var(--gold-light) !important;
}

.navbar.scrolled .nav-link {
    color: var(--text-primary) !important;
}

.navbar.scrolled .nav-link:hover {
    color: var(--gold-primary) !important;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding: 6px 10px;
}

.navbar.scrolled .navbar-toggler {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.navbar-toggler-icon {
    filter: invert(1);
    transition: var(--transition-fast);
}

.navbar.scrolled .navbar-toggler-icon {
    filter: none;
}

/* Dropdown */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-medium);
    padding: 8px 0;
}

.dropdown-item {
    font-size: 0.85rem;
    padding: 8px 20px;
    transition: var(--transition-fast);
}

.dropdown-item:hover, .dropdown-item.active {
    background: var(--bg-sand);
    color: var(--gold-dark);
}

/* ============================================
   HERO SECTION — CINEMATIC FULLSCREEN
   ============================================ */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.8s ease, transform 8s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 23, 20, 0.35) 0%,
        rgba(26, 23, 20, 0.15) 40%,
        rgba(26, 23, 20, 0.5) 80%,
        rgba(26, 23, 20, 0.75) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white-pure);
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid rgba(201, 169, 110, 0.4);
    padding: 8px 24px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInDown 1s 0.3s forwards;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 500;
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
    color: var(--white-pure);
    line-height: 1.15;
    opacity: 0;
    animation: fadeInUp 1s 0.6s forwards;
}

.hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.75);
    opacity: 0;
    animation: fadeInUp 1s 0.9s forwards;
}

.hero-buttons {
    opacity: 0;
    animation: fadeInUp 1s 1.2s forwards;
}

/* Hero Logo Seal */
.hero-logo-wrap {
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInDown 1s 0.1s forwards;
}

.hero-logo-seal {
    width: 110px;
    height: 110px;
    object-fit: contain;
    border-radius: 50%;
    border: none;
    box-shadow: none;
    transition: var(--transition-smooth);
    filter: none;
    background: transparent;
}

.hero-logo-seal:hover {
    transform: translateY(-2px) scale(1.03);
}

/* Hero slide indicators */
.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 30px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
}

.hero-dot.active {
    background: var(--gold-primary);
    width: 50px;
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 28px;
    right: 32px;
    z-index: 3;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s 1.8s forwards;
    pointer-events: none;
}

.scroll-hint span {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold-primary), transparent);
    margin: 0 auto;
    animation: scrollPulse 2s ease-in-out infinite;
}

@media (max-width: 991.98px) {
    .scroll-hint {
        display: none;
    }
}

/* ============================================
   SEARCH WIDGET — PREMIUM FLOATING
   ============================================ */
.search-widget {
    background: var(--white-pure);
    padding: 2.5rem 3rem;
    box-shadow: var(--shadow-heavy);
    margin-top: -80px;
    position: relative;
    z-index: 10;
    border-bottom: 3px solid var(--gold-primary);
}

.search-widget label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.search-widget .form-control,
.search-widget .form-select {
    border: none;
    border-bottom: 1.5px solid #e8e4de;
    border-radius: 0;
    padding: 0.6rem 0;
    background: transparent;
    font-size: 1rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.search-widget .form-control:focus,
.search-widget .form-select:focus {
    box-shadow: none;
    border-bottom-color: var(--gold-primary);
}

/* ============================================
   SECTION STYLING — PREMIUM
   ============================================ */
.section-padding {
    padding: 8rem 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.2;
}

.section-subtitle {
    font-family: 'Lato', sans-serif;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.78rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

/* Ornamental divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 1.5rem auto 0;
    max-width: 200px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-primary));
}

.section-divider::after {
    background: linear-gradient(to left, transparent, var(--gold-primary));
}

.section-divider .diamond {
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.bg-cream {
    background-color: var(--bg-cream);
}

/* ============================================
   PARALLAX SECTION
   ============================================ */
.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 23, 20, 0.7);
}

/* ============================================
   EXPERIENCE SECTION — CINEMATIC SHOWCASE
   ============================================ */
.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 3rem;
}

.experience-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.experience-item.tall {
    grid-row: span 2;
}

.experience-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.experience-item:hover img {
    transform: scale(1.08);
}

.experience-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(26, 23, 20, 0.8), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.experience-item:hover .overlay {
    transform: translateY(0);
    opacity: 1;
}

.experience-item .overlay h4 {
    color: var(--white-pure);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.experience-item .overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   ROOM CARDS — PREMIUM
   ============================================ */
.card {
    border: none;
    border-radius: 0;
    background: transparent;
}

.room-card {
    transition: var(--transition-smooth);
    position: relative;
}

.room-card:hover {
    transform: translateY(-12px);
}

.room-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold-primary);
    transition: var(--transition-smooth);
}

.room-card:hover::after {
    width: 100%;
}

.room-img-wrap {
    overflow: hidden;
    position: relative;
}

.room-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.room-card:hover .room-img-wrap::after {
    opacity: 1;
}

.room-img-wrap img {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.room-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold-primary);
}

/* ============================================
   FACILITY CARDS — PREMIUM
   ============================================ */
.facility-card {
    padding: 3rem 2rem;
    background: var(--white-pure);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-primary);
    transform: scaleX(0);
    transition: var(--transition-smooth);
    transform-origin: left;
}

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

.facility-card:hover::before {
    transform: scaleX(1);
}

.facility-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.facility-card:hover .facility-icon {
    transform: scale(1.1);
    color: var(--gold-dark);
}

/* ============================================
   GALLERY — MASONRY GRID
   ============================================ */
.gallery-masonry {
    columns: 3;
    column-gap: 16px;
    padding: 0;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: inline-block;
    width: 100%;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.85);
}

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

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

.gallery-item .gallery-overlay i {
    font-size: 2rem;
    color: var(--white-pure);
    transform: scale(0.7);
    transition: var(--transition-bounce);
}

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

@media (max-width: 991px) {
    .gallery-masonry {
        columns: 2;
    }
}

@media (max-width: 575px) {
    .gallery-masonry {
        columns: 1;
    }
}

/* ============================================
   AMBIANCE / QUOTE SECTION
   ============================================ */
.ambiance-section {
    position: relative;
    padding: 10rem 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.ambiance-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 23, 20, 0.65);
}

.ambiance-quote {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white-pure);
    max-width: 750px;
    margin: 0 auto;
}

.ambiance-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
}

.ambiance-quote blockquote::before {
    content: '\201C';
    font-size: 6rem;
    color: var(--gold-primary);
    font-family: 'Playfair Display', serif;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.4;
    line-height: 1;
}

.ambiance-quote cite {
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
}

/* ============================================
   BOOKING SECTION — PREMIUM
   ============================================ */
.booking-section {
    position: relative;
    overflow: hidden;
}

.booking-section .booking-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.booking-section .booking-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 23, 20, 0.92), rgba(42, 37, 32, 0.88));
}

.booking-form-card {
    background: var(--white-pure);
    padding: 3rem;
    position: relative;
    z-index: 2;
    border-top: 4px solid var(--gold-primary);
    box-shadow: var(--shadow-heavy);
    border-radius: 0 0 6px 6px;
}

.booking-section-title {
    font-size: clamp(2.35rem, 4vw, 3.2rem);
}

.booking-intro {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.9;
}

.booking-benefits {
    display: grid;
    gap: 0.85rem;
    font-family: 'Lato', sans-serif;
}

.booking-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.55;
}

.booking-benefits i {
    flex: 0 0 auto;
    font-size: 1.15rem;
}

.booking-form-heading {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #ece8e2;
}

.booking-form-heading h3 {
    margin: 0 0 0.25rem;
    color: var(--text-primary);
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.booking-form-heading p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.booking-form-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border: 1px solid rgba(186, 143, 76, 0.42);
    color: var(--gold-dark);
    font-size: 1.1rem;
}

.booking-field label,
.booking-detail-form label {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.booking-field label span,
.booking-detail-form label span {
    color: #b42318;
}

.booking-field .form-control,
.booking-field .form-select,
.booking-detail-form .form-control,
.booking-detail-form .form-select {
    min-height: 50px;
    border: 1px solid #ded9d1;
    border-radius: 4px;
    background-color: #fff;
    color: var(--text-primary);
    padding: 0.78rem 0.9rem;
    font-size: 0.95rem;
}

.booking-field .form-control:focus,
.booking-field .form-select:focus,
.booking-detail-form .form-control:focus,
.booking-detail-form .form-select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(186, 143, 76, 0.14);
}

.booking-field small,
.booking-detail-form small {
    font-size: 0.78rem;
    line-height: 1.5;
}

.booking-submit {
    min-height: 54px;
}

.booking-time-note {
    display: grid;
    gap: 12px;
    max-width: 320px;
}

.booking-time-note-inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 520px;
}

.booking-time-note div {
    background: var(--white-pure);
    border-left: 3px solid var(--gold-primary);
    padding: 16px 18px;
    box-shadow: var(--shadow-soft);
}

.booking-time-note span {
    display: block;
    color: var(--text-muted);
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.booking-time-note strong {
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 500;
}

.terms-list {
    list-style: none;
    counter-reset: terms;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 0;
    margin: 0;
}

.terms-list li {
    counter-increment: terms;
    background: var(--white-pure);
    border: 1px solid rgba(0, 0, 0, 0.04);
    min-height: 96px;
    padding: 18px 18px 18px 62px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.75;
    box-shadow: var(--shadow-soft);
}

.terms-list li::before {
    content: counter(terms, decimal-leading-zero);
    position: absolute;
    top: 18px;
    left: 18px;
    color: var(--gold-primary);
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    line-height: 1;
}

.terms-list-compact {
    grid-template-columns: 1fr;
}

.terms-list-compact li {
    min-height: auto;
}

.booking-consent {
    background: var(--bg-sand);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 14px 16px 14px 42px;
}

.booking-consent .form-check-input {
    margin-left: -26px;
    margin-top: 0.35rem;
}

.booking-consent .form-check-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.booking-consent a {
    color: var(--gold-dark);
    font-weight: 700;
    text-decoration: none;
}

.payment-choice-card {
    display: block;
    cursor: pointer;
}

.payment-choice-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-choice-body {
    display: block;
    height: 100%;
    background: var(--white-pure);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    padding: 18px;
    transition: var(--transition-fast);
}

.payment-choice-card:hover .payment-choice-body,
.payment-choice-card input:checked + .payment-choice-body {
    border-color: var(--gold-primary);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.2);
}

.payment-choice-card input:checked + .payment-choice-body {
    background: #fffaf0;
}

/* ============================================
   FOOTER — PREMIUM
   ============================================ */
footer.bg-dark-premium {
    background: linear-gradient(180deg, var(--dark-deep), #141210) !important;
}

.footer-text-light {
    color: rgba(255, 255, 255, 0.55) !important;
}

.footer-link {
    color: rgba(255, 255, 255, 0.55) !important;
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
}

.footer-link:hover {
    color: var(--gold-primary) !important;
    padding-left: 5px;
}

.footer-social-link {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 1.1rem;
}

.footer-social-link:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.2);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    opacity: 1;
    margin: 2rem 0;
}

/* ============================================
   FLOATING WHATSAPP — PREMIUM
   ============================================ */
.float-wa {
    position: fixed;
    width: 58px;
    height: 58px;
    bottom: 35px;
    right: 35px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white-pure);
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    z-index: 100;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.float-wa:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
    color: var(--white-pure);
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 35px;
    right: 105px;
    width: 44px;
    height: 44px;
    background: var(--dark-deep);
    color: var(--gold-primary);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 99;
    text-decoration: none;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--gold-primary);
    color: var(--white-pure);
    transform: translateY(-3px);
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-deep);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-text {
    font-family: 'Playfair Display', serif;
    color: var(--gold-primary);
    font-size: 1.8rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.preloader-bar {
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-primary);
    animation: preloaderSlide 1.5s ease-in-out infinite;
}

/* ============================================
   CAROUSEL TWEAKS
   ============================================ */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 20px;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes preloaderSlide {
    0% { left: -100%; }
    50% { left: 0%; }
    100% { left: 100%; }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Scroll reveal classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ============================================
   RESPONSIVE — PREMIUM MOBILE
   ============================================ */
@media (max-width: 1199.98px) {
    .hero-content {
        max-width: 780px;
        padding: 0 18px;
    }

    .hero-title {
        font-size: 2.9rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 3px;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }

    .hero-buttons .btn {
        min-width: 180px;
    }

    .search-widget {
        padding: 2rem 1.5rem;
        margin-top: -48px;
    }

    #searchAvailabilityForm .col-md-3,
    #searchAvailabilityForm .col-md-2 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    #searchAvailabilityForm .col-md-2:last-of-type,
    #searchAvailabilityForm .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    #searchAvailabilityForm .btn {
        min-height: 56px;
    }
}

@media (max-width: 991px) {
    .hero-content {
        max-width: 760px;
    }

    .hero-logo-wrap {
        margin-bottom: 1.15rem;
    }

    .hero-logo-seal {
        width: 96px;
        height: 96px;
    }

    .hero-title {
        font-size: 2.55rem;
    }

    .hero-subtitle {
        font-size: 0.94rem;
    }

    .section-padding {
        padding: 5rem 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .experience-item.tall {
        grid-row: span 1;
    }

    .ambiance-section {
        padding: 6rem 0;
        background-attachment: scroll;
    }

    .parallax-section {
        background-attachment: scroll;
    }

    .booking-section .booking-bg {
        background-attachment: scroll;
    }

    .navbar-collapse {
        background: rgba(250, 248, 244, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        margin-top: 10px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-medium);
    }

    .navbar-collapse .nav-link {
        color: var(--text-primary) !important;
        margin: 4px 0;
        padding: 10px 0 !important;
    }

    .navbar-collapse .nav-link:hover {
        color: var(--gold-primary) !important;
    }

    .terms-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .navbar {
        padding: 14px 0;
    }

    .navbar.scrolled {
        padding: 9px 0;
    }

    .navbar-brand {
        max-width: calc(100% - 64px);
        margin-right: 0;
    }

    .navbar-brand img {
        width: 44px !important;
        height: 44px !important;
        flex: 0 0 44px;
    }

    .navbar-toggler {
        width: 44px;
        height: 44px;
        padding: 5px 8px;
        flex: 0 0 44px;
    }

    .hero-section {
        height: auto;
        min-height: 100svh;
        align-items: center;
        padding: 92px 0 72px;
    }

    .hero-content {
        width: 100%;
        max-width: 540px;
        padding: 0 20px;
    }

    .hero-logo-wrap {
        display: flex;
        justify-content: center;
        margin-bottom: 0.9rem;
    }

    .hero-logo-seal {
        width: 84px;
        height: 84px;
    }

    .hero-badge {
        margin-bottom: 1.35rem;
        padding: 6px 18px;
    }

    .hero-title {
        font-size: 2.15rem;
        letter-spacing: 0.5px;
        line-height: 1.12;
        margin-bottom: 0.95rem;
        overflow-wrap: anywhere;
    }

    .hero-subtitle {
        font-size: 0.78rem;
        letter-spacing: 1.8px;
        line-height: 1.7;
        margin-bottom: 1.55rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
        width: min(100%, 360px);
        margin-inline: auto;
    }

    .search-widget {
        margin-top: -14px;
        padding: 1.45rem 1rem;
        box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
    }

    .search-widget .row {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1.2rem;
    }

    #searchAvailabilityForm .col-md-3,
    #searchAvailabilityForm .col-md-2 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    #searchAvailabilityForm .col-md-2:last-of-type {
        flex: 0 0 100%;
        max-width: 100%;
    }

    #searchAvailabilityForm .btn {
        width: 100%;
    }

    .booking-form-card {
        padding: 2rem 1.5rem;
    }

    .booking-layout {
        --bs-gutter-y: 3rem;
    }

    .booking-section-title {
        font-size: 2.45rem;
    }

    .reveal-left,
    .reveal-right {
        transform: translateY(24px);
    }

    .reveal-left.revealed,
    .reveal-right.revealed {
        transform: translateY(0);
    }

    #about .img-fluid {
        height: 360px !important;
    }

    .room-card .card-img-top {
        height: 300px !important;
    }

    .section-title {
        overflow-wrap: anywhere;
    }

    .booking-time-note-inline {
        grid-template-columns: 1fr;
    }

    .terms-list li {
        padding: 16px 16px 16px 56px;
    }

    .scroll-top {
        bottom: 82px;
        right: 18px;
        width: 42px;
        height: 42px;
    }

    .float-wa {
        bottom: 20px;
        right: 14px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .hero-section {
        min-height: 760px;
        padding: 82px 0 64px;
    }

    .hero-content {
        padding: 0 18px;
    }

    .hero-logo-seal {
        width: 72px;
        height: 72px;
    }

    .hero-badge {
        font-size: 0.58rem;
        letter-spacing: 1.6px;
        line-height: 1.5;
        padding: 6px 12px;
        max-width: 100%;
    }

    .hero-buttons {
        gap: 0.75rem !important;
    }

    .hero-buttons .btn {
        width: 100%;
        min-width: 0;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .search-widget {
        padding: 1.2rem 0.9rem;
        margin-top: -10px;
    }

    #about .img-fluid {
        height: 300px !important;
    }

    .room-card .card-img-top {
        height: 260px !important;
    }

    .booking-form-card {
        padding: 1.5rem 1rem;
    }

    .booking-form-heading {
        align-items: flex-start;
        margin-bottom: 1.5rem;
    }

    .booking-form-heading h3 {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }

    .booking-field .form-control,
    .booking-field .form-select,
    .booking-detail-form .form-control,
    .booking-detail-form .form-select {
        min-height: 48px;
        font-size: 16px;
    }
}

/* ============================================
   GLIGHTBOX CUSTOM
   ============================================ */
.glightbox-clean .goverlay {
    background: rgba(26, 23, 20, 0.92) !important;
}

.glightbox-clean .gclose {
    background: transparent !important;
    opacity: 0.7;
}

.glightbox-clean .gclose:hover {
    opacity: 1;
}

/* ============================================
   ROOM DETAIL PAGE — PREMIUM
   ============================================ */
.room-detail-hero {
    height: 65vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.room-detail-hero .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.room-detail-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 23, 20, 0.3), rgba(26, 23, 20, 0.6));
    z-index: 1;
}

.room-detail-hero .content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white-pure);
}

.room-detail-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white-pure);
    font-weight: 500;
    letter-spacing: 2px;
}

.room-detail-sidebar {
    background: var(--white-pure);
    padding: 2.5rem;
    box-shadow: var(--shadow-medium);
    border-top: 4px solid var(--gold-primary);
    position: sticky;
    top: 100px;
    border-radius: 0;
}
.hover-gold:hover { color: var(--gold-primary) !important; }
.transition-fast { transition: 0.3s ease; }
