/* ============================================================
   EKVEERA PG - MAIN STYLESHEET
   Color Palette:
   --navy:  #0d1f4e  (primary dark)
   --gold:  #f5a623  (accent gold)
   --cream: #fdf8f0  (light bg)
   --dark:  #0a1628  (section dark)
============================================================ */

:root {
  --navy: #0d1f4e;
  --navy-mid: #1a2f6b;
  --navy-light: #213580;
  --gold: #f5a623;
  --gold-light: #fdc65a;
  --gold-dark: #d4891a;
  --white: #ffffff;
  --cream: #fdf8f0;
  --dark: #070f24;
  --dark-mid: #0f1e3d;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --text: #1a2340;
  --text-muted: #64748b;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow: 0 4px 32px rgba(13, 31, 78, 0.12);
  --shadow-lg: 0 8px 48px rgba(13, 31, 78, 0.2);
  --shadow-gold: 0 4px 24px rgba(245, 166, 35, 0.3);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.18s ease;
}

/* ── Reset & Base ── */
*, *::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(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.bg-dark { background: var(--dark); }
.bg-accent { background: var(--cream); }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-heading); }
.gold { color: var(--gold); }
.gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section Headers ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(245,166,35,0.15), rgba(245,166,35,0.05));
  color: var(--gold-dark);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-subtitle { color: rgba(255,255,255,0.65); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(13, 31, 78, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(13, 31, 78, 0.4);
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #20c35a);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.full-width { width: 100%; justify-content: center; }

/* ===========================
   TOP ANNOUNCEMENT BAR (TRUST & URGENCY)
 =========================== */
.top-announcement-bar {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 0;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  letter-spacing: 0.03em;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.announcement-item i {
  font-size: 0.9rem;
}
.announcement-item i.gold {
  color: var(--navy);
}
.announcement-divider {
  opacity: 0.3;
}
.top-announcement-bar .urgency i {
  color: #c0392b;
  animation: pulse 1.5s infinite alternate;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 15, 36, 0.0);
  backdrop-filter: blur(0px);
  transition: var(--transition);
  padding: 10px 0;
}
.navbar.scrolled {
  top: 36px;
  background: rgba(7, 15, 36, 0.96);
  backdrop-filter: blur(20px);
  padding: 6px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 90px; width: auto; transition: var(--transition); }
.navbar.scrolled .logo-img { height: 75px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition-fast);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: rgba(245, 166, 35, 0.1);
}
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy) !important;
  padding: 8px 20px !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
}

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

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 15, 36, 0.88) 0%,
    rgba(13, 31, 78, 0.75) 50%,
    rgba(7, 15, 36, 0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 220px 24px 80px;
  max-width: 760px;
  padding-left: max(24px, calc(50vw - 600px + 24px));
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.2);
  border: 1px solid rgba(245, 166, 35, 0.4);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}
.hero-badge i { color: var(--gold); }

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s 0.1s ease both;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 24px;
  line-height: 1.8;
  animation: fadeInUp 0.9s 0.2s ease both;
}
.hero-trust-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.28s ease both;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 500;
  transition: var(--transition-fast);
}
.trust-badge:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
}
.trust-badge i {
  color: var(--gold);
  font-size: 0.82rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
  animation: fadeInUp 0.9s 0.3s ease both;
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.4s ease both;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2s infinite;
}
.scroll-indicator {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===========================
   ABOUT
=========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  height: 520px;
}
.about-img-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.about-img-card:hover { transform: scale(1.02); }
.main-card {
  width: 85%;
  height: 420px;
  top: 0; left: 0;
}
.secondary-card {
  width: 60%;
  height: 280px;
  bottom: 0; right: 0;
  border: 4px solid var(--white);
  z-index: 2;
}
.about-img-card img { width: 100%; height: 100%; object-fit: cover; }
.about-badge-float {
  position: absolute;
  top: 40%;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 12px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-gold);
  z-index: 3;
  white-space: nowrap;
}

