/* ============================================
   Dholera Capital City – Light Luxury Theme
   ============================================ */

:root {
  --gold: #b8952e;
  --gold-light: #f0dfa0;
  --gold-mid: #d4af37;
  --gold-dark: #8a6f24;
  --gold-rich: #c9a227;
  --champagne: #f7f0e4;
  --ivory: #faf8f5;
  --white: #ffffff;
  --ink: #1c1814;
  --ink-soft: #3d3830;
  --text-muted: #6b6358;
  --wine: #7a2634;
  --wine-light: #9e3344;
  --border-gold: rgba(212, 175, 55, 0.35);
  --border-light: rgba(28, 24, 20, 0.08);
  --font-serif: 'Roboto', 'Segoe UI', sans-serif;
  --font-display: 'Roboto', 'Segoe UI', sans-serif;
  --font-sans: 'Roboto', 'Segoe UI', sans-serif;
  --shadow-soft: 0 4px 24px rgba(28, 24, 20, 0.06);
  --shadow-card: 0 12px 48px rgba(28, 24, 20, 0.1);
  --shadow-gold: 0 8px 40px rgba(212, 175, 55, 0.28);
  --shadow-elevated: 0 28px 80px rgba(28, 24, 20, 0.12);
  --gold-gradient: linear-gradient(135deg, #f0dfa0 0%, #d4af37 40%, #b8952e 70%, #8a6f24 100%);
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 500;
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background effects */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(232, 213, 163, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 95% 60%, rgba(201, 169, 98, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 40% 35% at 5% 80%, rgba(247, 240, 228, 0.8) 0%, transparent 50%),
    linear-gradient(180deg, #fffdf9 0%, var(--ivory) 35%, #f5f0e8 100%);
}

.bg-pattern {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.bg-shimmer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(212, 175, 55, 0.04) 45%,
    rgba(240, 223, 160, 0.08) 50%,
    rgba(212, 175, 55, 0.04) 55%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: bg-shimmer 8s ease-in-out infinite;
}

@keyframes bg-shimmer {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -200% 0; }
}

.bokeh {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
  animation: float 10s ease-in-out infinite;
}

.bokeh-1 { width: 400px; height: 400px; background: rgba(232, 213, 163, 0.35); top: 5%; right: -8%; }
.bokeh-2 { width: 300px; height: 300px; background: rgba(201, 169, 98, 0.15); top: 55%; left: -5%; animation-delay: -4s; }
.bokeh-3 { width: 350px; height: 350px; background: rgba(247, 240, 228, 0.6); bottom: 5%; right: 20%; animation-delay: -7s; }

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

/* Premium top bar */
.premium-bar {
  position: relative;
  z-index: 1001;
  background: var(--gold-gradient);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.premium-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.premium-bar-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(28, 24, 20, 0.25);
  padding: 5px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.premium-bar-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.5px;
}

/* Shimmer button effect */
.shimmer-btn {
  position: relative;
  overflow: hidden;
}

.shimmer-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: btn-shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btn-shimmer {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Header */
.header {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  top: 0;
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(24px) saturate(1.3);
  border-bottom: 1px solid var(--border-gold);
  padding: 10px 0;
  box-shadow: 0 10px 40px rgba(28, 24, 20, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: height var(--transition);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}

.logo-name {
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--white);
  transition: color var(--transition);
}

.logo-sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold-light);
  transition: color var(--transition);
}

.header.scrolled .logo-name {
  color: var(--ink);
}

.header.scrolled .logo-sub {
  color: var(--gold-dark);
}

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

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  margin-right: 8px;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

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

.nav-links a:hover {
  color: var(--gold-light);
}

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

.header.scrolled .nav-links a {
  color: var(--ink-soft);
}

.header.scrolled .nav-links a:hover {
  color: var(--gold-dark);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: var(--gold-gradient);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  flex-shrink: 0;
}

.nav-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.45);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 45% at 20% 30%, rgba(212, 175, 55, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 85% 70%, rgba(180, 120, 40, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 30% 25% at 70% 15%, rgba(212, 175, 55, 0.12) 0%, transparent 45%),
    linear-gradient(160deg, #2a1f14 0%, #1a120c 40%, #0e0906 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23d4af37' stroke-width='0.3' opacity='0.4'%3E%3Cpath d='M0 40h80M40 0v80M0 0l80 80M80 0L0 80'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-rays {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: conic-gradient(from 200deg at 30% 40%, transparent 0deg, rgba(212, 175, 55, 0.06) 30deg, transparent 60deg, rgba(212, 175, 55, 0.04) 120deg, transparent 180deg);
  animation: hero-rays 12s ease-in-out infinite alternate;
}

@keyframes hero-rays {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(14, 9, 6, 0.7) 0%, transparent 25%, transparent 75%, rgba(14, 9, 6, 0.8) 100%),
    linear-gradient(90deg, rgba(14, 9, 6, 0.4) 0%, transparent 30%, transparent 70%, rgba(14, 9, 6, 0.3) 100%);
}

