/* ==========================================================================
   EXPERION ONE 42 - ULTRA LUXURY LANDING PAGE
   Design System: Asymmetric Editorial Luxury Layout (Apple + Aman + Lamborghini)
   Typography: Plus Jakarta Sans & Playfair Display
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Colors */
  --bg-pure: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-card: rgba(255, 255, 255, 0.82);
  --bg-card-solid: #ffffff;
  --bg-glass-hover: rgba(255, 255, 255, 0.95);
  --bg-dark-accent: #0f172a;
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-light: #f8fafc;

  --accent-gold: #c5a059;
  --accent-gold-light: #e5cc94;
  --accent-gold-glow: rgba(197, 160, 89, 0.25);
  --accent-bronze: #8c6d3f;

  /* Glassmorphism & Borders */
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: 1px solid rgba(226, 232, 240, 0.85);
  --glass-border-gold: 1px solid rgba(197, 160, 89, 0.35);
  --glass-blur: blur(24px);
  --glass-blur-heavy: blur(32px);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.08), 0 0 15px rgba(197, 160, 89, 0.05);
  --shadow-glow: 0 0 35px rgba(197, 160, 89, 0.2);

  /* Radius System */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Fonts */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Transitions */
  --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-pure);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

img, svg, video, canvas, iframe {
  max-width: 100%;
  height: auto;
}

/* Editorial Typography */
.font-serif {
  font-family: var(--font-serif);
}

.editorial-heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-style: italic;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-pure);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 5px;
  border: 2px solid var(--bg-pure);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.heading-serif {
  font-family: var(--font-serif);
}

.text-gold {
  color: var(--accent-gold);
}

.gradient-text {
  background: linear-gradient(135deg, #0f172a 0%, #334155 50%, #c5a059 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-gold-text {
  background: linear-gradient(135deg, #c5a059 0%, #fff3d1 25%, #e5cc94 50%, #c5a059 75%, #8c6d3f 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 4s ease infinite;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: var(--radius-full);
  color: var(--accent-gold);
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 680px;
  font-weight: 400;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  background: var(--bg-glass-hover);
  border-color: rgba(197, 160, 89, 0.4);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 1.8rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  outline: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #c5a059 0%, #a47e38 100%);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #c5a059 0%, #aa823a 100%);
  color: #ffffff;
  box-shadow: 0 10px 25px -5px rgba(197, 160, 89, 0.4);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -5px rgba(15, 23, 42, 0.4);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  color: var(--text-primary);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow-sm);
}

.btn-glass:hover {
  background: #ffffff;
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  padding: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.9rem 0;
  transition: var(--transition-smooth);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.header.scrolled {
  padding: 0.65rem 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-fast);
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1;
}

.logo-sub {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--accent-gold);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.header-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid rgba(197, 160, 89, 0.35);
  color: var(--text-primary);
  font-size: 0.825rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.header-call-btn i {
  color: var(--accent-gold);
  font-size: 0.92rem;
}

.header-call-btn:hover {
  background: var(--accent-gold);
  color: #ffffff;
  border-color: var(--accent-gold);
}

.header-call-btn:hover i {
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1005;
  padding: 2.5rem 2rem;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-drawer.active {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.drawer-close {
  background: rgba(0, 0, 0, 0.05);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-links a {
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1004;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}


.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 9rem;
  padding-bottom: 6rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0f172a;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.95);
  transform: scale(1.02);
  transition: transform 10s ease-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.7) 0%,
    rgba(15, 23, 42, 0.4) 45%,
    rgba(15, 23, 42, 0.85) 100%
  );
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-text-block {
  max-width: 850px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-rera-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(229, 204, 148, 0.4);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 700;
  color: #e5cc94;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-rera-badge i {
  color: var(--accent-gold);
  font-size: 1rem;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  text-align: left;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: heroTitleFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #e2e8f0;
  margin-bottom: 1.5rem;
  margin-left: 0;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  max-width: 850px;
}

.hero-features-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  list-style: none;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.hero-feature-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(12px);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-feature-item i {
  color: var(--accent-gold);
  font-size: 1rem;
}

.hero-mobile-cta {
  display: none;
}

.hero-glass-form {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.15);
  position: relative;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  margin: 0;
}

.hero-glass-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold) 0%, #0f172a 100%);
}