.about-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
}
.about-text {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.highlight-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(13,31,78,0.08), rgba(13,31,78,0.04));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-mid);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.highlight-item strong { display: block; color: var(--navy); font-weight: 600; }
.highlight-item span { font-size: 0.875rem; color: var(--text-muted); }

/* ===========================
   ROOMS
=========================== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.room-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.room-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.room-card.featured {
  border-color: rgba(245,166,35,0.5);
  box-shadow: 0 0 40px rgba(245,166,35,0.15);
}
.room-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.room-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.room-card:hover .room-img-wrap img { transform: scale(1.05); }
.room-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(13, 31, 78, 0.9);
  color: var(--gold);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
}
.room-badge.best { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); }
.room-badge.economy { background: rgba(100, 116, 139, 0.9); color: var(--white); }

.room-content { padding: 28px; }
.room-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}
.room-header h3 { color: var(--white); font-size: 1.2rem; font-weight: 700; }
.room-price { color: var(--gold); font-family: var(--font-heading); font-weight: 800; font-size: 1.35rem; }
.room-price span { font-size: 0.75rem; color: rgba(255,255,255,0.55); font-weight: 400; display: block; }
.room-desc { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-bottom: 20px; line-height: 1.7; }
.room-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.room-features li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); font-size: 0.875rem; }
.room-features li i { color: var(--gold); font-size: 0.8rem; }
.room-btn { display: flex; justify-content: center; }

/* ===========================
   AMENITIES
=========================== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.amenity-card {
  background: var(--white);
  border: 1px solid rgba(13,31,78,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.amenity-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  opacity: 0;
  transition: var(--transition);
}
.amenity-card:hover::before { opacity: 1; }
.amenity-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.amenity-card:hover h4, .amenity-card:hover p { color: var(--white); }
.amenity-card.coming-soon { opacity: 0.75; }

.amenity-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(13,31,78,0.08), rgba(13,31,78,0.04));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--navy);
  margin: 0 auto 20px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.amenity-card:hover .amenity-icon {
  background: rgba(245,166,35,0.2);
  color: var(--gold);
}
.amenity-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.amenity-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.badge-soon {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 0.65rem;
  padding: 2px 10px;
  border-radius: 100px;
  font-weight: 700;
  vertical-align: middle;
  margin-left: 4px;
}

/* ===========================
   MESS SECTION
=========================== */
.mess-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mess-text .section-tag { display: inline-block; margin-bottom: 16px; }
.mess-text .section-title { text-align: left; font-size: 2rem; }
.mess-text > p { color: var(--text-muted); margin-bottom: 32px; }
.mess-timings {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.timing-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid rgba(13,31,78,0.08);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: var(--transition);
}
.timing-item:hover { box-shadow: var(--shadow); transform: translateX(4px); border-color: var(--gold); }
.timing-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.timing-item strong { display: block; color: var(--navy); font-weight: 600; }
.timing-item span { font-size: 0.875rem; color: var(--text-muted); }
.mess-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(245,166,35,0.1), rgba(245,166,35,0.05));
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: var(--radius);
  padding: 12px 20px;
  color: var(--gold-dark);
  font-size: 0.875rem;
  font-weight: 500;
}
.mess-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
}
.mess-image img { width: 100%; height: 100%; object-fit: cover; }