.hero-ornament {
  position: absolute;
  width: 120px;
  height: 120px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.35;
}

.hero-ornament-tl {
  top: 120px;
  left: 40px;
  border-top: 2px solid var(--gold-mid);
  border-left: 2px solid var(--gold-mid);
}

.hero-ornament-br {
  bottom: 60px;
  right: 40px;
  border-bottom: 2px solid var(--gold-mid);
  border-right: 2px solid var(--gold-mid);
}

.hero-bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  z-index: 3;
}

.hero .container {
  position: relative;
  z-index: 2;
}

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

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 16px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-light);
  padding: 10px 22px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: badge-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes badge-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 0;
  letter-spacing: -0.5px;
}

.hero-title .text-gold {
  background: linear-gradient(135deg, #fff8e0 0%, #f0dfa0 25%, #e8c96a 50%, #d4af37 75%, #b8952e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 16px rgba(212, 175, 55, 0.4));
}

.hero-title-line {
  width: 80px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 20px 0 22px;
  border-radius: 2px;
  position: relative;
}

.hero-title-line::after {
  content: '◆';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8px;
  color: var(--gold-mid);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(0.8rem, 1.6vw, 0.92rem);
  color: var(--gold-mid);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245, 240, 228, 0.7);
  max-width: 500px;
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-desc strong {
  color: var(--gold-light);
  font-weight: 700;
}

/* Hero stat pills */
.hero-stats {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  min-width: 110px;
  transition: var(--transition);
}

.hero-stat:hover {
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.08);
}

.hero-stat-value {
  font-size: 1.15rem;
  font-weight: 900;
  background: linear-gradient(135deg, #f0dfa0, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245, 240, 228, 0.5);
}

/* Hero offer card */
.hero-offer-card {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 28px 32px;
  margin-bottom: 28px;
  position: relative;
  }

.hero-offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
}

.hero-offer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 28px;
  border-right: 1px solid rgba(212, 175, 55, 0.25);
  flex-shrink: 0;
}

.hero-price-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 240, 228, 0.55);
}

.hero-price {
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #fff8e0 0%, #f0dfa0 40%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 12px rgba(212, 175, 55, 0.4));
}

.hero-price-note {
  font-size: 0.72rem;
  color: rgba(245, 240, 228, 0.45);
  font-weight: 500;
  margin-top: 4px;
}

.hero-offer-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 28px;
  flex: 1;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--gold-gradient);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.45);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.hero-cta-arrow {
  font-size: 1.1rem;
  transition: transform var(--transition);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 52px rgba(212, 175, 55, 0.6);
}

.hero-cta:hover .hero-cta-arrow {
  transform: translateX(4px);
}

.hero-cta-note {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gold-mid);
  text-align: center;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(245, 240, 228, 0.7);
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

.hero-trust-item::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-mid);
  font-size: 0.6rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Hero image */
.hero-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-side-brand {
  text-align: center;
  width: 100%;
}

.hero-side-brand-line {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 0 auto 16px;
  border-radius: 2px;
}

.hero-side-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff8e0 0%, #f0dfa0 30%, #d4af37 70%, #b8952e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 12px rgba(212, 175, 55, 0.35));
  margin-bottom: 8px;
}

.hero-side-tagline {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-mid);
}

.hero-image-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.2) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  animation: image-glow 4s ease-in-out infinite alternate;
}

@keyframes image-glow {
  0% { opacity: 0.7; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1.05); }
}

.hero-image-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 3px;
  background: linear-gradient(145deg, #f0dfa0, #d4af37, #8a6f24, #d4af37, #f0dfa0);
  border-radius: calc(var(--radius-lg) + 4px);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(212, 175, 55, 0.15);
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: calc(var(--radius-lg) + 20px);
  pointer-events: none;
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  top: -28px;
  right: -28px;
  width: 70px;
  height: 70px;
  border-top: 2px solid rgba(212, 175, 55, 0.5);
  border-right: 2px solid rgba(212, 175, 55, 0.5);
  pointer-events: none;
}

.hero-image-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1a120c;
}

.hero-image-inner img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
}

.hero-image-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-gradient);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.45);
  z-index: 2;
}

.hero-badge-icon {
  font-size: 0.85rem;
}

