/* ============================================================
   GAGAN & OASIS RESIDENCY — PREMIUM WEBSITE STYLES
   ============================================================ */

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

/* ── CSS VARIABLES ── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #e8c97a;
  --gold-dark:   #9a7a2e;
  --navy:        #0D1B2A;
  --navy-mid:    #162236;
  --navy-light:  #1e3352;
  --white:       #ffffff;
  --off-white:   #f8f5f0;
  --gray-light:  #f0ece5;
  --gray-mid:    #c8c0b4;
  --gray-text:   #6b6359;
  --dark-text:   #1a1612;
  --success:     #2e7d52;

  --font-heading: 'Cormorant Garamond', serif;
  --font-body:    'Outfit', sans-serif;

  --shadow-sm:  0 2px 12px rgba(13,27,42,0.08);
  --shadow-md:  0 8px 32px rgba(13,27,42,0.15);
  --shadow-lg:  0 20px 60px rgba(13,27,42,0.25);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.3);

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.6s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy);
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.top-bar-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-mid);
  font-weight: 400;
}
.top-bar-item span.label {
  color: var(--gold);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.top-bar-item a { color: var(--gray-mid); transition: color var(--transition); }
.top-bar-item a:hover { color: var(--gold); }
.top-bar-divider { color: rgba(201,168,76,0.3); }
.top-bar-social { display: flex; gap: 12px; }
.top-bar-social a {
  color: var(--gray-mid);
  font-size: 13px;
  transition: color var(--transition);
}
.top-bar-social a:hover { color: var(--gold); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo-img { height: 48px; width: auto; object-fit: contain; }
.nav-logo-text { line-height: 1.2; }
.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo-tagline {
  font-size: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.nav-link svg { width: 10px; height: 10px; transition: transform var(--transition); }
.nav-item:hover .nav-link { color: var(--gold); background: rgba(201,168,76,0.08); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }
.nav-link.active { color: var(--gold); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-link {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  font-weight: 400;
}
.dropdown-link:hover { background: rgba(201,168,76,0.1); color: var(--gold); padding-left: 22px; }

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 16px;
}
.btn-nav-call {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all var(--transition);
}
.btn-nav-call:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.15);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.mobile-nav.open { max-height: 600px; }
.mobile-nav-inner { padding: 16px 24px 24px; }
.mobile-nav-link {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-weight: 500;
  transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-sub-link {
  display: block;
  padding: 9px 0 9px 20px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--transition);
}
.mobile-sub-link:hover { color: var(--gold); }

/* ============================================================
   PAGE HERO BANNER (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 72px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.gold-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section { padding: 96px 24px; }
.section-sm { padding: 64px 24px; }
.container { max-width: 1300px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(201,168,76,0.25);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-title.light { color: var(--white); }
.section-subtitle {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.75;
  max-width: 600px;
}
.section-subtitle.center { text-align: center; margin: 0 auto; }
.section-subtitle.light { color: rgba(255,255,255,0.65); }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.5); filter: brightness(1.05); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(201,168,76,0.6);
}
.btn-outline:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); color: var(--gold); }
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border: 2px solid transparent;
}
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 12.5px; }
.btn-lg { padding: 18px 42px; font-size: 15px; }

/* ============================================================
   PLACEHOLDER IMAGES
   ============================================================ */
.img-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, rgba(201,168,76,0.15) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(201,168,76,0.5);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.img-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(45deg, transparent 48%, rgba(201,168,76,0.05) 50%, transparent 52%),
              linear-gradient(-45deg, transparent 48%, rgba(201,168,76,0.05) 50%, transparent 52%);
  background-size: 30px 30px;
}
.img-placeholder svg { width: 40px; height: 40px; opacity: 0.4; }

