:root {
  --navy-950: #02382c;
  --navy-900: #012b21;
  --navy-800: #034739;
  --navy-700: #055443;
  --gold-500: #d6a84f;
  --gold-400: #e2b357;
  --gold-100: #fdf5e2;
  --white: #ffffff;
  --ice: #fdfbf7;
  --mist: #e7dfd5;
  --muted: #5e6b66;
  --ink: #121e1a;
  --shadow: 0 24px 70px rgba(2, 56, 44, 0.16);
  --shadow-soft: 0 14px 38px rgba(2, 56, 44, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1140px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--ice);
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(214, 168, 79, 0.24), transparent 26%),
    #121514;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

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

.loader-mark {
  display: flex;
  gap: 10px;
  align-items: end;
}

.loader-mark span {
  display: block;
  width: 10px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  animation: loadingPulse 0.8s ease-in-out infinite alternate;
}

.loader-mark span:nth-child(2) {
  animation-delay: 0.14s;
  height: 48px;
}

.loader-mark span:nth-child(3) {
  animation-delay: 0.28s;
}

@keyframes loadingPulse {
  from {
    transform: scaleY(0.55);
    opacity: 0.55;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(6, 21, 45, 0.84);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.site-header.scrolled .brand-logo {
  width: 46px;
  height: 46px;
}

/* ── Scroll Progress ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-500));
  z-index: 1001;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 12px rgba(214, 168, 79, 0.4);
  pointer-events: none;
}

.navbar {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(2, 56, 44, 0.1);
  background: var(--white);
  transition: width 0.3s ease, height 0.3s ease;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 202, 115, 0.42);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(214, 168, 79, 0.94), rgba(240, 202, 115, 0.76));
  color: var(--navy-950);
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(214, 168, 79, 0.25);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1;
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.nav-links a {
  padding: 10px 15px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 140px 20px 86px;
  color: var(--white);
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2200&q=85");
  background-position: center;
  background-size: cover;
  transform: scale(1.05);
  animation: heroFloat 12s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 21, 45, 0.92) 0%, rgba(6, 21, 45, 0.72) 48%, rgba(6, 21, 45, 0.45) 100%),
    linear-gradient(180deg, rgba(6, 21, 45, 0.2), rgba(6, 21, 45, 0.88));
}

@keyframes heroFloat {
  from {
    transform: scale(1.05) translateY(0);
  }

  to {
    transform: scale(1.1) translateY(-12px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  margin-right: auto;
  max-width: var(--container);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-400);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-subtitle {
  margin: 24px 0 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 800;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  font-weight: 600;
}

.hero-location svg {
  width: 20px;
  color: var(--gold-400);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  box-shadow: 0 16px 34px rgba(214, 168, 79, 0.26);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-whatsapp {
  color: var(--white);
  background: #128c4a;
  box-shadow: 0 16px 34px rgba(18, 140, 74, 0.22);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 50%;
  width: 30px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-400);
  transform: translateX(-50%);
  animation: scrollCue 1.6s ease-in-out infinite;
}

@keyframes scrollCue {
  0% {
    transform: translate(-50%, 0);
    opacity: 0.25;
  }

  45% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 18px);
    opacity: 0;
  }
}

.section {
  padding: 108px 0;
}

.section-heading {
  width: min(720px, 100%);
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:not(.section-kicker),
.about-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

.stats-section {
  position: relative;
  z-index: 5;
  margin-top: -46px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  text-align: center;
}

.stat-card strong {
  display: block;
  color: var(--navy-900);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.hostels-section {
  background: linear-gradient(180deg, var(--ice), var(--white));
}

.hostel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}

.hostel-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px;
  border: 1px solid rgba(12, 45, 90, 0.1);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at 14% 18%, rgba(240, 202, 115, 0.22), transparent 31%);
  box-shadow: var(--shadow-soft);
}

.hostel-card-accent {
  color: var(--white);
  border-color: rgba(240, 202, 115, 0.24);
  background:
    linear-gradient(135deg, rgba(6, 21, 45, 0.94), rgba(12, 45, 90, 0.88)),
    url("https://images.unsplash.com/photo-1595526114035-0d45ed16cfbf?auto=format&fit=crop&w=1500&q=85") center/cover;
}

.hostel-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.hostel-card-top span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--gold-400);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hostel-card-top svg {
  width: 46px;
  height: 46px;
  padding: 11px;
  border-radius: 16px;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
}

.hostel-card h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.hostel-card p {
  color: var(--muted);
}

.hostel-card-accent h3,
.hostel-card-accent p,
.hostel-card-accent .hostel-features li {
  color: var(--white);
}

.hostel-card-accent p,
.hostel-card-accent .hostel-features li {
  color: rgba(255, 255, 255, 0.76);
}

.hostel-features {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hostel-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #33405a;
  font-weight: 800;
}

.hostel-features svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--gold-500);
}

.hostel-offer {
  width: fit-content;
  margin: 22px 0 0;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--navy-950) !important;
  background: var(--gold-400);
  font-weight: 900;
}

.hostel-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
}

.hostel-contact-row a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid rgba(12, 45, 90, 0.12);
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--white);
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(6, 21, 45, 0.08);
}

.hostel-card-accent .hostel-contact-row a {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hostel-contact-row svg {
  width: 17px;
  height: 17px;
  color: var(--gold-500);
}

.about-section {
  background:
    linear-gradient(180deg, var(--ice), var(--white));
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.about-copy p {
  margin: 22px 0 0;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-points span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  border: 1px solid rgba(12, 45, 90, 0.12);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(6, 21, 45, 0.06);
}

.about-points svg {
  width: 18px;
  color: var(--gold-500);
}

.about-visual {
  position: relative;
  min-height: 520px;
}

.about-visual img {
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.glass-note {
  position: absolute;
  right: -18px;
  bottom: 34px;
  width: min(320px, calc(100% - 32px));
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.glass-note svg {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 14px;
  color: var(--navy-950);
  background: var(--gold-400);
}

.glass-note strong,
.glass-note span {
  display: block;
}

.glass-note strong {
  color: var(--navy-950);
}

.glass-note span {
  color: var(--muted);
  font-size: 0.9rem;
}

.rooms-section {
  background: var(--white);
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.room-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(12, 45, 90, 0.09);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(6, 21, 45, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.room-card:hover {
  transform: translateY(-10px);
  border-color: rgba(214, 168, 79, 0.42);
  box-shadow: 0 28px 60px rgba(6, 21, 45, 0.15);
}

.room-card img {
  height: 250px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.room-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--gold-400);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.room-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 250px;
  z-index: 2;
  display: grid;
  place-items: end center;
  padding-bottom: 18px;
  background: linear-gradient(180deg, transparent 35%, rgba(2, 56, 44, 0.7));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.room-card:hover .room-card-overlay {
  opacity: 1;
}

.room-card-overlay span {
  padding: 8px 18px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.room-body {
  padding: 26px;
}

.room-body h3,
.facility-card h3,
.location-card h3,
.contact-card h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.3rem;
  line-height: 1.2;
}

.room-body p,
.facility-card p,
.location-card p,
.contact-card p {
  color: var(--muted);
}

.room-body ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.room-body li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #33405a;
  font-size: 0.95rem;
  font-weight: 700;
}

.room-body li svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--gold-500);
}

.facilities-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 21, 45, 0.96), rgba(12, 45, 90, 0.94)),
    url("https://images.unsplash.com/photo-1595526114035-0d45ed16cfbf?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.facilities-section .section-heading h2,
.facilities-section .section-heading p:not(.section-kicker) {
  color: var(--white);
}

.facilities-section .section-heading p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.facility-card {
  min-height: 214px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.facility-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 202, 115, 0.5);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.09));
}

.facility-card:hover > svg {
  animation: iconBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes iconBounce {
  0% { transform: scale(1) rotate(0); }
  35% { transform: scale(1.22) rotate(-8deg); }
  65% { transform: scale(0.95) rotate(4deg); }
  100% { transform: scale(1) rotate(0); }
}

.facility-card > svg {
  width: 46px;
  height: 46px;
  padding: 11px;
  border-radius: 16px;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  box-shadow: 0 12px 28px rgba(214, 168, 79, 0.2);
}

.facility-card h3 {
  margin-top: 22px;
  color: var(--white);
}

.facility-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.gallery-section {
  background: linear-gradient(180deg, var(--white), #eef4ff);
}

.gallery-cta-section {
  overflow: hidden;
}

.gallery-teaser {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(12, 45, 90, 0.09);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at 15% 18%, rgba(240, 202, 115, 0.2), transparent 28%);
  box-shadow: var(--shadow-soft);
}

.gallery-teaser-image {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  box-shadow: 0 18px 44px rgba(6, 21, 45, 0.16);
}

.gallery-teaser-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-teaser-image:hover img {
  transform: scale(1.035);
}

.gallery-teaser-copy {
  padding: 12px;
}

.gallery-teaser-copy span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--gold-500);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-teaser-copy span svg {
  width: 17px;
  height: 17px;
}

.gallery-teaser-copy h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.gallery-teaser-copy p {
  margin: 16px 0 24px;
  color: var(--muted);
  font-size: 1.02rem;
}

.gallery-page-hero {
  position: relative;
  min-height: 76svh;
  display: grid;
  align-items: end;
  padding: 142px 20px 72px;
  color: var(--white);
  overflow: hidden;
}

.gallery-page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/gallery/boys-hostel-room-10.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
}

.gallery-page-hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
}

.gallery-page-hero-content h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.gallery-page-hero-content p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 700;
}

.gallery-page-section {
  padding-top: 92px;
}

.gallery-grid {
  column-count: 3;
  column-gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  box-shadow: var(--shadow-soft);
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  transform: translateZ(0);
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.38s ease, opacity 0.38s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(6, 21, 45, 0.44));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
  opacity: 0.92;
}

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

/* ── Reviews Section ── */
.reviews-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 38px;
}

.btn-review-write {
  color: var(--navy-950);
  border: 1px solid rgba(2, 56, 44, 0.2);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(6, 21, 45, 0.08);
}

.btn-review-write:hover {
  background: var(--gold-100);
  border-color: var(--gold-400);
}

/* ── FAQ Section ── */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(12, 45, 90, 0.09);
  border-radius: var(--radius-md);
  background: var(--ice);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.open {
  border-color: rgba(214, 168, 79, 0.4);
  box-shadow: 0 12px 32px rgba(214, 168, 79, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--navy-950);
  font-weight: 800;
  font-size: 1.05rem;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

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

.faq-question svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--gold-500);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  padding: 0 24px 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.location-section {
  background: var(--ice);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

@media (min-width: 721px) {
  .location-grid > article:nth-child(3) {
    grid-column: span 2;
  }
}

.map-wrap {
  min-height: 460px;
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--white);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}

.location-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 34px;
  border: 1px solid rgba(12, 45, 90, 0.09);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 12% 16%, rgba(240, 202, 115, 0.24), transparent 30%);
  box-shadow: var(--shadow-soft);
}