/* Floating prize tags */
.hero-float-tag {
  position: absolute;
  z-index: 3;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(28, 20, 12, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 8px 14px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  white-space: nowrap;
  animation: float-tag 4s ease-in-out infinite;
}

.hero-float-tag-1 {
  top: 8%;
  left: -8%;
  animation-delay: 0s;
}

.hero-float-tag-2 {
  top: 45%;
  right: -10%;
  animation-delay: -1.5s;
}

.hero-float-tag-3 {
  bottom: 18%;
  left: -6%;
  animation-delay: -3s;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(28, 20, 12, 0.9));
  border-color: var(--gold-mid);
  color: var(--gold-light);
}

@keyframes float-tag {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Event details bar */
.event-bar {
  background: linear-gradient(180deg, var(--white) 0%, var(--champagne) 100%);
  border-top: 2px solid var(--border-gold);
  border-bottom: 2px solid var(--border-gold);
  padding: 40px 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
}

.event-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.event-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.event-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 8px 0;
  position: relative;
}

.event-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--border-gold), transparent);
}

.event-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--white);
  border: 2px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.event-item:hover .event-icon {
  background: var(--gold-gradient);
  transform: scale(1.08);
  box-shadow: var(--shadow-gold);
}

.event-item strong {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
  font-weight: 700;
}

.event-item span {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 500;
}

/* Section common */
section {
  padding: 110px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
  font-weight: 700;
}

.section-label::before,
.section-label::after {
  content: ' — ';
  color: var(--gold-mid);
  font-weight: 500;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.3px;
  position: relative;
  display: inline-block;
}

.section-header .section-title::after {
  content: '';
  display: block;
  width: 60%;
  height: 3px;
  margin: 14px auto 0;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.about-content .section-title {
  display: block;
}

.about-content .section-title::after {
  margin: 14px 0 0;
}

.section-desc {
  max-width: 580px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 500;
}

.gold-divider {
  width: 64px;
  height: 1px;
  background: var(--gold-mid);
  margin: 22px auto;
  position: relative;
}

.gold-divider::before {
  content: '◆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8px;
  color: var(--gold-mid);
  background: var(--ivory);
  padding: 0 10px;
}

/* Alternating section backgrounds */
.payment-plan {
  text-align: center;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--white) 50%, var(--champagne) 100%);
  position: relative;
}

.payment-plan::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.prizes-section {
  background: linear-gradient(180deg, var(--champagne) 0%, var(--ivory) 50%, var(--white) 100%);
  position: relative;
}

.booking-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--champagne) 100%);
  position: relative;
}

/* Payment plan */
.plan-box {
  display: inline-block;
  padding: 60px 96px;
  border: 2px solid var(--gold-mid);
  background: #ffffff;
  position: relative;
  margin-top: 24px;
  box-shadow: var(--shadow-elevated);
  border-radius: var(--radius-md);
  z-index: 1;
}

.plan-box::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-md) + 3px);
  background: var(--gold-gradient);
  z-index: -1;
}

.gold-pulse {
  animation: gold-pulse 3s ease-in-out infinite;
}

@keyframes gold-pulse {
  0%, 100% { box-shadow: var(--shadow-elevated); }
  50% { box-shadow: 0 24px 64px rgba(212, 175, 55, 0.35); }
}

.plan-highlight {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(28, 24, 20, 0.12);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink);
}

.plan-box::after {
  content: '◆';
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-dark);
  font-size: 10px;
}

.plan-label::before {
  content: '◆';
  display: block;
  text-align: center;
  color: var(--gold-dark);
  font-size: 10px;
  margin-bottom: 10px;
}

.plan-label {
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-weight: 700;
}

.plan-ratio {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: 0px;
  position: relative;
}

.plan-ratio span {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #000000;
  background-clip: unset;
}

.plan-note {
  margin-top: 20px;
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
}

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

.prize-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.prize-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.prize-featured {
  border: 2px solid var(--gold-mid);
  background: linear-gradient(180deg, #fffdf5 0%, var(--white) 100%);
  box-shadow: var(--shadow-gold);
  transform: scale(1.03);
}

.prize-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--gold-gradient);
  color: var(--ink);
  padding: 4px 10px;
  border-radius: 50px;
}

.prize-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
  opacity: 0;
  transition: var(--transition);
}

.prize-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.prize-featured:hover {
  transform: translateY(-10px) scale(1.03);
}

.prize-card:hover::after {
  opacity: 1;
}

.prize-card:hover::before {
  opacity: 1;
}

.prize-icon {
  font-size: 44px;
  margin-bottom: 18px;
  display: block;
  filter: grayscale(0.1);
}

.prize-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 600;
}