/* ============================================================
   HOME — HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.slider-track { display: flex; height: 100%; transition: transform 0.8s cubic-bezier(0.77,0,0.18,1); }
.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.slide-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #2a3f5c 100%);
}
.slide-bg .img-placeholder { width: 100%; height: 100%; font-size: 14px; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.6) 55%, rgba(13,27,42,0.2) 100%);
}
.slide-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 80px 100px;
  max-width: 760px;
}
.slide-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: slideUp 0.8s ease both;
}
.slide-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
  animation: slideUp 0.8s 0.1s ease both;
}
.slide-content h1 em { color: var(--gold); font-style: italic; }
.slide-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
  animation: slideUp 0.8s 0.2s ease both;
}
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: slideUp 0.8s 0.3s ease both; }

/* Slider controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: all var(--transition);
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.slider-arrow.prev { left: 32px; }
.slider-arrow.next { right: 32px; }
.slider-dots {
  position: absolute;
  bottom: 36px; right: 80px;
  display: flex; gap: 8px; z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: all var(--transition);
  cursor: pointer;
}
.slider-dot.active { background: var(--gold); width: 28px; border-radius: 4px; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px; left: 80px;
  display: flex; align-items: center; gap: 12px;
  z-index: 10;
}
.scroll-line {
  width: 40px; height: 1px;
  background: var(--gold);
}
.scroll-text {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.stats-bar-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   ABOUT / WELCOME SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-main-img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-main-img .img-placeholder { width: 100%; height: 100%; }
.about-accent-img {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 55%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid var(--off-white);
  box-shadow: var(--shadow-lg);
}
.about-accent-img .img-placeholder { width: 100%; height: 100%; }
.about-badge {
  position: absolute;
  top: 24px; left: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.about-badge-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
.about-badge-txt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}
.about-text p {
  font-size: 15.5px;
  color: var(--gray-text);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-quote {
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  background: rgba(201,168,76,0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 28px 0;
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: italic;
  color: var(--navy-mid);
  line-height: 1.6;
}
.about-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

/* ============================================================
   HOSTEL CARDS (Gagan / Oasis)
   ============================================================ */
.hostel-cards-section { background: var(--navy); }
.hostel-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.hostel-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.15);
  transition: all var(--transition);
  position: relative;
}
.hostel-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.4); border-color: rgba(201,168,76,0.35); }
.hostel-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.hostel-card-img .img-placeholder { width: 100%; height: 100%; }
.hostel-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  z-index: 2;
}
.hostel-card-body { padding: 28px 30px; }
.hostel-card-type {
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 8px;
}
.hostel-card-name {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.hostel-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 24px;
}
.hostel-card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.hostel-card-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.hostel-card-info-item svg { color: var(--gold); flex-shrink: 0; }
.hostel-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ============================================================
   ROOMS SECTION
   ============================================================ */
.rooms-section { background: var(--navy); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.room-card {
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.room-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,0.4); box-shadow: 0 24px 60px rgba(0,0,0,0.35); }
.room-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.room-card-img .img-placeholder { width: 100%; height: 100%; }
.room-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.room-card:hover .room-card-img img { transform: scale(1.06); }
.room-card-price-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  z-index: 2;
}
.room-card-body { padding: 22px 24px; }
.room-card-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.room-card-price-main {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 16px;
}
.room-card-price-main span { font-size: 14px; color: rgba(255,255,255,0.4); font-family: var(--font-body); font-weight: 400; }
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.amenity-tag {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}
.room-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ============================================================
   FACILITIES SECTION
   ============================================================ */
