html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ============================================
   Hotel White Tower - Premium Luxury CSS
   Theme: Black, White & Gold
   ============================================ */

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

/* ---------- CSS Variables ---------- */
:root {
    --black: #050505;
    --dark: #111111;
    --dark2: #1a1a1a;
    --gold: #c9972b;
    --gold-light: #e0b84f;
    --gold-pale: #f5e9c8;
    --white: #ffffff;
    --off-white: #f8f6f1;
    --text-dark: #1e1e1e;
    --text-muted: #6b6b6b;
    --border-gold: rgba(201, 151, 43, 0.3);
    --shadow-gold: 0 8px 32px rgba(201, 151, 43, 0.18);
    --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.18);
    --font-display: "Playfair Display", serif;
    --font-body: "Jost", sans-serif;
    --font-serif: "Cormorant Garamond", serif;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}
img {
    max-width: 100%;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.97);
    border-bottom: 1px solid var(--border-gold);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 0;
}

.navbar-main.scrolled {
    background: rgba(5, 5, 5, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 78px;
}

.navbar-brand-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, #1a1a1a, #333);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-placeholder span {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.brand-name {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.1;
}

.brand-sub {
    font-family: var(--font-body);
    color: var(--gold);
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 50%;
    right: 50%;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    left: 0.85rem;
    right: 0.85rem;
}

.nav-book-btn {
    background: var(--gold);
    color: var(--black) !important;
    padding: 0.55rem 1.4rem !important;
    border-radius: 2px;
    font-weight: 600 !important;
    letter-spacing: 1.5px;
    font-size: 0.75rem !important;
}

.nav-book-btn:hover {
    background: var(--gold-light) !important;
    color: var(--black) !important;
}

.nav-book-btn::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: 1px solid var(--border-gold);
    z-index: 999;
    padding: 1.5rem 2rem;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-menu a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.mobile-menu .nav-book-btn {
    display: inline-block;
    margin-top: 1rem;
    background: var(--gold);
    color: var(--black) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 2px;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
    margin-top: 78px;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(5, 5, 5, 0.72) 0%,
        rgba(5, 5, 5, 0.42) 50%,
        rgba(201, 151, 43, 0.08) 100%
    );
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-eyebrow {
    font-family: var(--font-body);
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: "";
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    color: var(--white);
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 1.4rem;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.hero-title em {
    color: var(--gold);
    font-style: italic;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 2.4rem;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
    padding: 0.85rem 2.2rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 151, 43, 0.35);
}

.btn-outline-gold {
    background: transparent;
    color: var(--white);
    padding: 0.85rem 2.2rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline-gold:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 151, 43, 0.08);
    transform: translateY(-2px);
}

.slider-controls {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 28px;
    height: 3px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.slider-dot.active {
    background: var(--gold);
    width: 48px;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(5, 5, 5, 0.5);
    border: 1px solid var(--border-gold);
    color: var(--white);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
    font-size: 1rem;
}

.slider-prev {
    left: 2rem;
}
.slider-next {
    right: 2rem;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section {
    padding: 5.5rem 0;
}
.section-sm {
    padding: 3.5rem 0;
}
.section-dark {
    background: var(--dark);
}
.section-black {
    background: var(--black);
}
.section-off {
    background: var(--off-white);
}

.section-label {
    font-family: var(--font-body);
    color: var(--gold);
    font-size: 0.68rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.section-title.light {
    color: var(--white);
}
.section-title.gold {
    color: var(--gold);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 560px;
    font-weight: 300;
    line-height: 1.75;
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.65);
}

.gold-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 1.5rem 0;
}

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

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

.gold-divider i {
    color: var(--gold);
    font-size: 0.6rem;
}

/* ---------- Fade-in animation ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up.delay-1 {
    transition-delay: 0.1s;
}
.fade-up.delay-2 {
    transition-delay: 0.2s;
}
.fade-up.delay-3 {
    transition-delay: 0.3s;
}
.fade-up.delay-4 {
    transition-delay: 0.4s;
}

/* ============================================
   FEATURE BOXES (HOME)
   ============================================ */
.features-strip {
    background: var(--black);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: 2.8rem 0;
}

.feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.feature-box:last-child {
    border-right: none;
}
.feature-box:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 58px;
    height: 58px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: var(--transition);
    color: var(--gold);
    font-size: 1.3rem;
}

.feature-box:hover .feature-icon {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201, 151, 43, 0.4);
}

.feature-title {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.72rem;
    letter-spacing: 0.5px;
}

/* ============================================
   ABOUT PREVIEW
   ============================================ */
