/* ===== SR GRAND HOTEL - MAIN STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --gold: #D4AF37;
  --gold-light: #F1E5AC;
  --gold-dark: #996515;
  --brown: #1A1C20;
  --brown-dark: #0F1115;
  --cream: #F8F9FA;
  --cream-dark: #E5E7EB;
  --white: #FFFFFF;
  --text-dark: #111827;
  --text-mid: #374151;
  --text-light: #6B7280;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Cormorant Garamond', serif;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cream-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ===== NAVBAR ===== */
.navbar-custom {
  background: rgba(15, 17, 21, 0.97);
  backdrop-filter: blur(20px);
  padding: 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  transition: var(--transition);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar-custom.scrolled {
  background: rgba(15, 17, 21, 0.99);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  padding: 10px 0;
}

.brand-logo-img {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  transition: var(--transition);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.navbar-custom.scrolled .brand-logo-img {
  height: 45px;
  width: 45px;
}

.brand-text-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: 2px;
}

.brand-text-sub {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
}

.nav-link-custom {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition);
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

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

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  left: 16%;
  right: 16%;
}

.btn-book-nav {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white) !important;
  border: none;
  padding: 10px 24px !important;
  font-size: 11px !important;
  letter-spacing: 2px;
  font-weight: 600;
  border-radius: 0;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: var(--transition);
}

.btn-book-nav:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-1px);
}

.navbar-toggler-custom {
  border: 1px solid var(--gold);
  padding: 6px 10px;
  background: transparent;
  color: var(--gold);
  font-size: 18px;
}

/* ===== GOLD DIVIDER ===== */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px auto;
}

.gold-divider span {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.gold-divider span:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}

.gold-divider i {
  color: var(--gold);
  font-size: 14px;
}

/* ===== SECTION TITLES ===== */
.section-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.1;
}

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

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* --- Hero Carousel --- */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

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

@keyframes kenBurns {
  from {
    transform: scale(1.04) translateX(0);
  }

  to {
    transform: scale(1.13) translateX(-2%);
  }
}

/* Hero Dots */
.hero-dots {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.4s ease;
}

.hero-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  width: 24px;
  border-radius: 4px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(15, 17, 21, 0.85) 0%,
      rgba(15, 17, 21, 0.45) 50%,
      rgba(15, 17, 21, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 700;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -1px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

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

.hero-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  letter-spacing: 1px;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-btns {
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
  display: flex !important;
  flex-direction: row;
}

/* Mobile: Stack buttons vertically max-width: 480px */
@media (max-width: 768px) {
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
}


.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border: none;
  padding: 16px 40px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: var(--transition);
}

.btn-gold:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201, 168, 76, 0.35);
}

.btn-gold:hover::before {
  opacity: 1;
}

.btn-gold span {
  position: relative;
  z-index: 1;
}

.btn-outline-gold {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.6);
  padding: 16px 40px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}

.btn-outline-gold:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

/* ===== HERO STATS ===== */
.hero-stats {
  position: relative;
  z-index: 2;
  background: rgba(15, 17, 21, 0.9);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  margin-top: 40px;
}

@media (min-width: 992px) {
  .hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
}

.stat-item {
  padding: 24px 0;
  border-right: 1px solid rgba(201, 168, 76, 0.15);
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  display: block;
  margin-top: 4px;
}

/* ===== BOOKING BAR ===== */
.booking-bar {
  background: var(--brown-dark);
  border-bottom: 2px solid var(--gold);
  padding: 5px 25px;
}

.booking-bar .form-control,
.booking-bar .form-select {
  background: rgba(255, 255, 255, 0.06);
  border: none;
  border-right: 1px solid rgba(201, 168, 76, 0.15);
  color: var(--white);
  border-radius: 0;
  padding: 20px 20px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
}

.booking-bar .form-control:focus,
.booking-bar .form-select:focus {
  background: rgba(201, 168, 76, 0.08);
  box-shadow: none;
  border-color: var(--gold);
  color: var(--white);
}

