/* 
  SHALOM — Luxury Boutique 1BHK Stay (Goa, India)
  Design System & Stylesheet
  Colors: Deep Royal Blue (#0D3B78), Warm Ivory (#FAF7F2), Warm Gold (#B88A44), Soft Beige (#EFE6D8), Dark Charcoal (#2F2F2F)
  Fonts: Cormorant Garamond (Serif), Manrope (Sans)
*/

@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=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --color-primary: #0D3B78;
  --color-primary-dark: #082752;
  --color-bg: #FAF7F2;
  --color-card: #FFFFFF;
  --color-accent: #B88A44;
  --color-accent-hover: #9A7133;
  --color-accent-soft: #EFE6D8;
  --color-text-dark: #2F2F2F;
  --color-text-muted: #6B655B;
  --color-border: #E8DFD1;
  --color-border-light: rgba(239, 230, 216, 0.4);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 30px rgba(13, 59, 120, 0.05);
  --shadow-lg: 0 20px 40px rgba(13, 59, 120, 0.08);
  --shadow-floating: 0 15px 35px rgba(0, 0, 0, 0.12);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* RESET & BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg);
  color: var(--color-text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
.font-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text-dark);
}

.heading-display {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  letter-spacing: -0.02em;
}

.heading-section {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  letter-spacing: -0.01em;
}

.heading-card {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
}

.overline {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.lead-text {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.8;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

@media (max-width: 768px) {
  .section-padding {
    padding: 5rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--transition-smooth);
}

.btn-primary {
  background-color: var(--color-accent);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(184, 138, 68, 0.25);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 138, 68, 0.35);
}

.btn-navy {
  background-color: var(--color-primary);
  color: #ffffff;
  border: 1.5px solid var(--color-accent);
  padding: 1rem 2.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all var(--transition-smooth);
  box-shadow: 0 8px 25px rgba(13, 59, 120, 0.3);
  cursor: pointer;
}

.btn-navy:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(184, 138, 68, 0.45);
}

.btn-navy i,
.btn-navy svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  transition: color var(--transition-fast);
}

.btn-navy:hover i,
.btn-navy:hover svg {
  color: #ffffff;
}

.btn-navy-gold {
  background-color: var(--color-primary);
  color: #ffffff;
  border: 1px solid var(--color-accent);
  padding: 0.95rem 2.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition-smooth);
  box-shadow: 0 6px 20px rgba(13, 59, 120, 0.35);
}

.btn-navy-gold:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(184, 138, 68, 0.45);
}

.btn-glass-gold {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  border: 1px solid rgba(184, 138, 68, 0.75);
  padding: 0.95rem 2.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.btn-glass-gold:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 138, 68, 0.3);
}

.btn-arrow {
  font-size: 1.1rem;
  line-height: 1;
  transition: transform var(--transition-fast);
}

.btn-navy-gold:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-arrow-play {
  font-size: 0.85rem;
  line-height: 1;
  color: var(--color-accent);
}

/* NAVBAR STYLING */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  background-color: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid var(--color-border);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding-right: 2rem;
}

/* BRAND LOGO BADGE IN TOP-LEFT NAVBAR */
.brand-badge {
  background-color: var(--color-primary);
  padding: 0.35rem 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(13, 59, 120, 0.25);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  transition: all var(--transition-smooth);
}

.header-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: none;
  transition: height var(--transition-smooth);
}

.navbar.scrolled .brand-badge {
  padding: 0.25rem 0.5rem;
}

.navbar.scrolled .header-logo-img {
  height: 46px;
}

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

.nav-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition-fast);
}

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

.navbar.scrolled .nav-link {
  color: var(--color-text-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.mobile-toggle {
  display: none;
  color: #ffffff;
  font-size: 1.5rem;
  z-index: 101;
}

.navbar.scrolled .mobile-toggle {
  color: var(--color-text-dark);
}

/* HERO SECTION LAYOUT */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #0c1829;
  overflow: hidden;
  padding-top: 9.5rem;
  padding-bottom: 8rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(10, 20, 35, 0.94) 0%,
      rgba(10, 20, 35, 0.85) 38%,
      rgba(10, 20, 35, 0.55) 70%,
      rgba(10, 20, 35, 0.35) 100%);
}