.hero-glass-form .form-header {
  margin-bottom: 0.4rem;
  text-align: center;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.hero-glass-form .form-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0;
}

.hero-glass-form .form-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.hero-form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.2fr;
  gap: 0.65rem;
  align-items: flex-end;
}

.hero-glass-form .form-group {
  margin-bottom: 0;
  position: relative;
}

.hero-glass-form .form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.15rem;
  text-align: left;
}

.hero-glass-form .form-input {
  width: 100%;
  padding: 0.45rem 0.75rem;
  height: 38px;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.95);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
  outline: none;
}

.hero-glass-form .btn {
  padding: 0.48rem 1rem;
  height: 38px;
  font-size: 0.8rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.form-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.form-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.form-group {
  margin-bottom: 1.15rem;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--accent-gold);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%3C475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}


.stats-strip {
  margin-top: -3rem;
  position: relative;
  z-index: 10;
  padding-bottom: 4rem;
}

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

.stat-card {
  padding: 1.75rem 1.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  border: var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}


.overview-section {
  padding: 2.5rem 0;
  background: #ffffff;
  position: relative;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.overview-image-wrapper {
  position: relative;
}

.overview-img-main {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.overview-glass-floating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: var(--glass-border-gold);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-md);
  max-width: 190px;
}

.floating-number {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.floating-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 0.15rem;
  line-height: 1.25;
}

.overview-content-block .section-tag {
  margin-bottom: 0.35rem;
}

.overview-content-block .section-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-bottom: 0.65rem;
}

.overview-content-block p {
  color: var(--text-secondary);
  font-size: 0.925rem;
  margin-bottom: 0.65rem;
  line-height: 1.55;
}

.overview-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 1.15rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.spec-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(197, 160, 89, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.spec-info-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.spec-info-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Global Design Collaboration & Wellness Assurance */
.collab-section {
  padding: 2.25rem 0;
  background: var(--bg-dark-accent);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.collab-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.collab-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem;
  transition: var(--transition-smooth);
}

.collab-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(197, 160, 89, 0.5);
  transform: translateY(-3px);
}

.collab-designer-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  margin-bottom: 0.4rem;
}

.collab-name {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.collab-desc {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.5;
}

.wellness-assurance-section {
  padding: 2.25rem 0;
  background: #ffffff;
}

/* Dedicated WELL-Certified Section Styling */
.well-certified-section {
  padding: 2.25rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
}

.well-header-banner {
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.well-certified-badge-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c5a059 0%, #e5cc94 100%);
  color: #0f172a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
  flex-shrink: 0;
  letter-spacing: 1px;
}

.well-certified-badge-logo i {
  font-size: 1.8rem;
  margin-bottom: 0.15rem;
}

.well-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.well-feature-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.25rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.well-feature-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 15px 35px rgba(197, 160, 89, 0.15);
  transform: translateY(-4px);
}

.well-icon-box {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(197, 160, 89, 0.12);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

.well-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.well-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.well-quote-box {
  margin-top: 2rem;
  background: rgba(15, 23, 42, 0.95);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 1.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(197, 160, 89, 0.4);
  box-shadow: var(--shadow-lg);
}

.well-quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: #e5cc94;
  line-height: 1.5;
}

.wellness-dual-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
  align-items: center;
}

.well-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid rgba(197, 160, 89, 0.35);
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.seepage-assurance-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96) 0%, rgba(30, 41, 59, 0.96) 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 3rem 2.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(197, 160, 89, 0.4);
}

.seepage-number {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #c5a059 0%, #e5cc94 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.well-feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.well-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.well-feature-item i {
  color: var(--accent-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}


.highlights-section {
  padding: 2.25rem 0;
  background: var(--bg-subtle);
  position: relative;
}

.highlights-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.sub-highlights-wrap {
  display: contents;
}

.highlight-bento-card {
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-xl);
  min-height: 180px;
  transition: var(--transition-smooth);
}

.highlight-bento-card.bento-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.72) 100%), url('images/highlights.webp');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  border: 1px solid rgba(197, 160, 89, 0.4);
  box-shadow: var(--shadow-lg);
}

.highlight-bento-card.bento-featured .highlight-title {
  color: #ffffff;
  font-size: 1.35rem;
  font-family: var(--font-serif);
  margin-bottom: 0.25rem;
}