.facilities-section { background: var(--off-white); }
.facilities-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.fac-tab {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid rgba(13,27,42,0.15);
  color: var(--gray-text);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
}
.fac-tab.active, .fac-tab:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}
.fac-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fac-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(13,27,42,0.05);
}
.fac-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(201,168,76,0.2); }
.fac-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold);
  font-size: 24px;
}
.fac-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.why-image .img-placeholder { width: 100%; height: 100%; }
.why-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(13,27,42,0.05);
  transition: all var(--transition);
}
.why-item:hover { background: rgba(201,168,76,0.05); border-color: rgba(201,168,76,0.2); }
.why-check {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.why-check svg { width: 12px; height: 12px; color: var(--navy); }
.why-item span {
  font-size: 13px;
  color: var(--dark-text);
  font-weight: 500;
  line-height: 1.5;
}

/* ============================================================
   KEY FEATURES
   ============================================================ */
.features-section { background: var(--navy); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.feature-num {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.feature-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.feature-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}
.cta-banner-bg .img-placeholder { width: 100%; height: 100%; opacity: 0.3; }
.cta-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.95) 0%, rgba(13,27,42,0.85) 100%);
}
.cta-banner-inner {
  position: relative; z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 72px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.cta-block {
  padding: 48px 44px;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  transition: all var(--transition);
}
.cta-block:hover { background: rgba(255,255,255,0.06); border-color: rgba(201,168,76,0.3); }
.cta-block-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.cta-block h3 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-block-info { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.cta-info-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.7);
}
.cta-info-item svg { color: var(--gold); }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section { background: var(--off-white); }
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  background: var(--navy);
}
.video-thumb { width: 100%; height: 100%; object-fit: cover; }
.video-thumb.img-placeholder { width: 100%; height: 100%; }
.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 0 0 12px rgba(201,168,76,0.2);
}
.video-play-btn svg { color: var(--navy); margin-left: 4px; }
.video-card:hover .video-play-btn { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 0 18px rgba(201,168,76,0.15); }
.video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.7) 0%, transparent 60%);
}
.video-label {
  position: absolute;
  bottom: 20px; left: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.video-label span { display: block; font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 3px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--navy); }
.testimonials-slider-wrap { position: relative; overflow: hidden; }
.testimonials-track { display: flex; gap: 24px; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  flex-shrink: 0;
}
.testimonial-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(201,168,76,0.25); }
.t-stars { display: flex; gap: 4px; margin-bottom: 18px; }
.t-star { color: var(--gold); font-size: 16px; }
.t-quote {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  font-family: var(--font-heading);
}
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.t-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.t-hostel {
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.t-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all var(--transition);
}
.t-nav-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section { background: var(--off-white); }
.gallery-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gallery-filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid rgba(13,27,42,0.15);
  color: var(--gray-text);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
}
.gallery-filter-btn.active, .gallery-filter-btn:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item .img-placeholder { width: 100%; height: 100%; }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(13,27,42,0);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.gallery-item:hover .gallery-item-overlay { background: rgba(13,27,42,0.6); }
.gallery-item:hover .gallery-item-img { transform: scale(1.08); }
.gallery-zoom {
  width: 48px; height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--transition);
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 900px;
  max-height: 80vh;
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: contain;
}
.lightbox-close {
  position: fixed;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  cursor: pointer;
  font-size: 20px;
}

/* ============================================================
   LOCATION SECTION
   ============================================================ */