.win-badge {
  display: inline-block;
  margin-top: 52px;
  padding:18px 20px;
  background: var(--gold-gradient);
  color: var(--ink);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 3px;
  border-radius: 50px;
  box-shadow: var(--shadow-gold);
  animation: win-badge-glow 2.5s ease-in-out infinite;
}

@keyframes win-badge-glow {
  0%, 100% { box-shadow: var(--shadow-gold); }
  50% { box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5); transform: scale(1.02); }
}

/* Why invest */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.feature-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 18px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--champagne);
  border-radius: 50%;
  border: 1px solid var(--border-gold);
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.feature-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 500;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-content ul {
  list-style: none;
  margin-top: 28px;
}

.about-content li {
  padding: 14px 0 14px 32px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border-light);
  font-weight: 500;
}

.about-content li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold-mid);
  font-size: 9px;
  top: 18px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-box {
  padding: 32px 24px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.stat-box:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 600;
}

/* Booking form */
.booking-wrapper {
  max-width: 540px;
  margin: 0 auto;
  padding: 56px 48px;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  position: relative;
}

.booking-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: var(--gold-gradient);
  z-index: -1;
}

.booking-wrapper::after {
  content: 'EXCLUSIVE INVITATION';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--gold-dark);
  background: var(--white);
  padding: 0 16px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 26px;
}

.form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
  font-weight: 700;
}

.form-group label .required {
  color: var(--wine);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 15px 18px;
  background: var(--ivory);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  transition: var(--transition);
}

.form-group input::placeholder {
  color: rgba(107, 99, 88, 0.45);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.12);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23b8952e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group select option {
  background: var(--white);
  color: var(--ink);
}

.form-submit {
  width: 100%;
  padding: 20px;
  margin-top: 10px;
  background: var(--gold-gradient);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.form-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(185, 149, 46, 0.35);
}

.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.form-message {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  text-align: center;
  display: none;
}

.form-message.error {
  display: block;
  background: #fdf2f2;
  border: 1px solid rgba(122, 38, 52, 0.2);
  color: var(--wine);
}

.form-message.success {
  display: block;
  background: #f0faf4;
  border: 1px solid rgba(39, 174, 96, 0.25);
  color: #1e7a45;
}

/* Footer */
.footer {
  padding: 56px 0 36px;
  text-align: center;
  background: linear-gradient(180deg, var(--champagne) 0%, #f0e8d8 100%);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.footer-logo-img {
  height: 90px;
  width: auto;
  display: block;
  margin: 0 auto 18px;
  object-fit: contain;
}

.footer-about {
  max-width: 860px;
  margin: 0 auto 8px;
  font-size: 0.84rem;
  line-height: 1.75;
  color: #5f574b;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 18px auto 0;
  max-width: 900px;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.2px;
}

.footer-contact-icon {
  font-size: 1rem;
  line-height: 1;
}

.footer-contact-item a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-item a:hover {
  color: var(--gold-mid);
}

.footer-rera {
  margin: 0 auto 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--ink-soft);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: 4px;
  margin-bottom: 14px;
  font-weight: 700;
}

.footer-url {
  color: var(--gold-dark);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 2px;
  transition: var(--transition);
  font-weight: 700;
}

.footer-url:hover {
  color: var(--gold-mid);
}

.footer-copy {
  margin-top: 28px;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  font-weight: 500;
}

.footer-legal-wrap {
  margin-top: 26px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(28, 24, 20, 0.12);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.footer-legal-links a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal-links a:hover {
  color: var(--gold-dark);
}

.footer-legal-links span {
  color: var(--gold-dark);
}

.footer-disclaimer {
  margin: 14px auto 0;
  max-width: 980px;
  font-size: 0.72rem;
  line-height: 1.65;
  color: #6c6458;
  text-align: center;
}

/* Legal content pages */
.legal-page {
  padding: 54px 0 80px;
}

.legal-card {
  max-width: 980px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  box-shadow: var(--shadow-soft);
}

.legal-card h1 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}

.legal-updated {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.legal-card h2 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.legal-card p,
.legal-card li {
  font-size: 0.9rem;
  color: #5d554a;
  line-height: 1.7;
}

.legal-card ul {
  margin: 0 0 10px 18px;
}

.legal-back {
  margin-top: 22px;
}

/* Lead form popup */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lead-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lead-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 14, 10, 0.72);
  backdrop-filter: blur(4px);
}