.location-map-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(12, 45, 90, 0.09);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.84)),
    radial-gradient(circle at 12% 16%, rgba(240, 202, 115, 0.2), transparent 30%);
  box-shadow: var(--shadow-soft);
}

.location-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.location-card-head .icon-pill {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.location-label {
  margin: 0 0 4px;
  color: var(--gold-500);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.location-map-card h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  line-height: 1.12;
}

.location-map-card p:not(.location-label) {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.location-map-card .map-wrap {
  min-height: 340px;
  border-width: 8px;
  border-radius: var(--radius-md);
  box-shadow: none;
}

.location-map-card .map-wrap iframe {
  min-height: 340px;
}

.location-map-card .btn {
  width: fit-content;
  margin-top: auto;
}

.icon-pill {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
}

.icon-pill svg {
  width: 28px;
  height: 28px;
}

.location-card p {
  margin: 16px 0 28px;
}

.contact-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 21, 45, 0.94), rgba(8, 32, 69, 0.96)),
    url("https://images.unsplash.com/photo-1540518614846-7eded433c457?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.contact-copy h2,
.contact-copy p {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-card:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.16);
}

.contact-card > svg {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 14px;
  color: var(--navy-950);
  background: var(--gold-400);
}

.contact-card h3 {
  color: var(--white);
}