.booking-bar label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  padding: 12px 20px 0;
  display: block;
}

.booking-bar .form-select option {
  background: var(--brown-dark);
}

.btn-check-avail {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border: none;
  padding: 0 40px;
  height: 100%;
  width: 100%;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: var(--transition);
  min-height: 80px;
}

.btn-check-avail:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: none;
}

/* ===== ABOUT ===== */
.about-section {
  padding: 120px 0;
  background: var(--cream);
}

.about-img-stack {
  position: relative;
  height: 520px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  object-fit: cover;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border: 6px solid var(--cream);
  box-shadow: -10px -10px 40px rgba(0, 0, 0, 0.12);
}

.about-badge {
  position: absolute;
  top: 45%;
  left: 68%;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
  z-index: 3;
}

.about-badge span:first-child {
  /* font-family: 'Cormorant Garamond', serif; */
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.about-badge span:last-child {
  font-size: 8px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  text-align: center;
}

.about-text p {
  color: var(--text-mid);
  line-height: 1.9;
  font-size: 15px;
  font-weight: 300;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.5px;
  margin: 4px;
}

.feature-pill i {
  color: var(--gold);
}

/* ===== ROOMS ===== */
.rooms-section {
  padding: 120px 0;
  background: var(--brown-dark);
}

.room-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--brown-dark);
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.room-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: var(--transition);
  filter: brightness(0.9);
}

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

.room-badge-type {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
}

.room-info {
  padding: 24px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-top: none;
}

.room-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.room-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.room-amenity {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}

.room-amenity i {
  color: var(--gold);
  font-size: 10px;
}

.room-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding-top: 16px;
}

.room-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 25px;
  font-weight: bold;
  color: var(--gold);
  letter-spacing: 1px;
}

.btn-room-book {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
}

.btn-room-book:hover {
  background: var(--gold);
  color: var(--white);
}

/* ===== FACILITIES ===== */
.facilities-section {
  padding: 120px 0;
  background: var(--cream);
}

.facility-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-left: 3px solid transparent;
  transition: var(--transition);
  height: 100%;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.facility-item:hover {
  border-left-color: var(--gold);
  transform: translateX(4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.facility-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
}

.facility-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.facility-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 120px 0;
  background: var(--brown-dark);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '"';
  position: absolute;
  top: -80px;
  left: -20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 500px;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.04);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 40px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.8;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

/* Avatar letter bubble (Google reviews) */
.testimonial-avatar-letter {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.2);
}

.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  display: block;
}

.testimonial-place {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1px;
}

/* Review header row (Google icon + stars) */
.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.review-google-icon {
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #4285F4;
  box-shadow: 0 2px 12px rgba(66,133,244,0.35);
  flex-shrink: 0;
}

/* Google Rating Summary */
.google-rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, rgba(201,168,76,0.06), rgba(255,255,255,0.04));
  border: 1px solid rgba(201,168,76,0.3);
  padding: 24px 36px;
  margin: 24px auto 0;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.google-g-logo {
  font-family: 'Product Sans', 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 900;
  background: linear-gradient(135deg, #4285F4 0%, #EA4335 35%, #FBBC05 65%, #34A853 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
}

.google-rating-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.google-stars-row {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.google-review-count {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #4285F4;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  text-decoration: none;
  border-radius: 2px;
  transition: var(--transition);
}

.google-badge:hover {
  background: var(--gold);
  color: var(--white);
}

/* ===== REVIEWS SLIDER ===== */

/* Outer wrapper: flex row, arrows on sides, NO overflow hidden */
.reviews-outer {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

/* Viewport: overflow hidden so only visible cards show */
.reviews-viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

/* Track: the actual sliding row — JS sets translateX in px */
.reviews-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Individual slide — JS sets flex-basis in px dynamically */
.review-slide {
  flex-shrink: 0;
  padding: 0 10px;
  box-sizing: border-box;
}

/* ===== PREMIUM REVIEW CARD ===== */
.review-slide .testimonial-card {
  background: linear-gradient(145deg, rgba(30,25,20,0.95), rgba(20,18,15,0.98));
  border: 1px solid rgba(201,168,76,0.18);
  border-top: 3px solid var(--gold);
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-slide .testimonial-card::before {
  content: '\201C'; /* Large decorative opening quote */
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  pointer-events: none;
}

.review-slide .testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.3);
}

/* Arrow buttons — outside viewport so never clipped */
.reviews-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

.reviews-arrow:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}

/* Dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(201,168,76,0.25);
  cursor: pointer;
  transition: all 0.35s ease;
}

.reviews-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  width: 24px;
  border-radius: 4px;
}

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

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

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

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

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

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

.gallery-overlay i {
  color: var(--white);
  font-size: 28px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(26, 15, 8, 0.45);
}

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

/* ===== CTA BAND ===== */
.cta-band {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 50%;
}

.cta-band::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(201, 168, 76, 0.07);
  border-radius: 50%;
}