.hero-container {
  position: relative;
  z-index: 10;
  max-width: 1320px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

/* HERO LIVE WEATHER BADGE */
.hero-weather-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(13, 40, 78, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(184, 138, 68, 0.45);
  padding: 0.4rem 1.1rem;
  border-radius: 99px;
  font-size: 0.82rem;
  color: #FAF7F2;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.hero-weather-badge:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
}

.weather-icon {
  font-size: 0.95rem;
}

.weather-temp {
  font-weight: 600;
  color: #ffffff;
}

.weather-sep {
  color: var(--color-accent);
  font-size: 0.8rem;
}

.weather-location {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.weather-season-tag {
  background: rgba(184, 138, 68, 0.25);
  color: var(--color-accent-soft);
  padding: 0.15rem 0.65rem;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(184, 138, 68, 0.4);
}

.hero-overline-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-overline-line {
  width: 36px;
  height: 2px;
  background-color: var(--color-accent);
}

.hero-overline {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.2vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-gold-divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.hero-gold-divider .gold-line {
  width: 44px;
  height: 1px;
  background-color: var(--color-accent);
}

.hero-gold-divider .gold-motif {
  color: var(--color-accent);
  font-size: 0.85rem;
  line-height: 1;
}

/* GLOBAL CENTERED GOLD DIVIDER MOTIF */
.gold-divider-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.gold-divider-center .g-line {
  height: 1px;
  width: 55px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.gold-divider-center .g-star {
  color: var(--color-accent);
  font-size: 0.9rem;
  line-height: 1;
}

.hero-subtext {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-cta-buttons {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-top: 2.25rem;
  flex-wrap: wrap;
}

/* HERO RIGHT COLUMN SHOWCASE (EXACT REFERENCE COMPOSITION) */
.hero-showcase-col {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.hero-showcase-wrapper {
  position: relative;
  width: 100%;
  max-width: 590px;
  height: 460px;
}

/* 1. Main Large Photo Frame with Dark Theme Gold Border */
.hero-main-frame {
  width: 100%;
  height: 390px;
  border-radius: 24px;
  overflow: hidden;
  border: 3.5px solid #7A5624;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.4);
  position: relative;
}

.hero-main-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-main-frame:hover img {
  transform: scale(1.04);
}

/* 2. Small Overlapping Balcony Photo Card (Tilted Left from Top) */
.hero-sub-card {
  position: absolute;
  bottom: -35px;
  left: -95px;
  width: 185px;
  height: 225px;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid #7A5624;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
  z-index: 5;
  background-color: #ffffff;
  padding: 4px;
  transform: rotate(-8deg);
  transform-origin: top left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.hero-sub-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform var(--transition-slow);
}

.hero-sub-card:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.05);
  z-index: 10;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
}

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

/* 3. Floating Spec Card (Bottom Right) */
.hero-spec-badge {
  position: absolute;
  bottom: -45px;
  right: -10px;
  width: 320px;
  background-color: #FDFBF7;
  border-radius: 20px;
  border: 1px solid rgba(184, 138, 68, 0.3);
  padding: 1.25rem 1.4rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  z-index: 6;
}

.hero-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1rem;
}

.hero-spec-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero-spec-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(184, 138, 68, 0.12);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.hero-spec-icon i,
.hero-spec-icon svg {
  width: 16px;
  height: 16px;
}

.hero-spec-val {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-primary);
}

.hero-spec-lbl {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-top: 0.1rem;
}

/* VERTICAL LEFT SCROLL INDICATOR */
.hero-scroll-indicator {
  position: absolute;
  left: 2rem;
  bottom: 5rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.scroll-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 45px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(184, 138, 68, 0.8));
  position: relative;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-accent);
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* BOTTOM FLOATING FEATURE BAR (4 COLUMNS) */
.hero-feature-bar-wrapper {
  position: relative;
  z-index: 30;
  margin-top: -3.5rem;
  padding: 0 1.5rem;
}

.hero-feature-bar {
  background-color: #FDFBF7;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  padding: 2.25rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.feature-col {
  text-align: center;
  padding: 0 1rem;
}

.feature-icon {
  font-size: 1.85rem;
  color: var(--color-accent);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  color: var(--color-accent);
  width: 32px;
  height: 32px;
}

.feature-title {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  max-width: 230px;
  margin: 0 auto;
}

/* SECTION 2: ABOUT / ESSENCE */
.about {
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images-wrapper {
  position: relative;
}

.about-img-main {
  width: 85%;
  height: 520px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -3rem;
  right: 0;
  width: 55%;
  height: 340px;
  border-radius: var(--radius-md);
  border: 8px solid var(--color-bg);
  box-shadow: var(--shadow-floating);
  object-fit: cover;
}

.about-text-content {
  padding-left: 1rem;
}

.quote-box {
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--color-accent);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--color-primary);
}