.lead-modal-dialog {
  position: relative;
  width: min(100%, 520px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 36px 32px 32px;
  background: linear-gradient(180deg, #fffdf9 0%, #faf6ee 100%);
  border: 1px solid rgba(201, 169, 98, 0.45);
  border-radius: var(--radius-md);
  box-shadow: 0 28px 80px rgba(18, 14, 10, 0.35);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.3s ease;
}

.lead-modal.is-open .lead-modal-dialog {
  transform: translateY(0) scale(1);
}

.lead-modal-dialog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.lead-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(28, 24, 20, 0.06);
  color: var(--ink-soft);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}

.lead-modal-close:hover {
  background: rgba(28, 24, 20, 0.12);
  color: var(--ink);
}

.lead-modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.lead-modal-header .section-title {
  font-size: clamp(1.5rem, 4vw, 1.9rem);
}

.lead-modal-header .section-desc {
  margin-bottom: 0;
}

body.modal-open {
  overflow: hidden;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  padding: 18px 32px;
  background: var(--gold-gradient);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.pulse-ring {
  animation: pulse-ring 2.5s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: var(--shadow-gold); }
  50% { box-shadow: 0 12px 40px rgba(212, 175, 55, 0.55), 0 0 0 10px rgba(212, 175, 55, 0.12); }
}

.floating-cta:hover {
  transform: scale(1.06);
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.5);
}

/* Thank you page */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.thankyou-card {
  max-width: 540px;
  padding: 64px 52px;
  background: var(--white);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  position: relative;
}

.thankyou-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
}

.thankyou-logo {
  height: 72px;
  width: auto;
  display: block;
  margin: 0 auto 24px;
  object-fit: contain;
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-dark));
  border-radius: 50%;
  box-shadow: var(--shadow-gold);
  font-weight: 700;
}

.thankyou-card h1 {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  color: var(--ink);
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 1px;
}

.thankyou-card p {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.8;
  font-size: 0.95rem;
  font-weight: 500;
}

.thankyou-card p strong {
  color: var(--ink-soft);
}

/* Responsive */
@media (max-width: 1080px) {
  .nav-links {
    gap: 22px;
  }

  .nav-links a {
    font-size: 0.72rem;
  }
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 170px 0 90px;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-title-line {
    margin: 20px auto 22px;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-offer-card {
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    align-items: stretch;
    max-width: 400px;
  }

  .hero-offer-left {
    padding-right: 0;
    border-right: none;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    align-items: center;
  }

  .hero-offer-right {
    padding-left: 0;
    padding-top: 4px;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-float-tag {
    display: none;
  }

  .hero-side-title {
    font-size: 1.5rem;
  }

  .hero-image {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }

  .event-bar-grid {
    grid-template-columns: 1fr 1fr;
  }

  .event-item:not(:last-child)::after {
    display: none;
  }

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

@media (max-width: 640px) {
  .premium-bar-inner {
    gap: 8px;
  }

  .premium-bar-text {
    display: none;
  }

  .premium-bar-tag {
    font-size: 0.58rem;
    padding: 4px 10px;
  }

  .header {
    top: 34px;
  }

  .hero {
    padding: 140px 0 70px;
  }

  .hero-ornament {
    display: none;
  }

  .hero-offer-card {
    padding: 22px 20px;
  }

  .hero-stat {
    min-width: 90px;
    padding: 12px 14px;
  }

  .hero-cta {
    width: 100%;
  }

  section {
    padding: 80px 0;
  }

  .event-bar-grid {
    grid-template-columns: 1fr;
  }

  .prizes-grid,
  .features-grid,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .plan-box {
    padding: 40px 28px;
  }

  .booking-wrapper {
    padding: 40px 28px;
  }

  .floating-cta {
    bottom: 16px;
    right: 16px;
    left: 16px;
    text-align: center;
    border-radius: var(--radius-sm);
  }

  .lead-modal {
    padding: 12px;
  }

  .lead-modal-dialog {
    padding: 30px 20px 24px;
  }

  .logo-img {
    height: 40px;
  }

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

  .logo-text {
    display: none;
  }

  .footer-logo-img {
    height: 72px;
  }

  .footer-about {
    font-size: 0.76rem;
    line-height: 1.65;
  }

  .footer-contact {
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
  }

  .footer-contact-item {
    font-size: 0.76rem;
    justify-content: center;
    text-align: center;
  }

  .footer-rera {
    font-size: 0.74rem;
  }

  .footer-legal-wrap {
    margin-top: 20px;
  }

  .footer-legal-links {
    gap: 8px;
    font-size: 0.72rem;
  }

  .footer-disclaimer {
    font-size: 0.69rem;
    text-align: left;
  }

  .legal-card {
    padding: 24px 18px;
  }

  .nav-cta {
    padding: 11px 20px;
    font-size: 0.65rem;
  }
}