/* ===== FOOTER ===== */
.footer {
  background: #0D0705;
  padding: 80px 0 0;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

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

.footer-desc {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 16px;
}

.footer-heading {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 13px;
  padding: 5px 0;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.footer-link:hover {
  color: var(--gold);
  padding-left: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 12px;
}

.footer-contact-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-contact-text strong {
  color: var(--white);
  display: block;
  font-weight: 500;
  margin-bottom: 2px;
}

.footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
}

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

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ===== PAGE HERO ===== */
.page-hero {
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 80px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 17, 21, 0.88), rgba(15, 17, 21, 0.65));
}

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

.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.breadcrumb-custom a {
  color: var(--gold);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.breadcrumb-custom span {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

.breadcrumb-custom .current {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.page-hero-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  font-weight: 300;
  margin-top: 12px;
  letter-spacing: 0.5px;
}

/* ===== ROOMS PAGE ===== */
.room-detail-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  margin-bottom: 32px;
}

.room-detail-card:hover {
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.room-detail-img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.room-detail-info {
  padding: 40px;
}

.room-detail-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.room-detail-tag {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 12px;
  display: inline-block;
  margin-bottom: 16px;
}

.room-detail-desc {
  color: var(--text-mid);
  line-height: 1.9;
  font-size: 14px;
  margin-bottom: 24px;
}

.room-feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 28px;
}

.room-feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
}

.room-feature-list li i {
  color: var(--gold);
  font-size: 11px;
}

.room-price-display {
  background: var(--cream);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-left: 3px solid var(--gold);
}

.price-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--text-mid);
}

/* ===== GALLERY PAGE ===== */
.masonry-gallery {
  column-count: 3;
  column-gap: 12px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

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

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 15, 8, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.masonry-overlay i {
  color: var(--white);
  font-size: 24px;
  opacity: 0;
  transition: var(--transition);
}

.masonry-item:hover .masonry-overlay {
  background: rgba(26, 15, 8, 0.4);
}

.masonry-item:hover .masonry-overlay i {
  opacity: 1;
}

/* ===== FILTER TABS ===== */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.filter-tab {
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--text-mid);
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* Gallery filterable items */
.gallery-filterable {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* ===== CONTACT PAGE ===== */
.contact-info-card {
  background: var(--brown-dark);
  padding: 40px;
  height: 100%;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.contact-detail-item:last-child {
  border-bottom: none;
}

.contact-detail-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
}

.contact-detail-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.contact-detail-value {
  color: var(--white);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
}

.contact-form-wrap {
  background: var(--white);
  padding: 50px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
}

.contact-form-wrap .form-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 0;
  padding: 14px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  transition: var(--transition);
}

.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
  background: var(--white);
}