.contact-card a,
.contact-card p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  overflow-wrap: anywhere;
}

.phone-list {
  display: grid;
  gap: 6px;
  margin-top: 4px;
}

.phone-list a {
  margin: 0;
}

.footer {
  padding: 64px 0 0;
  color: var(--white);
  background: #041126;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 40px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.68);
}

.footer p {
  max-width: 420px;
}

.footer h3 {
  margin: 0 0 16px;
  color: var(--gold-400);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-grid > div:nth-child(2) a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-grid a:hover {
  color: var(--gold-400);
  transform: translateX(3px);
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand strong,
.footer-brand small,
.footer-name {
  color: var(--gold-400);
}

.footer-name {
  font-weight: 800;
}

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

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 202, 115, 0.45);
  background: rgba(240, 202, 115, 0.12);
}

.social-links svg {
  width: 19px;
  height: 19px;
}

.footer-bottom {
  margin-top: 44px;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  max-width: none;
  margin: 0;
  font-size: 0.9rem;
}

.footer-bottom .site-credit {
  margin-top: 6px;
}

.site-credit a {
  color: var(--gold-400);
  font-weight: 800;
}

.site-credit a:hover {
  color: var(--white);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #128c4a;
  box-shadow: 0 16px 34px rgba(18, 140, 74, 0.34);
  opacity: 0;
  transform: translateY(60px) scale(0.7);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.floating-whatsapp.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.floating-whatsapp.visible:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 42px rgba(18, 140, 74, 0.42);
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(18, 140, 74, 0.45);
  animation: whatsappPulse 2.5s ease-in-out infinite;
  pointer-events: none;
  opacity: 0;
}