/* SECTION 3: THE EXPERIENCE */
.experience {
  background-color: #F4EFE6;
  position: relative;
}

.experience-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.exp-tab-btn {
  padding: 0.75rem 1.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  transition: all var(--transition-fast);
  background-color: var(--color-card);
}

.exp-tab-btn.active,
.exp-tab-btn:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.exp-card {
  position: relative;
  background-color: var(--color-card);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(13, 59, 120, 0.05);
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.exp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(13, 59, 120, 0.12);
  border-color: rgba(184, 138, 68, 0.4);
}

.exp-card-img-wrapper {
  height: 220px;
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 16px 16px 0 0;
}

.exp-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

/* Floating overlapping circular badge (unclipped, floating over image bottom edge) */
.exp-card-icon-badge {
  position: absolute;
  top: 198px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(13, 59, 120, 0.25), 0 0 0 3.5px #ffffff;
  z-index: 10;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.35s ease;
}

.exp-card-icon-badge svg,
.exp-card-icon-badge i {
  width: 20px;
  height: 20px;
  stroke-width: 2px;
  display: block;
}

.exp-card:hover .exp-card-icon-badge {
  background-color: var(--color-accent);
  transform: translateX(-50%) scale(1.1);
}

.exp-card-body {
  padding: 2.25rem 1.25rem 1.85rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
  width: 100%;
}

.exp-card-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.6rem;
  color: var(--color-text-dark);
  transition: color var(--transition-fast);
}

.exp-card:hover .exp-card-title {
  color: var(--color-primary);
}

.exp-card-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* SECTION 4: MASONRY GALLERY */
.gallery {
  background-color: var(--color-bg);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  padding: 0.5rem 1rem;
  position: relative;
  transition: color var(--transition-fast);
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  color: var(--color-accent);
}

.gallery-filter-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background-color: var(--color-accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  height: 320px;
}
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

.gallery-item:hover video {
  transform: scale(1.05);
}

.gallery-item.tall {
  grid-row: span 2;
  height: 656px;
}

.gallery-item.wide {
  grid-column: span 2;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 59, 120, 0.4);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
  color: #ffffff;
  padding: 1.5rem;
  text-align: center;
}

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

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

.gallery-overlay-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.gallery-overlay-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
}

/* GALLERY LOAD MORE BUTTON */
.gallery-more-wrapper {
  text-align: center;
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.95rem 2.25rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: linear-gradient(135deg, #ffffff 0%, #FAF7F2 100%);
  border: 1.5px solid var(--color-accent);
  border-radius: var(--radius-full);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(184, 138, 68, 0.12), 0 2px 6px rgba(13, 59, 120, 0.04);
}

.gallery-toggle-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.gallery-toggle-btn .btn-text {
  position: relative;
  z-index: 2;
  transition: color 0.35s ease;
}

.gallery-toggle-btn .btn-icon {
  position: relative;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-accent-soft);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  line-height: 1;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.35s ease, color 0.35s ease;
}