.about-img-wrap {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 2px;
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 180px;
    object-fit: cover;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-gold);
    border-radius: 2px;
}

.about-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--gold);
    color: var(--black);
    padding: 1rem 1.5rem;
    text-align: center;
    border-radius: 2px;
    box-shadow: var(--shadow-gold);
}

.about-badge .num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.about-badge .lbl {
    font-size: 0.62rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.check-list {
    list-style: none;
    padding: 0;
}
.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.65rem;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.check-list li i {
    color: var(--gold);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ============================================
   ROOM CARDS
   ============================================ */
.room-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border-radius: 2px;
    transition: var(--transition);
    height: 100%;
}

.room-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
    transform: translateY(-6px);
}

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

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

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

.room-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--black);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 2px;
}

.room-body {
    padding: 1.6rem;
}

.room-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.room-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.amenity-tag {
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--off-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.amenity-tag i {
    color: var(--gold);
    font-size: 0.7rem;
}

.room-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

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

.room-price .from {
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.room-price .amount {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
}

.room-price .per {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ============================================
   RESTAURANT CARDS
   ============================================ */
.meal-card {
    background: var(--dark);
    border: 1px solid var(--border-gold);
    border-radius: 2px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

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

.meal-img {
    height: 200px;
    overflow: hidden;
}

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

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

.meal-body {
    padding: 1.4rem;
}

.meal-time {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.meal-title {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.meal-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.65;
}

/* ============================================
   FACILITY CARDS
   ============================================ */
.facility-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

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

.facility-icon {
    width: 68px;
    height: 68px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: var(--gold);
    font-size: 1.5rem;
    transition: var(--transition);
}

.facility-card:hover .facility-icon {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    box-shadow: 0 0 24px rgba(201, 151, 43, 0.35);
}

.facility-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.facility-desc {
    color: var(--text-muted);
    font-size: 0.825rem;
    line-height: 1.6;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
    height: 230px;
}

.gallery-item.tall {
    height: 472px;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay i {
    color: var(--gold);
    font-size: 1.8rem;
    transform: scale(0.7);
    transition: var(--transition);
}

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

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border: 1px solid var(--border-gold);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201, 151, 43, 0.2);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
    font-size: 1rem;
}

.lightbox-prev {
    left: 1.5rem;
}
.lightbox-next {
    right: 1.5rem;
}
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    color: var(--black);
}

/* ============================================
   BOOKING FORM
   ============================================ */
.booking-form-section {
    background: var(--off-white);
}

.booking-form-wrap {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    border-radius: 2px;
    box-shadow: var(--shadow-dark);
}

.form-group {
    margin-bottom: 1.4rem;
}

.form-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control,
.form-select {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 2px;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    width: 100%;
    outline: none;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 151, 43, 0.12);
}

textarea.form-control {
    resize: vertical;
    min-height: 110px;
}

.booking-info-card {
    background: var(--dark);
    border: 1px solid var(--border-gold);
    border-radius: 2px;
    padding: 2rem;
    height: 100%;
}

.booking-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.booking-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.binfo-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 151, 43, 0.12);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.binfo-title {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.binfo-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    line-height: 1.6;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 0;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.82);
}

.cta-content {
    position: relative;
    z-index: 1;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
    height: 100%;
}

.contact-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-value {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--black);
    border-top: 1px solid var(--border-gold);
    padding-top: 4rem;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-brand-name {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.footer-brand-sub {
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.3rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid var(--border-gold);
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.83rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.footer-links a i {
    color: var(--gold);
    font-size: 0.6rem;
}
.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.83rem;
}

.footer-contact-item i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}
.footer-contact-item a {
    color: rgba(255, 255, 255, 0.45);
}
.footer-contact-item a:hover {
    color: var(--gold);
}