/* ===========================
   PRICING
=========================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.pricing-card {
  background: var(--white);
  border: 2px solid rgba(13,31,78,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-color: var(--navy);
  color: var(--white);
}
.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 4px 24px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}
.pricing-header { text-align: center; margin-bottom: 32px; }
.pricing-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(13,31,78,0.08), rgba(13,31,78,0.04));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--navy);
  margin: 0 auto 20px;
}
.pricing-card.featured .pricing-icon {
  background: rgba(245,166,35,0.2);
  color: var(--gold);
}
.pricing-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.pricing-card.featured .pricing-header h3 { color: var(--white); }
.price-amount {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
}
.pricing-card.featured .price-amount { color: var(--gold); }
.currency { font-size: 1.4rem; vertical-align: top; padding-top: 6px; display: inline-block; }
.price-period {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  display: block;
  margin-top: 4px;
}
.pricing-card.featured .price-period { color: rgba(255,255,255,0.6); }
.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.pricing-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.pricing-list li i { color: var(--gold); font-size: 0.85rem; flex-shrink: 0; }
.pricing-card.featured .pricing-list li { color: rgba(255,255,255,0.8); }
.pricing-note {
  background: linear-gradient(135deg, rgba(13,31,78,0.06), rgba(13,31,78,0.02));
  border: 1px solid rgba(13,31,78,0.12);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.pricing-note i { color: var(--navy); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.pricing-note strong { color: var(--navy); }

/* ===========================
   GALLERY
=========================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item.large {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,15,36,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius);
  object-fit: contain;
}
#lightboxCaption { color: rgba(255,255,255,0.7); margin-top: 16px; font-size: 0.9rem; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  font-size: 1rem;
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,0.25);
}/* ===========================
   APP DOWNLOAD (SINGLE FEATURED)
 =========================== */