.map-wrap {
  height: 350px;
  overflow: hidden;
  filter: grayscale(30%);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== MARKETING PAGE ===== */
.why-card {
  background: var(--gold);
  padding: 40px;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.why-card:hover {
  border-bottom-color: var(--brown-dark);
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: var(--white);
  border: 2px solid var(--brown-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--gold);
  margin: 0 auto 20px;
}

.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.why-desc {
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.8;
}

.why-location-details {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.location-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  transition: var(--transition);
}

.location-item:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.location-item i {
  color: var(--brown-dark);
  font-size: 14px;
}

.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

.timeline-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  position: relative;
}

.timeline-icon::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  width: 1px;
  height: 40px;
  background: rgba(201, 168, 76, 0.3);
}

.timeline-item:last-child .timeline-icon::after {
  display: none;
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 52px;
  }

  .about-img-stack {
    height: 340px;
  }

  .masonry-gallery {
    column-count: 2;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .contact-form-wrap {
    padding: 28px;
  }

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

  .booking-bar .btn-check-avail {
    min-height: 56px;
  }

  /* Responsive Spacing Fixes */
  section {
    padding: 40px 0 !important;
  }

  .section-title {
    font-size: clamp(28px, 8vw, 36px) !important;
    margin-bottom: 15px;
  }

  .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Room Detail Card Mobile */
  .room-detail-info {
    padding: 25px 15px !important;
  }

  .room-price-display {
    flex-direction: column;
    gap: 15px;
    align-items: stretch !important;
    padding: 0 !important;
    background: transparent !important;
  }

  .room-price-display .btn-gold {
    width: 100%;
    padding: 12px !important;
    text-align: center;
  }

  .room-feature-list {
    margin-bottom: 20px;
    gap: 8px !important;
  }

  .room-detail-img {
    height: 220px;
    min-height: auto;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  }

  .stat-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .masonry-gallery {
    column-count: 1;
  }
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: #FFF;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}


@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px !important;
    height: 50px !important;
    bottom: 20px !important;
    right: 20px !important;
    font-size: 24px !important;
    z-index: 9999 !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}


/* ===== GET DETAILS BUTTON (ROOMS PAGE) ===== */
.wa-details-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #FFF;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.wa-details-float i {
  font-size: 20px;
}

.wa-details-float:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  color: #FFF;
}

@media (max-width: 768px) {
  .wa-details-float {
    bottom: 20px;
    right: 20px;
    left: auto;
    padding: 10px 16px;
    font-size: 12px;
    width: auto;
    border-radius: 25px;
    justify-content: center;
  }
  
  .wa-details-float i {
    font-size: 16px;
  }
}

/* ===== GET DETAILS MODAL ===== */
.modal-content-custom {
  background: var(--brown-dark);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

.modal-header-custom {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title-custom {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 1px;
}

.btn-close-custom {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.btn-close-custom:hover {
  background: rgba(201, 168, 76, 0.2);
  color: var(--gold);
}

.modal-body-custom {
  padding: 40px 30px;
  background: var(--brown-dark);
}

.modal-body-custom .form-label {
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.modal-body-custom .form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--white);
  padding: 16px 20px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  border-radius: 0;
  transition: var(--transition);
}

.modal-body-custom .form-control:focus {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(201, 168, 76, 0.25);
  color: var(--white);
}

.modal-body-custom .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.whatsapp-note {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.5px;
}

.whatsapp-note i {
  color: #25d366;
  margin-right: 6px;
  font-size: 14px;
}

.invalid-feedback {
  color: #dc3545;
  font-size: 11px;
  margin-top: 6px;
  font-family: 'Jost', sans-serif;
}

@media (max-width: 576px) {
  .modal-header-custom {
    padding: 20px 24px;
  }
  
  .modal-title-custom {
    font-size: 24px;
  }
  
  .modal-body-custom {
    padding: 30px 24px;
  }
}

/* ===== NEW GALLERY GRID ===== */
.gallery-item-new {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

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

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

.gallery-overlay-new {
  position: absolute;
  inset: 0;
  background: rgba(26, 15, 8, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay-new i {
  color: var(--white);
  font-size: 32px;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-item-new:hover .gallery-overlay-new i {
  transform: translateY(0);
}