/* ============================================
   NOOR HOSTELS — PREMIUM LUXURY DESIGN SYSTEM
   Navy + Gold Theme
   ============================================ */

/* Google Fonts — Luxury typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Primary — Navy & Gold */
  --clr-navy: #0a1628;
  --clr-navy-light: #0f1f3a;
  --clr-navy-mid: #152240;
  --clr-navy-surface: #1a2a4a;
  --clr-gold: #c9a84c;
  --clr-gold-light: #dbc06a;
  --clr-gold-dark: #b08d30;
  --clr-gold-muted: #a08a50;
  --clr-cream: #f5ebd7;

  /* Hostel brand colors */
  --clr-noor: #3b82f6;
  --clr-freedom: #a855f7;
  --clr-unity: #22c55e;
  --clr-sigma: #f97316;

  /* Neutrals */
  --clr-bg: #070e1a;
  --clr-bg-alt: #0c1729;
  --clr-surface: rgba(255, 255, 255, 0.03);
  --clr-surface-hover: rgba(255, 255, 255, 0.06);
  --clr-text: #e8e0d0;
  --clr-text-muted: #8a9ab5;
  --clr-text-dim: #5a6a85;
  --clr-border: rgba(201, 168, 76, 0.1);
  --clr-border-light: rgba(201, 168, 76, 0.2);
  --clr-border-subtle: rgba(255, 255, 255, 0.06);

  /* Glassmorphism */
  --glass-bg: rgba(15, 25, 50, 0.6);
  --glass-bg-strong: rgba(20, 32, 60, 0.75);
  --glass-border: rgba(201, 168, 76, 0.12);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --glass-blur: blur(20px);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle luxury background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 80% 50% at 20% 30%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(201, 168, 76, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse 40% 50% at 50% 50%, rgba(10, 22, 40, 0.5) 0%, transparent 80%);
  z-index: -1;
  pointer-events: none;
}

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

ul, ol {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-cream);
}

/* ── Typography ── */
.heading-xl {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.heading-lg {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.heading-md {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
}

.heading-sm {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
}

/* Gold accent text — solid, no gradient */
.text-gold {
  color: var(--clr-gold);
}

.text-muted {
  color: var(--clr-text-muted);
}

/* Gold underline accent */
.gold-line {
  display: inline-block;
  position: relative;
}

.gold-line::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-gold), transparent);
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header .subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--clr-gold);
  margin-bottom: var(--space-sm);
  display: block;
  font-family: var(--font-body);
}

.section-header p {
  max-width: 600px;
  margin: var(--space-md) auto 0;
  color: var(--clr-text-muted);
  font-size: 1.05rem;
}

/* Decorative divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin: var(--space-md) auto;
  max-width: 200px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold-muted), transparent);
}

.divider .diamond {
  width: 6px;
  height: 6px;
  background: var(--clr-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: var(--transition-base);
  backdrop-filter: blur(0px);
}

.navbar.scrolled {
  background: rgba(7, 14, 26, 0.92);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--space-sm) 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-logo .logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--clr-gold);
  letter-spacing: 0.02em;
}

.nav-logo .logo-text span {
  color: var(--clr-cream);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: var(--transition-fast);
  position: relative;
  padding: var(--space-xs) 0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 1.5px;
  background: var(--clr-gold);
  transition: var(--transition-base);
}

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

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

.nav-cta {
  background: transparent !important;
  color: var(--clr-gold) !important;
  padding: var(--space-sm) var(--space-lg) !important;
  border-radius: 0 !important;
  border: 1.5px solid var(--clr-gold) !important;
  font-weight: 600 !important;
  transition: var(--transition-base) !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  font-size: 0.75rem !important;
}

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

.nav-cta:hover {
  background: var(--clr-gold) !important;
  color: var(--clr-navy) !important;
  transform: none !important;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: var(--space-sm);
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--clr-gold);
  border-radius: 2px;
  transition: var(--transition-base);
}

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

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

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

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(7, 14, 26, 0.95) 0%,
    rgba(7, 14, 26, 0.85) 40%,
    rgba(7, 14, 26, 0.70) 100%);
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating orbs — subtle gold */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  animation: float 10s ease-in-out infinite;
  z-index: -1;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--clr-gold-dark);
  top: -150px;
  right: -150px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 350px;
  height: 350px;
  background: var(--clr-navy-surface);
  bottom: -80px;
  left: -80px;
  animation-delay: -4s;
}