.apps-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(13,31,78,0.08);
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: var(--shadow);
}
.app-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.app-left h3 {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.app-description {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}
.app-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 16px 0;
}
.app-feature-item {
  display: flex;
  gap: 16px;
}
.app-feature-item i {
  font-size: 1.4rem;
  color: var(--gold);
  background: rgba(245, 166, 35, 0.15);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.app-feature-item h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
  font-weight: 600;
}
.app-feature-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.phone-mockup-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-mockup {
  width: 290px;
  height: 540px;
  background: #111;
  border: 12px solid #222;
  border-radius: 40px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
}
.app-mock-header {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mock-logo {
  height: 24px;
  width: auto;
}
.app-mock-header span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
}
.app-mock-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.mock-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 12px;
}
.card-title {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.card-value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-value span.badge {
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: 100px;
  font-weight: 600;
}
.badge.status-pending {
  background: rgba(245, 166, 35, 0.2);
  color: var(--gold-light);
}
.mock-pay-btn {
  margin-top: 8px;
  width: 100%;
  padding: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.75rem;
}
.mock-menu-strip {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mock-menu-strip i {
  color: var(--gold);
}
.mock-notifications {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.notif-item {
  background: rgba(13, 31, 78, 0.5);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: var(--radius-sm);
  padding: 10px;
  font-size: 0.7rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.notif-item i {
  color: var(--gold);
  margin-top: 2px;
}

.app-download-btns { display: flex; gap: 12px; }

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #0d0d0d;
  color: var(--white);
  padding: 10px 24px;
  border: 1.5px solid #a6a6a6;
  border-radius: 14px;
  transition: var(--transition-fast);
  width: fit-content;
  text-align: left;
  justify-content: flex-start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.store-btn:hover { 
  transform: translateY(-2px); 
  border-color: #ffffff;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.12); 
  opacity: 1; 
}
.store-icon { 
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.store-label { 
  display: block; 
  font-size: 0.65rem; 
  color: #c2c2c2;
  letter-spacing: 0.18em; 
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.store-name { 
  display: block; 
  font-family: 'Product Sans', 'Outfit', 'Inter', sans-serif; 
  font-size: 1.35rem; 
  font-weight: 700; 
  color: #ffffff;
  letter-spacing: -0.01em;
}

/* ===========================
   RULES & REGULATIONS (ACCORDION)
 =========================== */
.rules-accordion {
  max-width: 900px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.accordion-item {
  background: var(--white);
  border: 1px solid rgba(13, 31, 78, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(13, 31, 78, 0.04);
  transition: var(--transition);
}
.accordion-item:hover {
  box-shadow: var(--shadow);
  border-color: rgba(245, 166, 35, 0.3);
}
.accordion-header {
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--white);
  transition: var(--transition);
  user-select: none;
}
.accordion-header-title {
  display: flex;
  align-items: center;
  gap: 16px;
}
.accordion-header-title i {
  font-size: 1.3rem;
  color: var(--navy);
  background: rgba(13, 31, 78, 0.06);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.accordion-item.active .accordion-header-title i {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold);
}
.accordion-header h3 {
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 700;
}
.accordion-icon {
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: var(--gold-dark);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  background: var(--white);
}
.accordion-content-inner {
  padding: 8px 28px 28px 88px;
  border-top: 1px solid rgba(13, 31, 78, 0.04);
}
.rules-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rules-list li {
  position: relative;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: 28px;
  list-style: none;
}
.rules-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--gold);
  font-size: 0.9rem;
}
.rules-download-cta {
  text-align: center;
}

/* ===========================
   CONTACT & APP PROMOTION
 =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  margin-bottom: 80px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
}
.contact-card:hover { background: var(--cream); box-shadow: var(--shadow); transform: translateX(4px); }
.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-card strong { display: block; color: var(--navy); font-weight: 600; font-size: 0.85rem; margin-bottom: 4px; }
.contact-card a, .contact-card span { color: var(--text-muted); font-size: 0.9rem; }
.contact-card a:hover { color: var(--navy); }
.contact-whatsapp { margin-top: 8px; }

.contact-download-wrap {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
}
.contact-download-wrap::before {
  content: '';
  position: absolute;
  top: -10%; right: -10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.contact-download-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.contact-download-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}
.contact-app-details {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 8px 0;
}
.qr-wrapper {
  background: var(--white);
  padding: 12px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.qr-code {
  width: 120px;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M10 10h30v30h-30zm6 6v18h18v-18zm24-6h10v10h-10zm10 10h10v10h-10zm-10 10h10v10h-10zm20-20h30v30h-30zm6 6v18h18v-18zm-56 34h30v30h-30zm6 6v18h18v-18zm34-6h10v10h-10zm10 10h10v10h-10zm10-20h10v10h-10zm10 10h10v10h-10zm-20 20h10v10h-10zm10 10h10v10h-10zm10-10h10v10h-10zm10 10h10v10h-10z' fill='%230d1f4e'/%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
}
.qr-label {
  font-size: 0.65rem;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.app-promo-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.app-promo-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}
.app-promo-bullets li i {
  color: var(--gold);
}
.contact-download-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}
.contact-download-footer span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid rgba(13,31,78,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
input, textarea, select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(13,31,78,0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition-fast);
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(13,31,78,0.06);
}
textarea { resize: vertical; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230d1f4e'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 20px; padding-right: 40px; }

/* Map */
.map-section { margin-top: 40px; }
.map-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 24px;
  font-family: var(--font-heading);
}
.map-title i { color: var(--gold); }
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(13,31,78,0.1);
}
.map-cta { text-align: center; margin-top: 24px; }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 180px; width: auto; margin-bottom: 20px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.875rem; line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition-fast);
}
.social-link:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.875rem; transition: var(--transition-fast); }
.footer-links a:hover { color: var(--gold); }
.footer-contact p {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}
.footer-contact i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.55); transition: var(--transition-fast); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 8px;
}

/* ===========================
   FLOATING WHATSAPP
=========================== */
.floating-whatsapp {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  z-index: 999;
  cursor: pointer;
  text-decoration: none;
  animation: whatsappPulse 2s infinite;
}
.floating-whatsapp:hover {
  transform: scale(1.08) translateY(-2px);
  background: #20c35a;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}
.whatsapp-tooltip {
  position: absolute;
  left: 72px;
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
  pointer-events: none;
  box-shadow: var(--shadow);
  font-family: var(--font-body);
}
.whatsapp-tooltip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: var(--navy);
}
.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 0px rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 0px rgba(37, 211, 102, 0);
  }
}