.footer-bottom {
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.3rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    transition: var(--transition);
}

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

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 500;
    width: 54px;
    height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-float:hover {
    background: #1ebe5d;
    color: var(--white);
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 500;
    width: 44px;
    height: 44px;
    background: var(--gold);
    border-radius: 2px;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.back-to-top.visible {
    display: flex;
}
.back-to-top:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
    padding: 9rem 0 4.5rem;
    background: #000;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--page-hero-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.18;
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-label {
    font-size: 0.68rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.page-hero-label::before,
.page-hero-label::after {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.page-hero h1 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.breadcrumb-nav a,
.breadcrumb-nav span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.5px;
}

.breadcrumb-nav a:hover {
    color: var(--gold);
}
.breadcrumb-nav .sep {
    color: var(--gold);
    font-size: 0.6rem;
}
.breadcrumb-nav .current {
    color: var(--gold);
}

/* ============================================
   MAP PLACEHOLDER
   ============================================ */
.map-placeholder {
    background: var(--dark);
    border: 1px solid var(--border-gold);
    height: 380px;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.35);
    gap: 1rem;
}

.map-placeholder i {
    font-size: 2.5rem;
    color: var(--gold);
}
.map-placeholder p {
    font-size: 0.85rem;
}

/* ============================================
   STATS STRIP
   ============================================ */
.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-num {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ============================================
   DISH CARDS
   ============================================ */
.dish-card {
    background: var(--off-white);
    border-radius: 2px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.dish-img {
    height: 200px;
    overflow: hidden;
}
.dish-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.dish-card:hover .dish-img img {
    transform: scale(1.08);
}

.dish-body {
    padding: 1.3rem;
}
.dish-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.dish-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}
.dish-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* ============================================
   POLICY PAGES
   ============================================ */
.policy-content {
    max-width: 860px;
    margin: 0 auto;
}
.policy-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 2rem 0 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.policy-content p,
.policy-content li {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 0.6rem;
}

.policy-content ul {
    padding-left: 1.4rem;
    margin-bottom: 1rem;
}
.policy-content ul li::marker {
    color: var(--gold);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .about-img-accent {
        display: none;
    }
    .about-badge {
        left: 1rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item.tall {
        height: 230px;
    }
    .hero-slider {
        height: 80vh;
        min-height: 520px;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 3.5rem 0;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .feature-box:last-child {
        border-bottom: none;
    }
    .slider-prev,
    .slider-next {
        display: none;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .booking-form-wrap {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .navbar-inner {
        padding: 0 1rem;
    }
    .hero-btns {
        flex-direction: column;
    }
    .btn-gold,
    .btn-outline-gold {
        width: 100%;
        justify-content: center;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-card {
    background: #fff;
    border: 1px solid rgba(201, 151, 43, 0.15);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.contact-info-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(201, 151, 43, 0.12);
    transform: translateY(-4px);
}
.ci-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.4rem;
    color: #fff;
}
.contact-info-card h5 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}
.contact-info-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.contact-info-card a {
    color: var(--text-dark);
    font-size: 0.88rem;
    text-decoration: none;
    display: block;
    line-height: 1.8;
}
.contact-info-card a:hover {
    color: var(--gold);
}

.map-placeholder {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(201, 151, 43, 0.2);
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-inner {
    text-align: center;
    padding: 2.5rem;
    color: #fff;
}
.map-inner i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}
.map-inner h5 {
    font-family: var(--font-display);
    color: #fff;
    margin-bottom: 0.5rem;
}
.map-inner p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.hours-box {
    background: #fff;
    border: 1px solid rgba(201, 151, 43, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
}
.hours-title {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.hours-list li:last-child {
    border-bottom: none;
}
.hours-list li .gold {
    color: var(--gold);
    font-weight: 600;
}

.social-strip {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.social-strip span {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-right: 0.4rem;
}
.social-strip a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(201, 151, 43, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-strip a:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.wt-link-gold {
    color: var(--gold) !important;
    font-weight: 600;
    font-size: 0.85rem !important;
}
.wt-link-gold:hover {
    color: var(--gold-light) !important;
}

/* ============================================
   POLICY PAGES (privacy, terms)
   ============================================ */
.policy-doc {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}
.policy-meta {
    background: rgba(201, 151, 43, 0.06);
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.5rem;
    margin-bottom: 1.8rem;
}
.policy-meta p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.8;
}
.policy-intro {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.policy-section {
    margin-bottom: 2.2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.policy-section h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.policy-num {
    display: inline-flex;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-body);
    align-items: center;
    justify-content: center;
}
.policy-section p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 0.8rem;
}
.policy-section ul {
    padding-left: 1.2rem;
}
.policy-section ul li {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 0.4rem;
}
.policy-section ul li::marker {
    color: var(--gold);
}
.policy-section a {
    color: var(--gold);
    text-decoration: none;
}
.policy-section a:hover {
    color: var(--gold-light);
}

.policy-contact-box {
    background: linear-gradient(
        135deg,
        rgba(201, 151, 43, 0.06),
        rgba(201, 151, 43, 0.02)
    );
    border-radius: 12px;
    border: 1px solid rgba(201, 151, 43, 0.2);
    padding: 2rem !important;
    margin-top: 0.5rem;
}
.policy-contact-box h4 {
    color: var(--gold) !important;
    margin-bottom: 0.8rem !important;
}
.policy-contact-box ul li {
    line-height: 2;
    font-size: 0.9rem !important;
    color: var(--text-muted);
}