.floating-whatsapp.visible::before {
  opacity: 1;
}

@keyframes whatsappPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 0; }
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 10, 24, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(1040px, 100%);
  max-height: 84vh;
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  object-fit: contain;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.lightbox img.switching {
  opacity: 0;
  transform: scale(0.94);
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-nav:hover {
  background: rgba(240, 202, 115, 0.24);
  transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.lightbox-nav svg {
  width: 30px;
  height: 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.from-left {
  transform: translateX(-40px);
}

.reveal.from-right {
  transform: translateX(40px);
}

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

/* ── Page Transition ── */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--navy-950);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.page-transition.active {
  opacity: 1;
  pointer-events: all;
}

/* ── Navigation Overlay ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* ── Scroll to Top ── */
.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 90px;
  z-index: 899;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  background: rgba(6, 21, 45, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.25s ease;
  cursor: pointer;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top:hover {
  background: rgba(6, 21, 45, 0.95);
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
}

/* ── Mobile Touch Feedback ── */
@media (hover: none) {
  .btn:active {
    transform: scale(0.96) !important;
  }

  .room-card:active {
    transform: translateY(-4px);
  }

  .facility-card:active {
    transform: translateY(-4px);
  }

  .contact-card:active {
    transform: translateX(4px);
  }

  .floating-whatsapp.visible:active {
    transform: scale(0.92) !important;
  }

  .scroll-top.visible:active {
    transform: scale(0.92);
  }

  .gallery-item:active img {
    transform: scale(1.02);
  }

  .hostel-contact-row a:active,
  .social-links a:active {
    transform: scale(0.94);
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(100% - 32px, 760px);
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    margin-top: 12px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(6, 21, 45, 0.94);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px) scale(0.98);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .nav-links a {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .hero {
    align-items: end;
    min-height: 92svh;
  }

  .stats-grid,
  .room-grid,
  .facility-grid,
  .about-grid,
  .location-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .room-grid > article:nth-child(3) {
    grid-column: span 2;
  }

  .about-grid,
  .location-grid,
  .contact-grid {
    gap: 34px;
  }

  .room-grid,
  .hostel-grid,
  .facility-grid {
    gap: 18px;
  }

  .about-visual,
  .about-visual img {
    min-height: 440px;
    height: 440px;
  }

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

  .gallery-page-hero {
    min-height: 70svh;
  }

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 28px, 560px);
    --radius-lg: 22px;
    --radius-md: 18px;
  }

  .site-header {
    padding: 12px 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  .hero {
    min-height: 100svh;
    padding: 118px 16px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-bg {
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 21, 45, 0.6), rgba(6, 21, 45, 0.95)),
      linear-gradient(90deg, rgba(6, 21, 45, 0.74), rgba(6, 21, 45, 0.44));
  }

  .hero-content {
    text-align: center !important;
    margin: 0 auto !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-content * {
    text-align: center !important;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
    line-height: 1.05;
  }

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

  .hero-location {
    justify-content: center;
    align-items: center;
    font-size: 0.98rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .reviews-cta {
    width: 100%;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 34px;
    text-align: center;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    line-height: 1.15;
  }

  .stats-section {
    margin-top: 0;
    padding: 22px 0 0;
    background: var(--ice);
  }

  .hostel-grid,
  .room-grid,
  .about-grid,
  .location-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .room-grid > article:nth-child(3) {
    grid-column: span 1;
  }

  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .facility-card {
    padding: 20px 16px;
    min-height: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .facility-card > svg {
    width: 36px;
    height: 36px;
    padding: 8px;
    border-radius: 12px;
  }

  .facility-card h3 {
    margin-top: 14px;
    font-size: 1.05rem;
  }

  .facility-card p {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .reviews-cta {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .stat-card {
    padding: 16px;
  }

  .stat-card strong {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .stat-card span {
    font-size: 0.8rem;
  }

  .about-visual,
  .about-visual img {
    min-height: 360px;
    height: 360px;
  }

  .about-points {
    justify-content: center;
  }

  .about-points span {
    padding: 8px 12px;
    font-size: 0.88rem;
  }

  .about-copy {
    text-align: center;
  }

  .glass-note {
    right: 16px;
    bottom: 18px;
  }

  .room-card img {
    height: 230px;
  }

  .gallery-grid {
    column-count: 1;
  }

  .gallery-teaser {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px;
    text-align: center;
  }

  .gallery-teaser-copy {
    padding: 2px 4px 8px;
    text-align: center;
  }

  .gallery-teaser-copy span {
    justify-content: center;
  }

  .gallery-teaser-image img {
    aspect-ratio: 16 / 9;
  }

  .gallery-page-hero {
    min-height: 82svh;
    padding: 124px 16px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .gallery-page-hero-bg {
    background-position: 42% center;
  }

  .gallery-page-hero-content {
    text-align: center;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .gallery-page-hero-content h1 {
    font-size: clamp(2.8rem, 13vw, 4.6rem);
  }

  .gallery-item {
    margin-bottom: 16px;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox img {
    max-height: 76vh;
    border-width: 5px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 20px;
    width: 52px;
    height: 52px;
    transform: none;
  }

  .lightbox-nav:hover {
    transform: scale(1.04);
  }

  .lightbox-prev {
    left: calc(50% - 66px);
  }

  .lightbox-next {
    right: calc(50% - 66px);
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 360px;
  }

  .location-map-card {
    padding: 16px;
    gap: 14px;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .location-card-head {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    align-items: center;
  }

  .icon-pill {
    margin: 0 auto;
  }

  .location-map-card .map-wrap,
  .location-map-card .map-wrap iframe {
    min-height: 240px;
  }

  .location-map-card .btn {
    width: 100%;
  }

  .location-card {
    padding: 24px;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .room-body {
    padding: 24px;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .room-body ul {
    text-align: left;
    margin: 18px auto 0;
    width: fit-content;
  }

  .hostel-card {
    padding: 28px 22px;
    border-radius: var(--radius-lg);
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(214, 168, 79, 0.25);
    background:
      linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(253, 245, 226, 0.4) 60%, rgba(255, 255, 255, 0.95)),
      radial-gradient(ellipse at 50% 0%, rgba(214, 168, 79, 0.15), transparent 60%);
    box-shadow:
      0 20px 50px rgba(2, 56, 44, 0.1),
      0 0 0 1px rgba(214, 168, 79, 0.08);
    position: relative;
    overflow: hidden;
  }

  .hostel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-400), var(--gold-500), var(--gold-400), transparent);
    border-radius: 0 0 4px 4px;
  }

  .hostel-card-accent {
    border-color: rgba(240, 202, 115, 0.3);
    background:
      linear-gradient(145deg, rgba(6, 21, 45, 0.96), rgba(12, 45, 90, 0.92) 50%, rgba(6, 21, 45, 0.98)),
      url("https://images.unsplash.com/photo-1595526114035-0d45ed16cfbf?auto=format&fit=crop&w=1500&q=85") center/cover;
    box-shadow:
      0 24px 60px rgba(6, 21, 45, 0.25),
      0 0 0 1px rgba(240, 202, 115, 0.15),
      inset 0 1px 0 rgba(240, 202, 115, 0.12);
  }

  .hostel-card-accent::before {
    width: 50%;
    background: linear-gradient(90deg, transparent, rgba(240, 202, 115, 0.6), rgba(240, 202, 115, 0.8), rgba(240, 202, 115, 0.6), transparent);
  }

  .hostel-card-top {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
    justify-content: center;
    width: 100%;
  }

  .hostel-card-top span {
    padding: 10px 18px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    box-shadow: 0 6px 18px rgba(214, 168, 79, 0.3);
  }

  .hostel-card-top svg {
    width: 50px;
    height: 50px;
    padding: 13px;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(214, 168, 79, 0.25);
  }

  .hostel-card h3 {
    font-size: clamp(1.4rem, 5vw, 1.85rem);
    font-family: "Playfair Display", Georgia, serif;
    letter-spacing: -0.01em;
  }

  .hostel-card p {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .hostel-features {
    text-align: left;
    margin: 20px auto 0;
    width: fit-content;
    gap: 10px;
  }

  .hostel-features li {
    padding: 8px 14px;
    border-radius: 12px;
    background: rgba(214, 168, 79, 0.08);
    border: 1px solid rgba(214, 168, 79, 0.12);
    font-size: 0.9rem;
  }

  .hostel-card-accent .hostel-features li {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .hostel-offer {
    margin: 20px auto 0;
    padding: 12px 20px;
    font-size: 0.88rem;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    box-shadow: 0 8px 24px rgba(214, 168, 79, 0.3);
    animation: offerPulse 3s ease-in-out infinite;
  }

  @keyframes offerPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(214, 168, 79, 0.3); }
    50% { box-shadow: 0 8px 32px rgba(214, 168, 79, 0.5); }
  }

  .hostel-contact-row {
    gap: 8px;
    padding-top: 20px;
    justify-content: center;
    width: 100%;
  }

  .hostel-contact-row a {
    padding: 10px 14px;
    font-size: 0.84rem;
    min-height: 40px;
    border-radius: 14px;
    border: 1px solid rgba(214, 168, 79, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(253, 245, 226, 0.3));
    box-shadow: 0 6px 18px rgba(6, 21, 45, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .hostel-card-accent .hostel-contact-row a {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    border-color: rgba(240, 202, 115, 0.2);
  }

  .contact-copy {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-copy .section-kicker {
    justify-content: center;
  }

  .contact-copy p {
    max-width: 100%;
  }

  .contact-actions {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .contact-cards {
    width: 100%;
  }

  .contact-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 16px;
    gap: 14px;
  }

  .contact-card > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .contact-card > svg {
    width: 36px;
    height: 36px;
    padding: 8px;
    border-radius: 10px;
  }

  .phone-list {
    justify-content: center;
    justify-items: center;
    align-items: center;
  }

  .phone-list a {
    text-align: center;
  }

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: span 1;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    width: 54px;
    height: 54px;
  }

  .scroll-top {
    right: 16px;
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
    width: 42px;
    height: 42px;
  }

  .footer {
    text-align: center !important;
  }

  .footer * {
    text-align: center !important;
  }

  .footer p {
    margin: 0 auto 18px !important;
    max-width: 100% !important;
  }

  .footer-grid {
    justify-items: center !important;
  }

  .footer-brand {
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .footer-grid > div:nth-child(2) a {
    margin: 8px auto !important;
    display: block !important;
    width: fit-content !important;
  }

  .social-links {
    justify-content: center !important;
  }

  .footer-bottom {
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    text-align: center !important;
  }

  .elfsight-widget-wrap {
    width: 100%;
    overflow: visible;
    padding: 0 8px;
    box-sizing: border-box;
  }

  html,
  body {
    overflow-x: hidden !important;
    max-width: 100vw;
  }

  main {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  .reveal.from-left {
    transform: translateX(-15px);
  }

  .reveal.from-right {
    transform: translateX(15px);
  }
}

@media (max-width: 480px) {
  .facility-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