/* ===========================
   SCROLL TO TOP
=========================== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  z-index: 900;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(245,166,35,0.5); }

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
  .rooms-grid, .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .rules-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 48px; }
  .apps-grid { grid-template-columns: 1fr; gap: 24px; }
  .app-divider { flex-direction: row; }
  .divider-circle { width: 48px; height: 48px; }
}

@media (max-width: 768px) {
  .top-announcement-bar { height: auto; padding: 8px 0; font-size: 0.7rem; position: relative; z-index: 1001; }
  .navbar { position: relative; top: 0; padding: 12px 0; background: rgba(7, 15, 36, 0.96); z-index: 1000; }
  .navbar.scrolled { position: fixed; top: 0; background: rgba(7, 15, 36, 0.96); z-index: 1000; }
  .announcement-divider { display: none; }
  .top-bar-container { gap: 6px; flex-direction: column; text-align: center; }

  .logo-img { height: 70px !important; }
  .navbar.scrolled .logo-img { height: 55px !important; }
  .hero-content { padding-top: 70px !important; }

  .section { padding: 72px 0; }
  .hamburger { display: flex; z-index: 1001; position: relative; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transform: translateX(100%);
    transition: var(--transition);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1.2rem; padding: 12px 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { height: 320px; order: -1; }
  .main-card { width: 90%; height: 260px; }
  .secondary-card { width: 55%; height: 200px; }
  .about-badge-float { right: -10px; font-size: 0.78rem; }
  .rooms-grid, .amenities-grid, .pricing-grid, .rules-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.large { grid-row: span 1; height: 200px; }
  .gallery-item { height: 180px; }
  .mess-content { grid-template-columns: 1fr; }
  .mess-image { height: 280px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .apps-grid { grid-template-columns: 1fr; padding: 24px; gap: 32px; }
  .app-features-grid { grid-template-columns: 1fr; gap: 16px; }
  .contact-download-wrap { padding: 24px; }
  .contact-app-details { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
  .contact-download-footer { flex-direction: column; width: 100%; }
  .contact-download-footer .store-btn { width: 100%; }
  .app-card-content { flex-direction: column; }
  .hero-stats { gap: 20px; }
  .hero-cta { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .section-title { font-size: 1.8rem; }
  .btn { padding: 12px 24px; font-size: 0.875rem; }
}

/* ============================================================
   EKVEERA PG - NEW STYLES (PROMO, GIRLS FLOOR & DEALS)
   ============================================================ */

/* Hero Badge Wrapper & Offer Badge */
.hero-badges-wrapper {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}
.hero-badges-wrapper .hero-badge {
  margin-bottom: 0 !important;
}
.hero-badge.offer-badge {
  background: rgba(245, 166, 35, 0.25);
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
  animation: pulse-border 2s infinite alternate;
}
@keyframes pulse-border {
  0% { border-color: var(--gold); box-shadow: 0 0 4px rgba(245, 166, 35, 0.2); }
  100% { border-color: var(--white); box-shadow: 0 0 12px rgba(255, 255, 255, 0.6); }
}

/* Girls Special Floor Banner */
.girls-special-banner {
  background: linear-gradient(135deg, #fff0f5, #ffe4e1);
  border: 1.5px solid #ffb6c1;
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  box-shadow: 0 4px 20px rgba(255, 182, 193, 0.15);
  animation: fadeInUp 0.8s ease;
}
.girls-banner-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
}
.girls-banner-text h3 {
  color: #c71585;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.girls-banner-text p {
  color: #8b008b;
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}