.hero-orb-3 {
  width: 200px;
  height: 200px;
  background: var(--clr-gold-muted);
  top: 40%;
  right: 25%;
  animation-delay: -7s;
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  border: 1px solid var(--clr-border-light);
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--clr-gold);
  margin-bottom: var(--space-xl);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge .pulse {
  width: 6px;
  height: 6px;
  background: var(--clr-gold);
  border-radius: 50%;
  animation: pulse 2.5s ease-in-out infinite;
}

.hero h1 {
  animation: fadeInUp 0.8s ease 0.15s forwards;
  opacity: 0;
  color: var(--clr-cream);
}

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

.hero-description {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  margin: var(--space-lg) 0 var(--space-xl);
  max-width: 520px;
  line-height: 1.9;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.45s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--clr-border);
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero-stat {
  text-align: left;
}

.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--clr-gold);
}

.hero-stat .label {
  font-size: 0.8rem;
  color: var(--clr-text-dim);
  font-weight: 500;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* 3D floating card on hero */
.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  perspective: 1000px;
}

.hero-3d-card {
  width: 300px;
  height: 380px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--glass-blur);
  padding: var(--space-xl);
  box-shadow: var(--glass-shadow);
  transform: rotateY(-8deg) rotateX(3deg);
  transition: transform 0.6s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  animation: floatCard 8s ease-in-out infinite;
}

.hero-3d-card:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.hero-3d-card .card-emoji {
  font-size: 2.5rem;
}

.hero-3d-card h3 {
  font-size: 1.15rem;
  color: var(--clr-gold);
}

.hero-3d-card p {
  color: var(--clr-text-muted);
  font-size: 0.85rem;
}

.hero-3d-card .card-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: auto;
}

.hero-3d-card .card-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

.hero-3d-card .card-features li .check {
  color: var(--clr-gold);
  font-weight: bold;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-primary {
  background: var(--clr-gold);
  color: var(--clr-navy);
  border-radius: 0;
}

.btn-primary:hover {
  background: var(--clr-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--clr-cream);
  border: 1px solid var(--clr-border-light);
  border-radius: 0;
}

.btn-secondary:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  border-radius: 0;
}

.btn-whatsapp:hover {
  background: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-accent {
  background: transparent;
  color: var(--clr-gold);
  border: 1px solid var(--clr-gold);
  border-radius: 0;
}

.btn-accent:hover {
  background: var(--clr-gold);
  color: var(--clr-navy);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
}

/* ── Glass Card ── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--clr-border);
  border-radius: 0;
  backdrop-filter: var(--glass-blur);
  padding: var(--space-xl);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold-muted), transparent);
  opacity: 0.3;
}

.glass-card:hover {
  border-color: var(--clr-border-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* ── 3D Tilt Card ── */
.tilt-card {
  perspective: 1000px;
}

.tilt-card-inner {
  background: var(--glass-bg);
  border: 1px solid var(--clr-border);
  border-radius: 0;
  backdrop-filter: var(--glass-blur);
  padding: var(--space-xl);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.tilt-card:hover .tilt-card-inner {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border-color: var(--clr-border-light);
}

.tilt-card-inner .card-icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-md);
  transform: translateZ(30px);
  display: inline-block;
}

.tilt-card-inner h3 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  transform: translateZ(20px);
  color: var(--clr-gold);
  font-family: var(--font-body);
  font-weight: 600;
}

.tilt-card-inner p {
  color: var(--clr-text-muted);
  font-size: 0.85rem;
  transform: translateZ(10px);
}

/* ── Hostel Cards ── */
.hostel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-xl);
}