.highlight-bento-card.bento-featured .highlight-desc {
  color: #e2e8f0;
  max-width: 540px;
  font-size: 0.85rem;
}

.highlight-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.highlight-number-tag {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}

.highlight-card {
  padding: 1.25rem 1.25rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: var(--transition-fast);
}

.highlight-card:hover::before {
  background: linear-gradient(90deg, var(--accent-gold) 0%, #0f172a 100%);
}

.highlight-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(197, 160, 89, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-bottom: 0;
  transition: var(--transition-fast);
}

.highlight-card:hover .highlight-icon-wrap {
  background: var(--accent-gold);
  color: #ffffff;
  transform: scale(1.08);
}

.highlight-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.highlight-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.plans-section {
  padding: 2.25rem 0;
  background: #ffffff;
}

.plan-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.tab-btn {
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  background: rgba(241, 245, 249, 0.8);
  border: 1px solid #e2e8f0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--text-primary);
  color: #ffffff;
  border-color: var(--text-primary);
  box-shadow: var(--shadow-md);
}

.plan-content-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 1.75rem;
}

.plan-preview-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1rem;
  border: 1px dashed rgba(197, 160, 89, 0.4);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.plan-img-placeholder {
  width: 100%;
  height: 250px;
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  gap: 0.5rem;
  padding: 1rem;
}

.plan-img-placeholder .btn {
  padding: 0.55rem 1.1rem;
  font-size: 0.8rem;
  border-radius: var(--radius-full);
  margin-top: 0.35rem;
  white-space: nowrap;
}

.plan-img-placeholder i {
  font-size: 2.2rem;
  color: var(--accent-gold);
}

.plan-details-header {
  margin-bottom: 0.65rem;
}

.plan-type-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
}

.plan-size-tag {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.plan-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
  margin: 0.85rem 0;
}

.plan-feat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-primary);
}

.plan-feat-item i {
  color: var(--accent-gold);
}


.price-section {
  padding: 2.25rem 0;
  background: var(--bg-subtle);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.price-card {
  padding: 1.25rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border: 2px solid var(--accent-gold);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-glow);
}

.price-card-tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--accent-gold);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.price-unit-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.1rem;
}

.price-unit-size {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.price-amount-wrap {
  margin: 0.4rem 0;
}

.price-starting {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 700;
}

.price-figure {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-specs-list {
  list-style: none;
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.price-specs-list li {
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.price-specs-list li i {
  color: var(--accent-gold);
}

.price-card .btn {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}


.amenities-section {
  padding: 2.25rem 0;
  background: #ffffff;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.amenity-card {
  padding: 1.25rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
}

.amenity-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
  transition: var(--transition-fast);
}

.amenity-card:hover .amenity-icon {
  background: var(--text-primary);
  color: var(--accent-gold);
  transform: translateY(-3px);
}

.amenity-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.amenity-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.gallery-section {
  padding: 2.25rem 0;
  background: var(--bg-subtle);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 190px;
  gap: 1rem;
  margin-top: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.gallery-item.featured-wide {
  grid-column: span 2;
}

.gallery-item.featured-tall {
  grid-row: span 2;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.75) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition-fast);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

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

.gallery-caption {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
}


.location-section {
  padding: 2.25rem 0;
  background: #ffffff;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
  margin-top: 1.5rem;
}

.location-map-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: var(--glass-border);
  min-height: 380px;
  height: 100%;
  display: flex;
  cursor: pointer;
}

.location-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.location-map-card:hover .location-map-img {
  transform: scale(1.04);
}

.location-map-overlay {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  pointer-events: none;
  transition: var(--transition-fast);
  z-index: 2;
}

.location-map-card:hover .location-map-overlay {
  background: var(--accent-gold);
  color: #0f172a;
}

.location-points-list {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0.65rem;
}

.loc-point-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-lg);
  background: var(--bg-subtle);
  border: 1px solid #e2e8f0;
  transition: var(--transition-fast);
  flex: 1;
}