/* Special Offer Section & Banner Card */
.special-offer-section {
  padding: 40px 0;
  background: var(--cream);
}
.offer-banner-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(245, 166, 35, 0.25);
  position: relative;
  overflow: hidden;
}
.offer-banner-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.offer-icon {
  width: 80px;
  height: 80px;
  background: rgba(245, 166, 35, 0.2);
  border: 1px solid rgba(245, 166, 35, 0.4);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 2.2rem;
  flex-shrink: 0;
  animation: pulse-gold 2.5s infinite;
}
.offer-content {
  flex: 1;
  position: relative;
  z-index: 1;
}
.offer-tag-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.offer-content h3 {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.offer-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}
.offer-action {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
@keyframes pulse-gold {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(245, 166, 35, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 166, 35, 0); }
}

@media (max-width: 991px) {
  .offer-banner-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }
  .offer-icon {
    margin: 0 auto;
  }
  .offer-action {
    width: 100%;
  }
  .offer-action .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .girls-special-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }
  .girls-banner-icon {
    margin: 0 auto;
  }
}

/* ============================================================
   EKVEERA PG - PERSISTENT FLOATING BOTTOM PROMO BANNER
   ============================================================ */
.floating-promo-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
  width: 100%;
  background: rgba(7, 15, 36, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 3.5px solid var(--gold);
  padding: 18px 32px 14px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
  z-index: 1002;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.floating-promo-banner.show {
  transform: translateY(0);
}
.promo-banner-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 12px;
}
.promo-banner-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}
.promo-banner-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}
.banner-badge:hover {
  transform: translateY(-1px);
}
.badge-offer {
  background: linear-gradient(135deg, #f5a623, #ff9f00);
  color: var(--navy);
}
.badge-girls {
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  color: var(--white);
}
.promo-banner-cta {
  flex-shrink: 0;
}
.banner-cta-btn {
  padding: 10px 24px !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  border-radius: 100px !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
  transition: all 0.3s ease !important;
}
.banner-cta-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.5) !important;
  opacity: 1 !important;
}
.promo-banner-bottom {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
}
.promo-banner-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.01em;
}
.close-promo-btn {
  position: absolute;
  right: 24px;
  top: 16px;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.5);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  line-height: 1;
}
.close-promo-btn:hover {
  color: var(--gold);
}

/* Sibling offsets to push floating buttons up on desktop when banner is active */
.floating-promo-banner.show ~ .floating-whatsapp {
  bottom: 125px;
}
.floating-promo-banner.show ~ .scroll-top {
  bottom: 125px;
}

@media (max-width: 991px) {
  .floating-promo-banner {
    padding: 24px 20px 16px;
  }
  .promo-banner-container {
    gap: 14px;
  }
  .promo-banner-top {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
  }
  .promo-banner-badges {
    justify-content: center;
    width: 100%;
    gap: 10px;
  }
  .banner-badge {
    font-size: 0.72rem;
    padding: 6px 14px;
    justify-content: center;
  }
  .promo-banner-cta {
    width: 100%;
  }
  .banner-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 24px !important;
  }
  .promo-banner-bottom {
    text-align: center;
    padding-top: 8px;
  }
  .promo-banner-text {
    text-align: center;
    font-size: 0.85rem;
  }
  .close-promo-btn {
    top: 10px;
    right: 12px;
    font-size: 1.3rem;
  }
  
  /* Sibling offsets to push floating buttons up on mobile when banner is active */
  .floating-promo-banner.show ~ .floating-whatsapp {
    bottom: 225px;
  }
  .floating-promo-banner.show ~ .scroll-top {
    bottom: 225px;
  }
}

@media (max-width: 480px) {
  .promo-banner-badges {
    flex-direction: column;
  }
  .banner-badge {
    width: 100%;
  }
  
  .floating-promo-banner.show ~ .floating-whatsapp {
    bottom: 290px;
  }
  .floating-promo-banner.show ~ .scroll-top {
    bottom: 290px;
  }
}

/* Developer link style in footer */
.developer-link {
  color: var(--gold);
  font-weight: 600;
  transition: var(--transition-fast);
}
.developer-link:hover {
  color: var(--white);
  text-decoration: underline;
}