.hostel-card {
  background: var(--glass-bg);
  border: 1px solid var(--clr-border);
  border-radius: 0;
  backdrop-filter: var(--glass-blur);
  padding: var(--space-2xl);
  text-align: center;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.hostel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.hostel-card.noor::before { background: var(--clr-noor); }
.hostel-card.freedom::before { background: var(--clr-freedom); }
.hostel-card.unity::before { background: var(--clr-unity); }
.hostel-card.sigma::before { background: var(--clr-sigma); }

.hostel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
  border-color: var(--clr-border-light);
}

.hostel-card .hostel-icon {
  width: 60px;
  height: 60px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto var(--space-lg);
  border: 1px solid var(--clr-border);
}

.hostel-card.noor .hostel-icon { border-color: rgba(59, 130, 246, 0.3); }
.hostel-card.freedom .hostel-icon { border-color: rgba(168, 85, 247, 0.3); }
.hostel-card.unity .hostel-icon { border-color: rgba(34, 197, 94, 0.3); }
.hostel-card.sigma .hostel-icon { border-color: rgba(249, 115, 22, 0.3); }

.hostel-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
  color: var(--clr-cream);
}

.hostel-card .hostel-tag {
  display: inline-block;
  padding: 3px 14px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
  border: 1px solid;
}

.hostel-card.noor .hostel-tag,
.hostel-card.freedom .hostel-tag,
.hostel-card.unity .hostel-tag {
  border-color: rgba(201, 168, 76, 0.3);
  color: var(--clr-gold);
}

.hostel-card.sigma .hostel-tag {
  border-color: rgba(59, 130, 246, 0.3);
  color: #60a5fa;
}

.hostel-card .hostel-address {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-lg);
}

/* ── Amenity Grid ── */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-lg);
}

.amenity-card {
  background: var(--glass-bg);
  border: 1px solid var(--clr-border);
  border-radius: 0;
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  transition: var(--transition-base);
  cursor: default;
}

.amenity-card:hover {
  border-color: var(--clr-gold-muted);
  transform: translateX(4px);
}

.amenity-card .amenity-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-border);
}

.amenity-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--clr-cream);
}

.amenity-card p {
  font-size: 0.75rem;
  color: var(--clr-text-dim);
  margin-top: 2px;
}

/* ── Policy Section ── */
.policy-card {
  background: var(--glass-bg);
  border: 1px solid var(--clr-border);
  border-radius: 0;
  backdrop-filter: var(--glass-blur);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: var(--transition-base);
}

.policy-card:hover {
  border-color: var(--clr-border-light);
}

.policy-header {
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition-fast);
}

.policy-header:hover {
  background: var(--glass-bg-strong);
}

.policy-header .policy-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--clr-gold-muted);
  color: var(--clr-gold);
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: var(--space-md);
  flex-shrink: 0;
  font-family: var(--font-heading);
}

.policy-header h4 {
  flex: 1;
  font-weight: 500;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--clr-text);
}

.policy-header .toggle-icon {
  font-size: 1rem;
  transition: var(--transition-base);
  color: var(--clr-gold-muted);
}

.policy-card.active .policy-header .toggle-icon {
  transform: rotate(180deg);
}

.policy-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.policy-card.active .policy-body {
  max-height: 300px;
}

.policy-body-inner {
  padding: 0 var(--space-xl) var(--space-lg);
  padding-left: calc(var(--space-xl) + 28px + var(--space-md));
  color: var(--clr-text-muted);
  font-size: 0.85rem;
  line-height: 1.8;
}

/* ── Pricing Table ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.pricing-card {
  background: var(--glass-bg);
  border: 1px solid var(--clr-border);
  border-radius: 0;
  backdrop-filter: var(--glass-blur);
  padding: var(--space-2xl);
  text-align: center;
  transition: var(--transition-base);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--clr-gold-muted);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.08);
}

.pricing-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: 0;
  right: var(--space-md);
  background: var(--clr-gold);
  color: var(--clr-navy);
  padding: 4px 14px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-border-light);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card .pricing-icon { font-size: 2.2rem; margin-bottom: var(--space-md); }
.pricing-card h3 { font-size: 1.2rem; margin-bottom: var(--space-sm); color: var(--clr-cream); }

.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  margin: var(--space-md) 0;
  color: var(--clr-gold);
}

.pricing-card .price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--clr-text-muted);
  font-family: var(--font-body);
}

.pricing-card .pricing-details { text-align: left; margin: var(--space-lg) 0; }

.pricing-card .pricing-details li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  border-bottom: 1px solid var(--clr-border);
}

.pricing-card .pricing-details li:last-child { border-bottom: none; }
.pricing-card .pricing-details li .icon { color: var(--clr-gold); }

/* ── Timings ── */
.timing-card {
  background: var(--glass-bg);
  border: 1px solid var(--clr-border);
  border-radius: 0;
  backdrop-filter: var(--glass-blur);
  padding: var(--space-2xl);
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.timing-card .timing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  border-bottom: 1px solid var(--clr-border);
}