.loc-point-item:hover {
  background: #ffffff;
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.loc-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(197, 160, 89, 0.12);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.loc-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.loc-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.loc-time-badge {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  background: rgba(197, 160, 89, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}


.specs-section {
  padding: 2.25rem 0;
  background: var(--bg-subtle);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.spec-card {
  padding: 1.25rem 1.25rem;
  height: 100%;
}

.spec-card-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.spec-header-icon {
  font-size: 1.25rem;
  color: var(--accent-gold);
}

.spec-header-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.spec-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.spec-details-list li {
  font-size: 0.825rem;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.1rem;
}

.spec-details-list li::before {
  content: '•';
  color: var(--accent-gold);
  position: absolute;
  left: 0;
  font-weight: bold;
}


.developer-section {
  padding: 2.25rem 0;
  background: #ffffff;
}

.developer-card {
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

.dev-brand-box {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dev-logo {
  max-width: 140px;
  height: auto;
}

.dev-heading {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
}

.dev-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.dev-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 0;
}

.dev-stat-box {
  padding: 0.85rem 0.5rem;
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  text-align: center;
}

.dev-stat-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.dev-stat-txt {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.faq-section {
  padding: 2.5rem 0;
  background: var(--bg-subtle);
}

.faq-wrapper {
  max-width: 850px;
  margin: 1rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.faq-item {
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-lg);
  cursor: pointer;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
}

.faq-toggle-icon {
  font-size: 1rem;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-top 0.3s ease;
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 0.4rem;
}


.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.6rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.float-whatsapp {
  background: #25d366;
}

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

.float-call {
  background: #0f172a;
}

.float-call:hover {
  background: var(--accent-gold);
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

.float-enquire-pill {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 998;
  display: none;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: 100%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(28px);
  border: var(--glass-border-gold);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.5rem;
  position: relative;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.25);
  transform: translateY(20px) scale(0.95);
  transition: var(--transition-smooth);
}

.modal-card .form-header {
  margin-bottom: 0.85rem;
  text-align: center;
}

.modal-card .form-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.modal-card .form-sub {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.modal-card .form-group {
  margin-bottom: 0.75rem;
  position: relative;
}

.modal-card .form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.modal-card .form-input {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
  outline: none;
}

.modal-card .btn {
  padding: 0.65rem 1.1rem;
  font-size: 0.85rem;
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(0, 0, 0, 0.1);
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 85vw;
  max-height: 85vh;
}

.lightbox-img {
  max-width: 80vw;
  max-height: 75vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-caption {
  margin-top: 1rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: #ffffff;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 3010;
  transition: var(--transition-fast);
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--accent-gold);
  transform: scale(1.1);
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3010;
  transition: var(--transition-fast);
}

.lightbox-btn:hover {
  background: var(--accent-gold);
  color: #0f172a;
  border-color: var(--accent-gold);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 25px rgba(197, 160, 89, 0.4);
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

.toast-msg {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: var(--text-primary);
  color: #ffffff;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 3500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-left: 4px solid var(--accent-gold);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-msg.show {
  transform: translateX(0);
}


.footer {
  background: var(--text-primary);
  color: #ffffff;
  padding: 2rem 0 1.25rem 0;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.65rem;
  max-width: 320px;
  line-height: 1.45;
}

.footer-column-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.65rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

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

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact-item i {
  color: var(--accent-gold);
  font-size: 1rem;
}

.footer-disclaimer-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  text-align: center;
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.45;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Mobile Bottom Sticky Action Bar */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(197, 160, 89, 0.35);
  display: none;
  grid-template-columns: repeat(3, 1fr);
  padding: 0.35rem 0.5rem;
  gap: 0.4rem;
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.3);
}

.mobile-bar-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.38rem 0.25rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.mobile-bar-call {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-bar-call i {
  font-size: 0.95rem;
  color: var(--accent-gold);
}

.mobile-bar-whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.mobile-bar-whatsapp i {
  font-size: 0.95rem;
}

.mobile-bar-enquire {
  background: linear-gradient(135deg, #c5a059 0%, #8c6d3f 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.35);
}

.mobile-bar-enquire i {
  font-size: 0.95rem;
}

.mobile-bar-btn:active {
  transform: scale(0.96);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (TABLET & MOBILE VERSION)
   ========================================================================== */

/* Large Tablets & iPad Pro (<= 1024px) */
@media (max-width: 1024px) {
  .nav-menu,
  .header-schedule-btn {
    display: none;
  }

  .header-call-btn {
    display: inline-flex;
    padding: 0.35rem 0.65rem;
    font-size: 0.76rem;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .container,
  .container-wide {
    padding: 0 1.25rem;
  }

  .hero {
    padding-top: 6.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-content-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 3.8vw, 2.5rem);
  }

  .hero-form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .overview-grid,
  .plan-content-card,
  .location-grid,
  .developer-card,
  .well-certified-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .highlights-grid,
  .specs-grid,
  .price-grid,
  .amenities-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

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

/* Medium Tablets & Mobile Devices (<= 768px) */
@media (max-width: 768px) {
  .overview-section,
  .collab-section,
  .wellness-assurance-section,
  .well-certified-section,
  .highlights-section,
  .plans-section,
  .price-section,
  .amenities-section,
  .gallery-section,
  .location-section,
  .specs-section,
  .developer-section,
  .faq-section {
    padding: 1.5rem 0;
  }
  body {
    padding-bottom: 48px;
  }

  .mobile-bottom-bar {
    display: grid;
  }

  .floating-actions {
    display: none !important;
  }

  .hero {
    padding-top: 5.5rem;
    padding-bottom: 2.5rem;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(1.5rem, 5vw, 1.95rem);
    line-height: 1.25;
  }

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

  .hero-features-list {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.45rem 0.55rem;
  }

  .hero-feature-item {
    font-size: 0.78rem;
    padding: 0.35rem 0.7rem;
    white-space: nowrap;
  }

  .hero-glass-form {
    display: none !important;
  }

  .hero-mobile-cta {
    display: block;
    margin-top: 1.25rem;
    width: 100%;
  }

  .section-title {
    font-size: clamp(1.65rem, 5vw, 2.2rem);
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .stats-strip {
    margin-top: 1rem;
    padding-bottom: 1.5rem;
  }

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

  .stat-card {
    padding: 0.7rem 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: var(--radius-md);
    box-shadow: 0 6px 16px -4px rgba(15, 23, 42, 0.05);
    transition: transform 0.3s ease;
  }

  .stat-card:active {
    transform: translateY(-2px);
  }

  .stat-number {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.1rem;
  }

  .stat-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.2px;
    line-height: 1.25;
  }

  .overview-glass-floating {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    bottom: auto;
    padding: 0.5rem 0.75rem;
    max-width: 170px;
    border-radius: var(--radius-md);
  }

  .floating-number {
    font-size: 1.1rem;
    line-height: 1;
  }

  .floating-text {
    font-size: 0.68rem;
    margin-top: 0.1rem;
    line-height: 1.25;
  }

  .overview-specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
    margin-top: 0.85rem;
  }

  .spec-item {
    gap: 0.4rem;
  }

  .spec-icon-box {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
    border-radius: 6px;
  }

  .spec-info-title {
    font-size: 0.75rem;
    line-height: 1.2;
  }

  .spec-info-sub {
    font-size: 0.66rem;
  }

  .collab-grid {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    white-space: normal;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }

  .collab-grid::-webkit-scrollbar {
    display: none;
  }

  .collab-card {
    flex: 0 0 82%;
    max-width: 285px;
    scroll-snap-align: start;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-self: stretch;
    height: auto;
  }

  .collab-designer-tag {
    font-size: 0.68rem;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
  }

  .collab-name {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
  }

  .collab-desc {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  /* Wellness & WELL Certified Sections on Mobile */
  .wellness-dual-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .well-feature-list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .seepage-assurance-card {
    padding: 1rem 0.85rem;
    border-radius: var(--radius-lg);
    text-align: center;
  }

  .seepage-assurance-card .badge-tag {
    margin-bottom: 0.35rem !important;
    font-size: 0.72rem;
    padding: 0.25rem 0.6rem;
  }

  .seepage-number {
    font-size: 2rem;
    margin-bottom: 0.15rem;
  }

  .seepage-assurance-card h3 {
    font-size: 1.1rem !important;
    margin-bottom: 0.35rem !important;
  }

  .seepage-assurance-card p {
    font-size: 0.78rem !important;
    line-height: 1.35 !important;
  }

  .well-cards-grid {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    white-space: normal;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }

  .well-cards-grid::-webkit-scrollbar {
    display: none;
  }

  .well-feature-card {
    flex: 0 0 78%;
    max-width: 260px;
    scroll-snap-align: start;
    padding: 1rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-self: stretch;
    height: auto;
  }

  .well-icon-box {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    margin-bottom: 0.45rem;
  }

  .well-card-title {
    font-size: 0.88rem;
    margin-bottom: 0.25rem;
  }

  .well-card-desc {
    font-size: 0.76rem;
    line-height: 1.4;
  }

  .well-quote-box {
    padding: 1.1rem 1rem;
    margin-top: 1.5rem;
    border-radius: var(--radius-lg);
  }

  .well-quote-text {
    font-size: 0.98rem;
  }

  /* Key Highlights Section on Mobile */
  .highlights-bento-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.25rem;
  }

  .highlight-bento-card.bento-featured {
    width: 100%;
    padding: 1.1rem 1rem;
    border-radius: var(--radius-lg);
  }

  .highlight-bento-card.bento-featured .highlight-title {
    font-size: 1.05rem;
    line-height: 1.25;
    margin-bottom: 0.35rem;
  }

  .highlight-bento-card.bento-featured .highlight-desc {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .sub-highlights-wrap {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    white-space: normal;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }

  .sub-highlights-wrap::-webkit-scrollbar {
    display: none;
  }

  .sub-highlights-wrap .highlight-bento-card {
    flex: 0 0 78%;
    max-width: 255px;
    scroll-snap-align: start;
    padding: 0.9rem 0.85rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
    height: auto;
  }

  .highlight-top-row {
    margin-bottom: 0.45rem;
  }

  .highlight-icon-wrap {
    width: 30px;
    height: 30px;
    font-size: 0.95rem;
    border-radius: 8px;
  }

  .highlight-number-tag {
    font-size: 1.2rem;
  }

  .highlight-title {
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    line-height: 1.25;
  }

  .highlight-desc {
    font-size: 0.72rem;
    line-height: 1.35;
    color: var(--text-secondary);
  }

  /* Floor Plans Section on Mobile */
  .plans-section {
    padding: 2.5rem 0;
  }

  .plan-tabs {
    display: flex;
    gap: 0.4rem;
    width: 100%;
    margin-bottom: 1rem;
  }

  .tab-btn {
    flex: 1;
    padding: 0.55rem 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    border-radius: var(--radius-full);
    white-space: nowrap;
  }

  .plan-content-card {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    padding: 1.1rem 1rem;
    border-radius: var(--radius-lg);
  }

  .plan-preview-box {
    padding: 0.65rem;
    border-radius: var(--radius-md);
  }

  .plan-img-placeholder {
    height: 180px;
    padding: 0.75rem;
    gap: 0.35rem;
  }

  .plan-img-placeholder .btn {
    margin-top: 0.1rem;
    margin-bottom: 0.5rem;
    transform: translateY(-8px);
  }

  .plan-img-placeholder i {
    font-size: 1.8rem;
  }

  .plan-type-title {
    font-size: 1.1rem;
  }

  .plan-size-tag {
    font-size: 0.85rem;
  }

  .plan-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
    margin-top: 0.75rem;
  }

  .plan-feat-item {
    font-size: 0.72rem;
    gap: 0.35rem;
  }

  .plan-feat-item i {
    font-size: 0.9rem;
  }

  .plan-details-info .btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .location-grid {
    gap: 1.25rem;
    margin-top: 1.25rem;
  }

  .location-map-card {
    min-height: 220px;
    height: 220px;
    border-radius: var(--radius-lg);
  }

  .location-points-list {
    gap: 0.5rem;
  }

  .loc-point-item {
    padding: 0.6rem 0.75rem;
    gap: 0.6rem;
    border-radius: var(--radius-md);
  }

  .loc-icon-badge {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
    border-radius: 8px;
  }

  .loc-title {
    font-size: 0.83rem;
    line-height: 1.25;
  }

  .loc-desc {
    font-size: 0.72rem;
  }

  .loc-time-badge {
    font-size: 0.72rem;
    padding: 0.2rem 0.55rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .developer-card {
    padding: 1.25rem 1rem;
    gap: 1.25rem;
    text-align: center;
  }

  .dev-brand-box {
    align-items: center;
    gap: 0.5rem;
  }

  .dev-logo {
    max-width: 110px;
    margin: 0 auto;
  }

  .dev-heading {
    font-size: 1.15rem;
    text-align: center;
  }

  .dev-description {
    font-size: 0.8rem;
    line-height: 1.45;
    text-align: center;
  }

  .dev-stats-row {
    gap: 0.5rem;
  }

  .dev-stat-box {
    padding: 0.65rem 0.35rem;
    border: 1px solid rgba(197, 160, 89, 0.25);
  }

  .dev-stat-num {
    font-size: 0.95rem;
  }

  .dev-stat-txt {
    font-size: 0.68rem;
    line-height: 1.2;
    margin-top: 0.15rem;
  }

  .faq-section {
    padding: 1.75rem 0;
  }

  .faq-wrapper {
    margin-top: 0.85rem;
    gap: 0.45rem;
  }

  .faq-item {
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius-md);
  }

  .faq-question {
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .faq-answer {
    font-size: 0.76rem;
    line-height: 1.38;
  }

  .faq-item.active .faq-answer {
    padding-top: 0.3rem;
  }

  .price-grid,
  .amenities-grid,
  .gallery-grid,
  .specs-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 0.5rem 0.25rem 1rem 0.25rem;
    margin-top: 1.5rem;
    scrollbar-width: none;
  }

  .price-grid::-webkit-scrollbar,
  .amenities-grid::-webkit-scrollbar,
  .gallery-grid::-webkit-scrollbar,
  .specs-grid::-webkit-scrollbar {
    display: none;
  }

  .price-grid .price-card {
    flex: 0 0 85%;
    max-width: 320px;
    scroll-snap-align: center;
  }

  .amenities-grid .amenity-card {
    flex: 0 0 68%;
    max-width: 240px;
    padding: 0.85rem 0.75rem;
    scroll-snap-align: center;
  }

  .amenities-grid .amenity-icon {
    width: 36px;
    height: 36px;
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
    border-radius: 8px;
  }

  .amenities-grid .amenity-name {
    font-size: 0.88rem;
    margin-bottom: 0.2rem;
  }

  .amenities-grid .amenity-desc {
    font-size: 0.75rem;
    line-height: 1.35;
  }

  .specs-grid .spec-card {
    flex: 0 0 80%;
    max-width: 290px;
    scroll-snap-align: center;
    padding: 1rem 1.1rem;
  }

  .specs-grid .spec-card-header {
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    border-bottom: 1px dashed rgba(197, 160, 89, 0.3);
    padding-bottom: 0.5rem;
  }

  .specs-grid .spec-header-icon {
    font-size: 1.05rem;
    background: rgba(197, 160, 89, 0.12);
    color: var(--accent-gold);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .specs-grid .spec-header-title {
    font-size: 0.95rem;
    font-weight: 700;
  }

  .specs-grid .spec-details-list li {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .gallery-grid .gallery-item {
    flex: 0 0 80%;
    max-width: 300px;
    height: 220px;
    scroll-snap-align: center;
  }

  .gallery-grid .gallery-overlay {
    opacity: 1;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .form-input,
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  select,
  textarea {
    font-size: 16px !important;
  }

  .modal-card {
    max-width: 92%;
    padding: 1.25rem;
    position: relative;
    overflow: visible;
  }

  .modal-close-btn {
    top: -14px;
    right: -10px;
    width: 34px;
    height: 34px;
    background: #0f172a;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    color: #ffffff;
    font-size: 1.25rem;
    z-index: 100;
  }

  .toast-msg {
    top: 1rem;
    left: 1rem;
    right: 1rem;
    width: auto;
    max-width: none;
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
    line-height: 1.35;
    border-radius: var(--radius-md);
    transform: translateY(-150%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 4000;
  }

  .toast-msg.show {
    transform: translateY(0);
  }

  .lightbox-img {
    max-height: 70vh;
  }

  .lightbox-btn {
    top: 48%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .lightbox-prev {
    left: 0.75rem;
  }

  .lightbox-next {
    right: 0.75rem;
  }
}

/* Small Mobile Phones (<= 480px) */
@media (max-width: 480px) {
  .header-call-btn {
    padding: 0.3rem 0.55rem;
    font-size: 0.72rem;
  }

  .container,
  .container-wide {
    padding: 0 1rem;
  }

  .hero-rera-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
  }

  .hero-title {
    font-size: 1.45rem;
  }

  .badge-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
  }

  .modal-card {
    padding: 1.1rem;
  }
}

@keyframes heroTitleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes goldShimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