.gallery-toggle-btn .btn-icon svg,
.gallery-toggle-btn .btn-icon i {
  width: 16px;
  height: 16px;
  stroke-width: 2.5px;
  display: block;
}

.gallery-toggle-btn:hover {
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13, 59, 120, 0.22), 0 4px 15px rgba(184, 138, 68, 0.25);
}

.gallery-toggle-btn:hover::before {
  opacity: 1;
}

.gallery-toggle-btn:hover .btn-text {
  color: #ffffff;
}

.gallery-toggle-btn:hover .btn-icon {
  background-color: var(--color-accent);
  color: #ffffff;
}

.gallery-toggle-btn.is-expanded .btn-icon,
.gallery-toggle-btn[aria-expanded="true"] .btn-icon {
  transform: rotate(180deg);
}

.gallery-toggle-btn.is-expanded:hover .btn-icon,
.gallery-toggle-btn[aria-expanded="true"]:hover .btn-icon {
  transform: rotate(180deg);
}

.gallery-item-extra {
  animation: galleryItemFadeIn 0.4s ease-out forwards;
}

@keyframes galleryItemFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

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

.gallery-overlay-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
}

/* LIGHTBOX MODAL */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(12, 24, 41, 0.94);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lightbox-video {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.lightbox-caption {
  margin-top: 1.25rem;
  color: var(--color-accent-soft);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #ffffff;
  font-size: 2rem;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

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

/* SECTION 5: AMENITIES */
.amenities {
  background-color: #ffffff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.amenity-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-md);
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-smooth);
}

.amenity-card:hover {
  background-color: var(--color-card);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.amenity-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color-accent-soft);
  color: var(--color-primary);
  font-size: 1.5rem;
  transition: all var(--transition-fast);
}

.amenity-card:hover .amenity-icon {
  background-color: var(--color-primary);
  color: #ffffff;
}

.amenity-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

/* SECTION 6: LOCATION */
/* SECTION 6: LOCATION & NEIGHBORHOOD (COMPACT & SLEEK) */
.location {
  background-color: var(--color-bg);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

/* Left Column Continuous Auto-Playing Slideshow */
.location-slider-wrapper {
  height: 100%;
  min-height: 380px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(13, 59, 120, 0.08);
}

.location-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.location-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.05);
}

.location-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.location-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Glassmorphism Badge on Slideshow */
.location-glass-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(13, 59, 120, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(184, 138, 68, 0.45);
  border-radius: 14px;
  padding: 0.75rem 1.25rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(13, 59, 120, 0.35);
  z-index: 10;
  white-space: nowrap;
}

.location-glass-badge i,
.location-glass-badge svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
}

/* Pagination Dots */
.location-slider-dots {
  position: absolute;
  bottom: 1.6rem;
  right: 1.5rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.location-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.35s ease;
}

.location-dot.active {
  background-color: var(--color-accent);
  width: 22px;
  border-radius: 999px;
}

/* Right Column Location Card */
.location-content-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  padding: 2.25rem 2.5rem;
  box-shadow: 0 10px 35px rgba(13, 59, 120, 0.05);
}

.location-card-heading {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.25;
  margin: 0.25rem 0 0.4rem;
  color: var(--color-primary);
}

.location-card-desc {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

/* Distance List Items (Sleek & Compact) */
.location-distance-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.location-distance-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.85rem;
  background-color: var(--color-bg);
  border-radius: 10px;
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-smooth);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.location-distance-item:hover {
  background-color: #ffffff;
  border-color: var(--color-accent);
  box-shadow: 0 4px 12px rgba(184, 138, 68, 0.1);
  transform: translateX(3px);
}

.location-distance-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.location-distance-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-accent-soft);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.location-distance-icon svg,
.location-distance-icon i {
  width: 14px;
  height: 14px;
  stroke-width: 2px;
}

.location-tab-btn {
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-card);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.location-tab-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-primary);
}

.location-tab-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(13, 59, 120, 0.25);
}