.timing-card .timing-row:last-child { border-bottom: none; }
.timing-card .timing-days { font-weight: 600; color: var(--clr-cream); }

.timing-card .timing-hours {
  color: var(--clr-gold);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

/* ── Contact Section ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--clr-gold-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--glass-bg);
  border: 1px solid var(--clr-border);
  border-radius: 0;
  padding: var(--space-md);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ── Map Section ── */
.map-container {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--clr-border);
  height: 300px;
}

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

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--clr-border);
  padding: var(--space-3xl) 0 var(--space-xl);
  background: rgba(0, 0, 0, 0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand p {
  color: var(--clr-text-muted);
  font-size: 0.85rem;
  margin-top: var(--space-md);
  max-width: 280px;
}

.footer-brand .tagline {
  font-size: 0.7rem;
  color: var(--clr-gold-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: var(--space-sm);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-gold);
  margin-bottom: var(--space-lg);
  font-family: var(--font-body);
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  padding: var(--space-xs) 0;
  transition: var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--clr-text-dim);
}

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition-base);
  animation: breathe 4s ease-in-out infinite;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.whatsapp-float .tooltip {
  position: absolute;
  right: 66px;
  background: var(--clr-navy);
  color: var(--clr-gold);
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  border: 1px solid var(--clr-border);
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
}

/* ── Page Header ── */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 50% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
  z-index: -1;
}

.page-header .subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--clr-gold);
  margin-bottom: var(--space-md);
  display: block;
  font-family: var(--font-body);
}

.page-header p {
  max-width: 550px;
  margin: var(--space-md) auto 0;
  color: var(--clr-text-muted);
  font-size: 1rem;
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-children .reveal {
  transition-delay: calc(var(--i, 0) * 0.08s);
}

/* ── Keyframe Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.03); }
}

@keyframes floatCard {
  0%, 100% { transform: rotateY(-8deg) rotateX(3deg) translateY(0); }
  50% { transform: rotateY(-8deg) rotateX(3deg) translateY(-12px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}

@keyframes breathe {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.55); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ── Particles ── */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--clr-gold);
  border-radius: 50%;
  opacity: 0.15;
  animation: float var(--dur, 10s) var(--delay, 0s) ease-in-out infinite;
}

/* ── Not Included Section ── */
.not-included {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.12);
  border-radius: 0;
  padding: var(--space-xl);
}

.not-included h3 { color: #f87171; margin-bottom: var(--space-md); }

.not-included .item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  color: var(--clr-text-muted);
}

.not-included .item .x { color: #f87171; font-weight: bold; }

/* ── Warning/Info boxes ── */
.info-box {
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 0;
  padding: var(--space-lg);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.info-box .info-icon { font-size: 1.3rem; flex-shrink: 0; }

.info-box p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(7, 14, 26, 0.97);
    backdrop-filter: var(--glass-blur);
    flex-direction: column;
    padding: 100px var(--space-xl) var(--space-xl);
    gap: var(--space-lg);
    transition: right var(--transition-base);
    border-left: 1px solid var(--clr-border);
  }

  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: var(--space-xl); }
  .hero-stat .number { font-size: 1.6rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer-bottom { flex-direction: column; gap: var(--space-md); text-align: center; }
  .hostel-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: 1fr; }
  .section { padding: var(--space-3xl) 0; }
  .page-header { padding: 120px 0 60px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: var(--space-lg); }
  .btn-lg { width: 100%; justify-content: center; }
}