.location-section { background: var(--white); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(13,27,42,0.06);
}
.map-card-header {
  background: var(--navy);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.map-card-badge {
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.map-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}
.map-frame {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}
.map-frame-placeholder {
  width: 100%; height: 300px;
  background: linear-gradient(135deg, #1e3352 0%, #2a4a70 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px;
  color: rgba(201,168,76,0.6);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
}
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(13,27,42,0.06);
}
.form-title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-subtitle { font-size: 14px; color: var(--gray-text); margin-bottom: 32px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(13,27,42,0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark-text);
  background: var(--off-white);
  transition: all var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 4px rgba(201,168,76,0.1); }
select.form-control { appearance: none; cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: var(--white);
}
.contact-hostel-block { margin-bottom: 36px; }
.contact-hostel-block:last-of-type { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.contact-hostel-type {
  font-size: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-hostel-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 12px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.contact-detail svg { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.contact-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 28px 0; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  transition: all var(--transition);
  text-decoration: none;
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-section { background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid rgba(13,27,42,0.05);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-img .img-placeholder { width: 100%; height: 100%; }
.blog-body { padding: 24px; }
.blog-date { font-size: 12px; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.blog-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 12px;
  transition: color var(--transition);
}
.blog-card:hover .blog-title { color: var(--gold-dark); }
.blog-excerpt { font-size: 13.5px; color: var(--gray-text); line-height: 1.75; margin-bottom: 18px; }
.blog-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase; letter-spacing: 0.05em;
  transition: gap var(--transition);
}
.blog-card:hover .blog-read-more { gap: 10px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); padding: 80px 24px 0; }
.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-logo { height: 52px; margin-bottom: 16px; object-fit: contain; }
.footer-brand-desc { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 24px; max-width: 300px; }
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-link:hover { color: var(--gold); }
.footer-link svg { color: var(--gold); flex-shrink: 0; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-contact-item svg { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-btns { position: fixed; bottom: 28px; right: 28px; z-index: 900; display: flex; flex-direction: column; gap: 12px; }
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
}
.float-btn:hover { transform: translateY(-3px) scale(1.05); }
.float-btn-wa { background: #25D366; color: var(--white); }
.float-btn-call { background: var(--gold); color: var(--navy); }
.float-tooltip {
  position: absolute;
  right: 66px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.float-btn:hover .float-tooltip { opacity: 1; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 44px; height: 44px;
  background: rgba(13,27,42,0.8);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 900;
  backdrop-filter: blur(8px);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--navy); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   ABOUT PAGE SPECIFIC
   ============================================================ */
.about-page-content {
  background: var(--white);
}
.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}
.about-reason-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.about-reason {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  font-size: 13px;
  color: var(--dark-text);
  line-height: 1.5;
  transition: all var(--transition);
}
.about-reason:hover { background: rgba(201,168,76,0.06); }
.about-reason-icon { color: var(--gold); margin-top: 1px; flex-shrink: 0; }
.about-vision-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.about-vision-box::before {
  content: '"';
  position: absolute;
  top: -10px; right: 20px;
  font-family: var(--font-heading);
  font-size: 160px;
  color: rgba(201,168,76,0.08);
  line-height: 1;
}

/* ============================================================
   ROOM PAGE SPECIFIC
   ============================================================ */
.room-includes-section { background: var(--navy); }
.room-includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.include-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201,168,76,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  transition: all var(--transition);
}
.include-item:hover { background: rgba(255,255,255,0.08); border-color: rgba(201,168,76,0.25); }
.include-item svg { color: var(--gold); flex-shrink: 0; }

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .fac-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-full-grid { grid-template-columns: 1fr; }
  .room-includes-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.05); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .hostel-cards-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .top-bar-inner { justify-content: center; }
  .top-bar-item.desktop-only { display: none; }

  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }

  .hero-slider { height: 85vh; }
  .slide-content { padding: 0 24px 80px; max-width: 100%; }
  .slide-content h1 { font-size: 36px; }
  .slide-content p { font-size: 15px; }
  .slide-btns { flex-direction: column; gap: 10px; }
  .slider-arrow { display: none; }
  .slider-dots { right: 24px; }
  .scroll-indicator { left: 24px; }

  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-accent-img { display: none; }
  .about-badge { top: 12px; left: 12px; }

  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-image { aspect-ratio: 16/9; }
  .why-checklist { grid-template-columns: 1fr; }

  .rooms-grid { grid-template-columns: 1fr; }
  .fac-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.wide { grid-column: span 1; }

  .cta-banner-inner { grid-template-columns: 1fr; padding: 40px 24px; }
  .cta-block { padding: 28px 24px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }

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

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

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .testimonial-card { min-width: calc(100% - 0px); }

  .about-reason-list { grid-template-columns: 1fr; }
  .room-includes-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-card { padding: 28px 24px; }

  .section { padding: 64px 20px; }
  .section-sm { padding: 48px 20px; }
  .page-hero { padding: 52px 20px 44px; }
}

@media (max-width: 480px) {
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .fac-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .floating-btns { bottom: 20px; right: 16px; }
  .float-btn { width: 50px; height: 50px; }
  .back-to-top { left: 16px; bottom: 20px; }
}