.location-travel-mode {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.location-distance-item:hover .location-distance-icon {
  background-color: var(--color-primary);
  color: #ffffff;
}

.location-distance-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.location-distance-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.location-distance-item:hover .location-distance-badge {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #ffffff;
}

.location-map-btn {
  width: 100%;
  justify-content: center;
  padding: 0.7rem 1.25rem;
  font-size: 0.75rem;
}

/* SECTION 7: GUEST REVIEWS */
.reviews {
  background-color: #F4EFE6;
}

.reviews-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.reviews-nav-arrows {
  display: flex;
  gap: 0.75rem;
}

.reviews-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  background-color: var(--color-card);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(13, 59, 120, 0.04);
}

.reviews-nav-btn i,
.reviews-nav-btn svg {
  width: 18px;
  height: 18px;
}

.reviews-nav-btn:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(13, 59, 120, 0.18);
}

.reviews-slider .swiper-wrapper {
  align-items: stretch;
}

.reviews-slider .swiper-slide {
  height: auto;
  display: flex;
}

.reviews-slider {
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.review-card {
  width: 100%;
  height: 100%;
  background-color: var(--color-card);
  padding: 2.25rem 2rem;
  border-radius: 16px;
  border: 1px solid var(--color-border-light);
  box-shadow: 0 6px 20px rgba(13, 59, 120, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(13, 59, 120, 0.08);
}

.review-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.review-more-text {
  display: none;
}

.review-card.is-expanded .review-more-text {
  display: inline;
}

.review-toggle-btn {
  background: none;
  border: none;
  color: var(--color-accent);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  margin-top: 0.6rem;
  margin-bottom: 1rem;
  display: inline-block;
  transition: color var(--transition-fast);
}

.review-toggle-btn:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.review-stars {
  color: #E6A100;
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1.1rem;
}

.review-stars svg,
.review-stars i {
  width: 16px;
  height: 16px;
  fill: #E6A100;
  stroke: #E6A100;
}

.review-text {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--color-text-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-border-light);
  padding-top: 1rem;
}

.author-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary);
}

.author-date {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* Swiper Pagination Styling (Positioned cleanly BELOW the review cards) */
.reviews-pagination {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  z-index: 10;
}

.reviews-pagination .swiper-pagination-bullet {
  background: var(--color-primary);
  opacity: 0.25;
  width: 8px;
  height: 8px;
  margin: 0 !important;
  transition: all 0.35s ease;
}

.reviews-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--color-accent);
  width: 22px;
  border-radius: 999px;
}

/* SECTION 8: BOOKING CTA (DEEP ROYAL BLUE) */
.booking-cta {
  background: radial-gradient(circle at top right, #114b99 0%, #08254f 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.booking-cta-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 28px 28px;
}

.booking-cta-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(184, 138, 68, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.booking-cta-box {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Perks Grid */
.booking-perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.perk-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.85rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.perk-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  border-color: var(--color-accent);
}

.perk-icon {
  width: 24px;
  height: 24px;
  color: var(--color-accent);

}

.perk-icon i,
.perk-icon svg {
  width: 20px;
  height: 20px;
}

.perk-item span {
  font-size: 0.78rem;
  font-weight: 600;
  color: #FAF7F2;
  letter-spacing: 0.03em;
}

.booking-cta .min-stay-note {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.75rem;
  padding: 0.65rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--color-accent);
  border-radius: 50px;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.booking-cta .min-stay-note i {
  color: var(--color-accent);
  width: 18px;
  height: 18px;
}

/* Card Wrapper & Inline Widget */
.booking-card-wrapper {
  background: rgba(13, 35, 68, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(184, 138, 68, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
}

.booking-widget-inline {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.1fr 1.4fr;
  gap: 1.25rem;
  align-items: center;
}

.widget-field {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.widget-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
}

.widget-label i,
.widget-label svg {
  width: 14px;
  height: 14px;
}

.widget-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.widget-input:focus {
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.16);
}

.widget-input option {
  background-color: var(--color-primary-dark);
  color: #ffffff;
}

/* Secondary WhatsApp Strip inside Card */
.booking-whatsapp-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.75rem;
}

/* Trust Row */
.booking-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: rgba(250, 247, 242, 0.85);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.45rem 1rem;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-pill i,
.trust-pill svg {
  width: 15px;
  height: 15px;
  color: var(--color-accent);
}

@media (max-width: 992px) {
  .booking-perks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {
  .booking-perks-grid {
    grid-template-columns: 1fr;
  }

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

  .booking-whatsapp-strip {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* FLOATING RESERVATION DRAWER MODAL */
.booking-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(12, 24, 41, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.booking-drawer.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-panel {
  width: 100%;
  max-width: 520px;
  height: 100%;
  background-color: var(--color-bg);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  padding: 3rem 2.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
}

.booking-drawer.active .drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.drawer-header h3 {
  font-size: 1.8rem;
  color: var(--color-primary);
}

.drawer-close {
  font-size: 1.75rem;
  color: var(--color-text-dark);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background-color: var(--color-card);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-accent);
}

.price-summary-box {
  background-color: var(--color-card);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  margin-top: 1rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.price-row.total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  border-top: 1px dashed var(--color-border);
  padding-top: 0.75rem;
  margin-bottom: 0;
}

/* FOOTER */
.footer {
  background-color: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-badge {
  display: inline-block;
  margin-bottom: 1.2rem;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: brightness(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.footer-about-text {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 320px;
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.footer-address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--color-accent-soft);
}

.footer-address i,
.footer-address svg {
  width: 15px;
  height: 15px;
  color: var(--color-accent);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

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

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

.footer-links a:hover {
  color: var(--color-accent-soft);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all var(--transition-fast);
  background: rgba(255, 255, 255, 0.05);
}

.social-links a i,
.social-links a svg {
  width: 18px;
  height: 18px;
  stroke-width: 2px;
  color: #ffffff;
  display: block;
}

.social-links a:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

/* FADE-UP ANIMATION UTILITIES */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-showcase-col {
    justify-content: center;
    margin-top: 1rem;
  }

  .hero-showcase-wrapper {
    max-width: 460px;
    height: 380px;
  }

  .hero-main-frame {
    height: 300px;
  }

  .hero-sub-card {
    width: 140px;
    height: 170px;
    bottom: -20px;
    left: -25px;
  }

  .hero-spec-badge {
    width: 270px;
    padding: 1rem;
    bottom: -30px;
    right: -5px;
  }

  .hero-feature-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .about-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .location-slider-wrapper {
    height: 350px;
  }

  .location-content-card {
    height: auto;
  }

  .about-images-wrapper {
    margin-bottom: 2rem;
  }

  .exp-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .brand-badge {
    padding: 0.85rem 1.25rem;
  }

  .brand-badge-title {
    font-size: 1.35rem;
  }

  .brand-badge-tagline {
    font-size: 0.72rem;
  }

  .hero-feature-bar {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-feature-bar-wrapper {
    margin-top: -2rem;
  }

  .exp-grid,
  .gallery-grid,
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
    height: 300px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* ==========================================================================
   LUXURY PRELOADER SCREEN STYLES
   ========================================================================== */
body.loading {
  overflow: hidden !important;
  height: 100vh;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, #0d3b78 0%, #061833 100%);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1),
    visibility 0.8s cubic-bezier(0.65, 0, 0.35, 1),
    transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: opacity, visibility, transform;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 420px;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.preloader-logo-wrapper {
  position: relative;
  width: 170px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.preloader-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 3px solid rgba(184, 138, 68, 0.3);
  border-top-color: var(--color-accent);
  border-right-color: rgba(248, 234, 173, 0.85);
  animation: preloaderSpin 1.8s linear infinite;
  box-shadow: 0 0 25px rgba(184, 138, 68, 0.3);
}

@keyframes preloaderSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.preloader-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 35px rgba(184, 138, 68, 0.4);
  animation: preloaderPulse 2s ease-in-out infinite alternate;
  background: var(--color-card);
  padding: 6px;
}

@keyframes preloaderPulse {
  0% {
    transform: scale(0.97);
    opacity: 0.92;
  }

  100% {
    transform: scale(1.04);
    opacity: 1;
    filter: drop-shadow(0 0 20px rgba(184, 138, 68, 0.75));
  }
}

.preloader-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: #FAF7F2;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  margin-left: 0.35em;
  /* Optical centering for letter-spacing */
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.preloader-gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0.6rem 0 0.8rem 0;
  width: 100%;
}

.preloader-gold-divider .p-line {
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.preloader-gold-divider .p-star {
  color: var(--color-accent);
  font-size: 0.95rem;
}

.preloader-subtitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--color-accent);
  margin-bottom: 2.25rem;
  text-transform: uppercase;
  margin-left: 0.3em;
}

.preloader-progress-box {
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.preloader-progress-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.preloader-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #b88a44, #f8eaad, #b88a44);
  background-size: 200% 100%;
  animation: shimmerProgress 1.5s infinite linear;
  border-radius: 99px;
  transition: width 0.15s ease-out;
  box-shadow: 0 0 10px rgba(184, 138, 68, 0.6);
}

@keyframes shimmerProgress {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.preloader-counter {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(250, 247, 242, 0.75);
  letter-spacing: 0.15em;
}

@media (max-width: 480px) {
  .preloader-logo-wrapper {
    width: 140px;
    height: 140px;
    margin-bottom: 1.5rem;
  }

  .preloader-logo {
    width: 115px;
    height: 115px;
  }

  .preloader-title {
    font-size: 2.1rem;
  }
}

/* ==========================================================================
   EXPANDABLE FAQ ACCORDION STYLES
   ========================================================================== */
.faq-accordion-wrapper {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.faq-item.active {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  cursor: pointer;
  background: transparent;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-icon {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), padding 0.45s ease;
  padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.75rem 1.5rem 1.75rem;
}

.faq-answer p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}

/* ==========================================================================
   FLOATING CONCIERGE & WHATSAPP WIDGET STYLES
   ========================================================================== */
.floating-concierge {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.concierge-trigger-btn {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d3b78, #071f42);
  border: 2px solid var(--color-accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(13, 59, 120, 0.4);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.concierge-trigger-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 15px 35px rgba(184, 138, 68, 0.5);
}

.concierge-pulse-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(184, 138, 68, 0.5);
  animation: conciergePulseRing 2.2s infinite ease-out;
  pointer-events: none;
}

@keyframes conciergePulseRing {
  0% {
    transform: scale(0.9);
    opacity: 0.9;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.concierge-icon {
  width: 28px;
  height: 28px;
  color: #FAF7F2;
}

.concierge-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--color-accent);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 99px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.concierge-popup {
  width: 320px;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  margin-bottom: 1rem;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: bottom right;
}

.concierge-popup.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.concierge-header {
  background: var(--color-primary-dark);
  color: #ffffff;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  position: relative;
}

.concierge-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-accent);
  background: #fff;
  flex-shrink: 0;
}

.concierge-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.concierge-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #FAF7F2;
  margin-bottom: 2px;
}

.concierge-status {
  font-size: 0.72rem;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 6px #25D366;
}

.concierge-close {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}

.concierge-close:hover {
  color: #ffffff;
}

.concierge-body {
  padding: 1.25rem;
  background: var(--color-bg);
}

.concierge-msg {
  font-size: 0.85rem;
  color: var(--color-text-dark);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  background: #ffffff;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.concierge-quick-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.concierge-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all var(--transition-fast);
}

.concierge-btn-wa {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.concierge-btn-wa:hover {
  background: #20b858;
  color: #ffffff;
  transform: translateY(-1px);
}

.concierge-btn-book {
  background: var(--color-primary);
  color: #ffffff;
  border: 1px solid var(--color-accent);
}

.concierge-btn-book:hover {
  background: var(--color-accent);
  color: #ffffff;
}