/* ==========================================================================
   SASTIK DEVELOPERS - PREMIUM PLOTTED DEVELOPMENTS
   Main Stylesheet: Modular Design System & Responsive Layout
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN SYSTEM & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Brand Color Palette */
  --primary-dark: #0f172a;       /* Deep Obsidian / Slate */
  --primary-navy: #1e293b;       /* Rich Navy */
  --primary-card: #182234;       /* Card Background in Dark Mode */
  --gold: #c59b27;               /* Regal Metallic Gold */
  --gold-light: #e5c486;         /* Soft Gold Highlight */
  --gold-dark: #a8811d;          /* Deep Gold Accent */
  --emerald: #059669;            /* Eco & Trust Emerald */
  --emerald-light: #10b981;      /* Light Emerald */
  --emerald-bg: #ecfdf5;         /* Subtle Emerald Tint */
  --cream: #f9f6f0;              /* Warm Ivory / Cream */
  --cream-dark: #ede6d9;         /* Border Warm Cream */
  --white: #ffffff;
  --bg-light: #fcfbf9;           /* Clean Page Background */
  --text-main: #1e242b;          /* High-contrast Charcoal Text */
  --text-muted: #64748b;         /* Secondary Slate Text */
  --text-light: #94a3b8;         /* Light Subtext */
  --border-light: #e2e8f0;       /* Crisp Border */

  /* Typography */
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;

  /* Shadows & Depth */
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, 0.12), 0 12px 15px -8px rgba(15, 23, 42, 0.06);
  --shadow-gold: 0 12px 30px rgba(197, 155, 39, 0.25);
  --shadow-float: 0 15px 35px rgba(0, 0, 0, 0.2);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE TYPOGRAPHY
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .serif {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-dark);
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  max-width: 100%;
  box-sizing: border-box;
}

select {
  text-overflow: ellipsis;
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* Section Header Utility */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
}

.section-header.left-aligned {
  text-align: left;
  margin: 0 0 35px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  padding: 6px 14px;
  background: rgba(197, 155, 39, 0.08);
  border-radius: var(--radius-full);
}

.section-tag.light {
  color: var(--gold-light);
  background: rgba(229, 196, 134, 0.12);
}

.section-title {
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.lead {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
}

section {
  padding: 95px 0;
  position: relative;
}

/* --------------------------------------------------------------------------
   3. BUTTONS & BADGES
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d4a938, var(--gold));
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

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

.btn-outline-dark {
  background: transparent;
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

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

.btn-emerald {
  background: linear-gradient(135deg, var(--emerald-light), var(--emerald));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.btn-emerald:hover {
  background: linear-gradient(135deg, #18c98e, var(--emerald));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-emerald {
  background: var(--emerald-bg);
  color: var(--emerald);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-gold {
  background: rgba(197, 155, 39, 0.1);
  color: var(--gold-dark);
  border: 1px solid rgba(197, 155, 39, 0.25);
}

.badge-gray {
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

/* --------------------------------------------------------------------------
   4. NAVIGATION BAR (RESPONSIVE & SINGLE-LINE GUARANTEED)
   -------------------------------------------------------------------------- */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 22px 0;
  color: var(--white);
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.nav.scrolled {
  position: fixed;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
  width: min(1380px, 94%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  flex-direction: column;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 5px;
  line-height: 1;
  color: var(--white);
  flex-shrink: 0;
  text-decoration: none;
}

.logo small {
  font-family: var(--font-body);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 4px;
  margin-top: 4px;
  color: var(--gold-light);
  display: block;
}

/* Nav Links - Single Line Guarantee */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.3vw, 22px);
  font-size: 13.5px;
  font-weight: 500;
  flex-wrap: nowrap;
}

.nav-links a {
  position: relative;
  white-space: nowrap !important;
  opacity: 0.92;
  padding: 6px 2px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
  border-radius: 1px;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  white-space: nowrap !important;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: rgba(229, 196, 134, 0.08);
  border: 1px solid rgba(229, 196, 134, 0.2);
  transition: var(--transition-fast);
}

.nav-phone:hover {
  background: rgba(229, 196, 134, 0.16);
  color: var(--white);
}

.nav-phone svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold-light);
}

/* Mobile Header Quick Controls */
.nav-mobile-ctrls {
  display: none;
  align-items: center;
  gap: 10px;
}

.nav-mobile-call {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(197, 155, 39, 0.15);
  border: 1px solid rgba(229, 196, 134, 0.35);
  color: var(--gold-light);
  transition: var(--transition-fast);
}

.nav-mobile-call:hover {
  background: rgba(197, 155, 39, 0.25);
}

.nav-mobile-call svg {
  width: 17px;
  height: 17px;
  stroke: var(--gold-light);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  cursor: pointer;
  padding: 0;
  transition: var(--transition-fast);
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(229, 196, 134, 0.4);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all 0.25s ease;
}

/* Mobile Slide-in Drawer */
/* Mobile Slide-in Drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 86vw);
  height: 100vh;
  background: #0f172a;
  padding: 24px 20px;
  z-index: 1000;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.7);
  overflow-y: auto;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu.open {
  display: flex;
  animation: drawerSlideIn 0.3s ease forwards;
}

@keyframes drawerSlideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999;
}

.mobile-menu-backdrop.open {
  display: block;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition-fast);
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--gold-light);
}

.mobile-menu-close svg {
  width: 20px;
  height: 20px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 18px 0;
}

.mobile-nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition-fast);
}

.mobile-nav-links a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-light);
  padding-left: 16px;
}

.mobile-menu-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--primary-dark);
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  padding-top: 80px;
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  contain: paint;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 7s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.75) 0%,
    rgba(15, 23, 42, 0.5) 50%,
    rgba(15, 23, 42, 0.85) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;
  color: var(--white);
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(229, 196, 134, 0.4);
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-content h1 span {
  background: linear-gradient(135deg, #ffffff, var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.9);
  max-width: 680px;
  margin: 0 auto 35px auto;
  line-height: 1.6;
}

.hero-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

/* Hero Key Highlights Strip */
.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
  padding: 18px 24px;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  text-align: left;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(197, 155, 39, 0.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hero-stat-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-light);
}

.hero-stat-text strong {
  display: block;
  font-size: 15px;
  color: var(--white);
  font-weight: 700;
}

.hero-stat-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

/* Hero Slide Indicators */
.hero-dots {
  position: absolute;
  z-index: 10;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 32px;
  height: 4px;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dots button.active {
  width: 48px;
  background: var(--gold);
}

/* --------------------------------------------------------------------------
   6. TRUST & LEGAL APPROVALS BANNER
   -------------------------------------------------------------------------- */
.trust-banner {
  background: var(--primary-dark);
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 10;
}

.trust-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 25px;
}

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

.trust-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  flex-shrink: 0;
}

.trust-item-text b {
  display: block;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.trust-item-text span {
  font-size: 12px;
  color: var(--text-light);
}

/* --------------------------------------------------------------------------
   7. ABOUT SECTION (INTRO)
   -------------------------------------------------------------------------- */
.about-section {
  background: var(--cream);
}

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

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

.about-img-main {
  width: 82%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.about-img-sub {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 270px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 10px solid var(--cream);
  box-shadow: var(--shadow-lg);
}

.about-badge-floating {
  position: absolute;
  top: 30px;
  right: 10%;
  background: var(--primary-dark);
  color: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold);
}

.about-badge-floating b {
  display: block;
  font-size: 26px;
  color: var(--gold-light);
  font-family: var(--font-serif);
  line-height: 1;
}

.about-badge-floating span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.about-copy p {
  color: #4b5563;
  font-size: 16px;
  margin-bottom: 18px;
}

.about-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-dark);
}

.about-checklist svg {
  width: 18px;
  height: 18px;
  stroke: var(--emerald);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   8. PLOT TYPES & CATEGORIES
   -------------------------------------------------------------------------- */
.plots-section {
  background: var(--white);
}

.plots-slider-container {
  position: relative;
  width: 100%;
}

.plots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.plots-slider-nav {
  display: none;
}

.plot-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.plot-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197, 155, 39, 0.4);
}

.plot-card-img-wrap {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.plot-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.plot-card:hover .plot-card-img-wrap img {
  transform: scale(1.08);
}

.plot-tag-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.plot-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.plot-card-body h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.plot-specs-list {
  display: flex;
  gap: 15px;
  margin: 14px 0 18px 0;
  padding: 12px 0;
  border-top: 1px dashed var(--border-light);
  border-bottom: 1px dashed var(--border-light);
}

.plot-spec-item {
  font-size: 13px;
  color: var(--text-muted);
}

.plot-spec-item strong {
  display: block;
  color: var(--primary-dark);
  font-size: 14px;
}

.plot-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
}

.plot-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-dark);
}

.plot-price small {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   9. INTERACTIVE MASTER PLAN / PLOT AVAILABILITY GRID
   -------------------------------------------------------------------------- */
.masterplan-section {
  background: #f8fafc;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.masterplan-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.filter-btn {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--primary-dark);
}

.filter-btn.active {
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
}

.plot-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 25px;
  font-size: 13px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-color {
  width: 14px;
  height: 14px;
  border-radius: 3px;
}

.legend-color.available { background: var(--emerald-light); }
.legend-color.fast-selling { background: var(--gold); }
/* Base Mobile Slider Containers (Desktop: default layout, dots hidden) */
.mobile-slider-wrap {
  width: 100%;
  position: relative;
}

.mobile-slider-dots {
  display: none;
}

.plot-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.plot-unit {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.plot-unit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.plot-unit.status-available {
  border-left: 4px solid var(--emerald-light);
}

.plot-unit.status-fast {
  border-left: 4px solid var(--gold);
}

.plot-unit.status-booked {
  border-left: 4px solid #94a3b8;
  opacity: 0.65;
  background: #f8fafc;
}

.plot-unit-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.plot-number {
  font-weight: 700;
  font-size: 16px;
  color: var(--primary-dark);
}

.plot-facing {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.plot-dimensions {
  font-size: 13px;
  color: var(--text-main);
  margin-bottom: 12px;
}

.plot-unit-action {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   AUTO-SLIDING LAYOUT SHOWCASE STYLES
   ========================================================================== */
.layout-slider-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(197, 155, 39, 0.35);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  margin-bottom: 50px;
  position: relative;
}

/* Progress Bar */
.layout-slider-progress-wrap {
  width: 100%;
  height: 4px;
  background: rgba(197, 155, 39, 0.15);
  position: relative;
  overflow: hidden;
}

.layout-slider-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.1s linear;
}

/* Top Status & Controls Bar */
.layout-slider-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  background: #fdfaf5;
  border-bottom: 1px solid var(--border-light);
}

.layout-slider-badge-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.layout-slider-live-text {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--primary-dark);
  text-transform: uppercase;
}

.layout-slider-ctrls-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.layout-slide-counter {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
  font-family: monospace, sans-serif;
  letter-spacing: 1px;
}

.layout-play-btn {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.layout-play-btn:hover {
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
}

.layout-play-btn svg {
  width: 13px;
  height: 13px;
}

/* Slides Container */
.layout-slides-container {
  position: relative;
  min-height: 420px;
}

.layout-slide {
  display: none;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: stretch;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.layout-slide.active {
  display: grid;
  opacity: 1;
}

.layout-slide-media {
  position: relative;
  background: #f8fafc;
  min-height: 400px;
  max-height: 460px;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border-light);
}

.layout-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  transition: transform 0.5s ease;
}

.layout-slide-media:hover img {
  transform: scale(1.04);
}

.layout-slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.layout-slide-media:hover .layout-slide-overlay {
  opacity: 1;
}

.zoom-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.zoom-pill svg {
  width: 16px;
  height: 16px;
}

.layout-slide-content {
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.layout-slide-content h3 {
  font-size: 23px;
  margin: 10px 0 12px;
  color: var(--primary-dark);
}

.layout-slide-desc {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.layout-slide-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Masterplan Zoning Grid */
.masterplan-zoning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 14px 0 20px 0;
}

.zoning-tag {
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  background: #f1f5f9;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
}

.zoning-tag::before {
  content: "•";
  color: var(--emerald);
  font-weight: bold;
}

/* Bottom Navigation Bar */
.layout-slider-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: #fdfaf5;
  border-top: 1px solid var(--border-light);
}

.layout-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-light);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.layout-nav-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.layout-nav-btn svg {
  width: 18px;
  height: 18px;
}

.layout-slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.layout-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.layout-slider-dot.active {
  width: 28px;
  border-radius: 6px;
  background: var(--gold);
}

.masterplan-unit-section-head {
  margin-top: 25px;
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Dual Map Tabs in Location Section */
.map-tabs-container {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.map-tab-btn {
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: var(--white);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.map-tab-btn.active {
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
}

.map-panel {
  display: none;
  height: 100%;
}

.map-panel.active {
  display: block;
}

.location-map-card {
  position: relative;
  background: #f8fafc;
  height: 100%;
  min-height: 440px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-map-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.4s ease;
}

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

.location-map-hint {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  pointer-events: none;
}
   -------------------------------------------------------------------------- */
.calculator-section {
  background: var(--cream);
}

.calc-card-wrapper {
  background: var(--white);
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  border: 1.5px solid rgba(197, 155, 39, 0.22);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: stretch;
  width: 100%;
  min-width: 0;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
  width: 100%;
}

.calc-inputs-header {
  margin-bottom: 6px;
}

.calc-badge-gold,
.contact-badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  background: rgba(197, 155, 39, 0.12);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(197, 155, 39, 0.25);
  margin-bottom: 8px;
}

.calc-inputs-header h3 {
  font-size: 22px;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.calc-inputs-header p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

.calc-field {
  display: flex;
  flex-direction: column;
  background: #fdfdfd;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 12px 14px;
}

.calc-field-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.calc-field-top label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

.calc-field-top label svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-dark);
  flex-shrink: 0;
}

.calc-field-top .val-display {
  background: #fef8eb;
  border: 1px solid rgba(197, 155, 39, 0.35);
  color: #92400e;
  font-size: 13.5px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  box-shadow: 0 1px 3px rgba(197, 155, 39, 0.08);
}

.calc-range {
  width: 100%;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
  accent-color: var(--gold);
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dfb347, #c59b27);
  border: 2.5px solid #ffffff;
  box-shadow: 0 2px 8px rgba(197, 155, 39, 0.5);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.calc-range::-webkit-slider-thumb:hover {
  transform: scale(1.18);
}

.calc-minmax {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #94a3b8;
  font-weight: 500;
  margin-top: 6px;
}

/* Calculator Result Panel */
.calc-results {
  background: linear-gradient(145deg, #0b1329 0%, #152238 60%, #1e2e4a 100%);
  border-radius: 18px;
  padding: 30px 24px;
  color: var(--white);
  box-shadow: 0 16px 36px rgba(11, 19, 41, 0.32);
  border: 1.5px solid rgba(197, 155, 39, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc-results-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 8px;
  flex-wrap: wrap;
}

.calc-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #22c55e;
  font-weight: 700;
}

.calc-bank-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(229, 196, 134, 0.15);
  padding: 3px 10px;
  border-radius: 12px;
  border: 1px solid rgba(229, 196, 134, 0.25);
}

.emi-amount-wrap {
  text-align: center;
  margin: 8px 0 18px;
}

.emi-amount-wrap .emi-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
  font-weight: 600;
}

.emi-value-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.emi-currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-light);
  font-family: var(--font-serif);
}

.emi-value {
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-serif);
  line-height: 1;
}

.emi-suffix {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  margin-left: 4px;
}

.calc-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0;
  border: none;
  padding: 0;
}

.breakdown-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 12px;
  text-align: left;
}

.breakdown-item .b-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breakdown-item .b-val {
  display: block;
  font-size: 15px;
  color: var(--gold-light);
  font-weight: 700;
}

.btn-whatsapp-calc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #25d366;
  color: #ffffff;
  padding: 13px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: var(--transition-fast);
}

.btn-whatsapp-calc:hover,
.btn-whatsapp-calc:active {
  background: #20ba5a;
  transform: translateY(-2px);
  color: #ffffff;
}

.calc-bank-notes {
  display: flex;
  justify-content: space-around;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 14px;
  gap: 8px;
  flex-wrap: wrap;
  text-align: center;
}

/* --------------------------------------------------------------------------
   11. AMENITIES & INFRASTRUCTURE SHOWCASE
   -------------------------------------------------------------------------- */
.amenities-section {
  background: var(--primary-dark);
  color: var(--white);
}

.amenities-section .section-title {
  color: var(--white);
}

.amenities-section .lead {
  color: #94a3b8;
}

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

.amenity-card {
  background: linear-gradient(145deg, #1c2536, #131c2a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  transition: var(--transition);
}

.amenity-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 155, 39, 0.5);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.amenity-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: rgba(197, 155, 39, 0.12);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.amenity-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold-light);
}

.amenity-card h4 {
  font-size: 19px;
  color: var(--white);
  margin-bottom: 10px;
}

.amenity-card p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   12. LOCATION & MAP SECTION
   -------------------------------------------------------------------------- */
.location-section {
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.location-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 25px;
}

.location-item {
  background: var(--cream);
  padding: 20px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.location-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-item b {
  display: block;
  font-size: 16px;
  color: var(--primary-dark);
  margin-bottom: 2px;
}

.location-item span {
  font-size: 13px;
  color: var(--text-muted);
}

.map-wrapper {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
}

/* --------------------------------------------------------------------------
   13. FILTERABLE GALLERY & LIGHTBOX
   -------------------------------------------------------------------------- */
.gallery-section {
  background: var(--bg-light);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

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

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-overlay span {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

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

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

/* --------------------------------------------------------------------------
   14. TESTIMONIALS SECTION
   -------------------------------------------------------------------------- */
.testimonials-section {
  background: var(--cream);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-style: italic;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 15px;
  border-top: 1px solid var(--border-light);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
}

.author-info strong {
  display: block;
  font-size: 15px;
  color: var(--primary-dark);
}

.author-info span {
  font-size: 12px;
  color: var(--text-muted);
}

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

.faq-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
  padding: 8px 0;
}

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

.faq-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary-dark);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.faq-answer-inner {
  padding: 12px 0 6px 0;
}

/* --------------------------------------------------------------------------
   16. CTA BANNER
   -------------------------------------------------------------------------- */
.cta-section {
  background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.88)),
    url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=2000&q=85")
      center/cover fixed;
  color: var(--white);
  text-align: center;
  padding: 100px 0;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(34px, 4.5vw, 54px);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 650px;
  margin: 0 auto 35px auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   17. CONTACT & ENQUIRY SECTION
   -------------------------------------------------------------------------- */
.contact-section {
  background: var(--cream);
}

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

.contact-card-wrapper,
.enquiry-card-wrapper {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  border: 1.5px solid rgba(197, 155, 39, 0.22);
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.contact-card-header,
.enquiry-form-header {
  margin-bottom: 22px;
}

.contact-card-header h3,
.enquiry-form-header h3 {
  font-size: 22px;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.contact-card-header p,
.enquiry-form-header p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.contact-channels-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.contact-channel-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: #f8fafc;
  border: 1.5px solid #edf2f7;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

.contact-channel-item:hover {
  border-color: var(--gold);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(197, 155, 39, 0.12);
  transform: translateY(-2px);
}

.contact-channel-item.static {
  background: #fdfdfd;
  cursor: default;
}
.contact-channel-item.static:hover {
  transform: none;
  box-shadow: none;
  border-color: #edf2f7;
}

.channel-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.channel-icon-wrap.phone {
  background: rgba(197, 155, 39, 0.15);
  color: var(--gold-dark);
}
.channel-icon-wrap.phone svg { stroke: var(--gold-dark); width: 22px; height: 22px; }

.channel-icon-wrap.whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}
.channel-icon-wrap.whatsapp svg { fill: #25d366; }

.channel-icon-wrap.email {
  background: rgba(30, 41, 59, 0.08);
  color: var(--primary-dark);
}
.channel-icon-wrap.email svg { stroke: var(--primary-dark); width: 22px; height: 22px; }

.channel-icon-wrap.location {
  background: rgba(225, 29, 72, 0.1);
  color: #e11d48;
}
.channel-icon-wrap.location svg { stroke: #e11d48; width: 22px; height: 22px; }

.channel-text {
  flex: 1;
  min-width: 0;
}

.channel-title {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.5px;
}

.channel-value {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}

.channel-sub {
  display: block;
  font-size: 11.5px;
  color: #94a3b8;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.channel-action-btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(197, 155, 39, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.channel-action-btn.chat {
  color: #15803d;
  background: rgba(34, 197, 94, 0.12);
}

.channel-action-btn.badge-only {
  color: #64748b;
  background: #e2e8f0;
}

.contact-channel-item:hover .channel-action-btn {
  background: var(--gold);
  color: #ffffff;
}
.contact-channel-item:hover .channel-action-btn.chat {
  background: #25d366;
  color: #ffffff;
}

/* Enquiry Form Styling */
.enquiry-form {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
}

.input-with-icon,
.select-with-icon {
  position: relative;
  width: 100%;
}

.input-with-icon svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  stroke: #94a3b8;
  pointer-events: none;
}

.input-with-icon input {
  padding-left: 42px !important;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: #fdfdfd;
  outline: none;
  font-size: 14px;
  transition: var(--transition-fast);
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.15);
}

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

.btn-submit-enquiry {
  width: 100%;
  margin-top: 14px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
}

.enquiry-trust-strip {
  display: flex;
  justify-content: space-around;
  gap: 8px;
  font-size: 11.5px;
  color: #64748b;
  margin-top: 14px;
  flex-wrap: wrap;
  text-align: center;
}

/* --------------------------------------------------------------------------
   18. FOOTER
   -------------------------------------------------------------------------- */
footer {
  background: #090e17;
  color: #94a3b8;
  padding: 60px 0 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  margin-bottom: 45px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h5 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-links a {
  font-size: 14px;
  color: #94a3b8;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* --------------------------------------------------------------------------
   19. FLOATING WIDGETS & MOBILE BOTTOM ACTION BAR
   -------------------------------------------------------------------------- */
/* Floating Desktop Quick Contact */
.float-desktop {
  position: fixed;
  z-index: 90;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  border-top-right-radius: var(--radius-sm);
  border-bottom-right-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-float);
}

.float-desktop a {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--white);
  transition: var(--transition-fast);
}

.float-desktop a:hover {
  width: 58px;
}

.float-desktop a svg {
  width: 22px;
  height: 22px;
}

.float-desktop .float-call { background: #059669; }
.float-desktop .float-wa { background: #25d366; }
.float-desktop .float-visit { background: var(--gold); }

/* Floating WhatsApp Round Button */
.whatsapp-float-btn {
  position: fixed;
  z-index: 90;
  right: 25px;
  bottom: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

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

.whatsapp-float-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Mobile Bottom Quick-Action Sticky Bar (Hidden on Desktop) */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--primary-dark);
  z-index: 95;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  padding: 8px 12px;
}

.mobile-bottom-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 8px;
}

.mobile-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
}

.mobile-bar-btn svg {
  width: 17px;
  height: 17px;
}

.mobile-bar-call { background: #334155; }
.mobile-bar-wa { background: #16a34a; }
.mobile-bar-visit { background: var(--gold); }

/* --------------------------------------------------------------------------
   20. MODALS & LIGHTBOX
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  display: grid;
  opacity: 1;
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  padding: 35px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .modal-content {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-close-btn:hover {
  color: var(--primary-dark);
}

/* Lightbox Modal */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 25px;
}

.lightbox-overlay.open {
  display: flex;
}

.lightbox-image-wrap {
  position: relative;
  max-width: 1000px;
  max-height: 85vh;
  text-align: center;
}

.lightbox-image-wrap img {
  max-height: 80vh;
  max-width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  margin: 0 auto;
}

.lightbox-caption {
  color: var(--white);
  font-size: 15px;
  margin-top: 15px;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 22px;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: var(--primary-dark);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(197, 155, 39, 0.3);
  animation: toastFadeIn 0.3s ease forwards;
}

@keyframes toastFadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.spin-icon {
  animation: spin 1s linear infinite;
  display: inline-block;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* --------------------------------------------------------------------------
   21. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
/* Large Tablet / Small Laptop */
@media (max-width: 1024px) {
  .plots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
}

/* Switch to Mobile Navigation at 1120px to Prevent Cramping/Wrapping */
@media (max-width: 1120px) {
  .nav-links,
  .nav-actions {
    display: none !important;
  }
  .nav-mobile-ctrls {
    display: flex !important;
  }
}

/* Tablet Screens (<=900px) */
@media (max-width: 900px) {
  .layout-slide {
    grid-template-columns: 1fr;
  }
  .layout-slide-media {
    min-height: 320px;
    max-height: 360px;
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }
  .layout-slide-content {
    padding: 26px 22px;
  }
  .about-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  .about-visual {
    min-height: 420px;
  }
  .about-img-main {
    width: 88%;
    height: 380px;
  }
  .about-img-sub {
    height: 220px;
    width: 52%;
  }
  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid .wide {
    grid-column: span 2;
  }
  .gallery-grid .tall {
    grid-row: span 1;
  }
}

/* Mobile Phones (<768px) */
@media (max-width: 767px) {
  .container {
    width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  section {
    padding: 60px 0;
  }
  .section-header {
    margin-bottom: 30px !important;
  }
  .section-title {
    font-size: clamp(23px, 5.5vw, 32px) !important;
    line-height: 1.25 !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }
  .lead {
    font-size: 14.5px !important;
    line-height: 1.6 !important;
  }
  .hero-slide {
    transform: none !important;
  }
  .hero {
    min-height: 85vh;
  }
  .hero-content {
    padding: 40px 0 30px;
    width: 100%;
  }
  .hero-content h1 {
    font-size: 32px;
  }
  /* Universal Mobile Swipeable Carousels & Auto-Sliders */
  .mobile-slider-wrap {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
    box-sizing: border-box !important;
  }

  .plot-grid-layout,
  .amenities-grid,
  .gallery-grid,
  .testimonials-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    gap: 14px !important;
    padding: 8px 4px 16px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .plot-grid-layout::-webkit-scrollbar,
  .amenities-grid::-webkit-scrollbar,
  .gallery-grid::-webkit-scrollbar,
  .testimonials-grid::-webkit-scrollbar {
    display: none !important;
  }

  /* Unit Availability Plot Cards in Slider */
  .plot-grid-layout > .plot-unit {
    flex: 0 0 82% !important;
    max-width: 82% !important;
    min-width: 230px !important;
    scroll-snap-align: center !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  /* Amenities Cards in Slider */
  .amenities-grid > .amenity-card {
    flex: 0 0 80% !important;
    max-width: 80% !important;
    min-width: 230px !important;
    scroll-snap-align: center !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  /* Gallery Items in Slider */
  .gallery-grid > .gallery-item {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    min-width: 240px !important;
    height: 250px !important;
    scroll-snap-align: center !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    position: relative !important;
  }
  .gallery-grid > .gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: var(--radius-md) !important;
  }

  /* Testimonials in Slider */
  .testimonials-grid > .testimonial-card {
    flex: 0 0 88% !important;
    max-width: 88% !important;
    min-width: 240px !important;
    scroll-snap-align: center !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  /* Universal Mobile Slider Dot Indicators */
  .mobile-slider-dots {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 14px 0 10px 0 !important;
    width: 100% !important;
  }

  .mobile-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
  }

  .mobile-slider-dot.active {
    width: 26px;
    border-radius: 6px;
    background: var(--gold);
  }

  /* Mobile Swipeable Projects Slider */
  .plots-slider-container {
    width: 100%;
    overflow: hidden;
  }
  .plots-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    gap: 16px !important;
    padding: 8px 4px 16px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }
  .plots-grid::-webkit-scrollbar {
    display: none !important;
  }
  .plot-card {
    flex: 0 0 88% !important;
    max-width: 88% !important;
    min-width: 270px !important;
    scroll-snap-align: center !important;
    margin: 0 !important;
  }
  .plots-slider-nav {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 14px;
  }
  .plots-slider-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border-light);
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition-fast);
  }
  .plots-slider-btn:hover,
  .plots-slider-btn:active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
  }
  .plots-slider-btn svg {
    width: 18px;
    height: 18px;
  }
  .plots-slider-dots {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .plots-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
  }
  .plots-slider-dot.active {
    width: 26px;
    border-radius: 6px;
    background: var(--gold);
  }

  /* Mobile Layout Auto-Slider */
  .layout-slider-topbar {
    padding: 10px 14px;
  }
  .layout-slider-live-text {
    font-size: 11.5px;
  }
  .layout-slide-media {
    min-height: 240px;
    max-height: 280px;
  }
  .zoom-pill {
    padding: 7px 14px;
    font-size: 11.5px;
  }
  .layout-slide-content {
    padding: 20px 16px;
  }
  .layout-slide-content h3 {
    font-size: 19px;
  }
  .layout-slide-desc {
    font-size: 13.5px;
  }
  .layout-slide-actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .layout-slide-actions .btn {
    width: 100%;
    text-align: center;
    padding: 10px 14px;
  }
  .layout-slider-nav {
    padding: 10px 14px;
  }
  .calc-card-wrapper,
  .contact-card-wrapper,
  .enquiry-card-wrapper {
    padding: 22px 16px !important;
    border-radius: 18px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
  }

  .calc-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 24px !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .calc-inputs {
    gap: 14px !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .calc-inputs-header {
    margin-bottom: 4px !important;
  }

  .calc-inputs-header h3 {
    font-size: 19px !important;
  }

  .calc-inputs-header p {
    font-size: 13px !important;
  }

  .calc-field {
    padding: 10px 12px !important;
    border-radius: 10px !important;
  }

  .calc-field-top label {
    font-size: 13px !important;
  }

  .calc-field-top .val-display {
    font-size: 12.5px !important;
    padding: 2px 10px !important;
  }

  .calc-minmax {
    font-size: 10px !important;
  }

  .calc-results {
    padding: 20px 14px !important;
    border-radius: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }

  .calc-results-topbar {
    margin-bottom: 12px !important;
  }

  .emi-amount-wrap {
    margin: 4px 0 14px !important;
  }

  .emi-amount-wrap .emi-label {
    font-size: 10.5px !important;
  }

  .emi-currency {
    font-size: 20px !important;
  }

  .emi-value {
    font-size: 32px !important;
  }

  .emi-suffix {
    font-size: 12px !important;
  }

  .calc-breakdown {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    margin: 12px 0 16px 0 !important;
    border: none !important;
    padding: 0 !important;
  }

  .breakdown-item {
    padding: 8px 10px !important;
    border-radius: 8px !important;
  }

  .breakdown-item .b-label {
    font-size: 10px !important;
  }

  .breakdown-item .b-val {
    font-size: 13.5px !important;
  }

  .btn-whatsapp-calc {
    padding: 12px 16px !important;
    font-size: 13.5px !important;
    border-radius: 10px !important;
  }

  .calc-bank-notes {
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px !important;
    text-align: center !important;
    font-size: 10.5px !important;
    margin-top: 10px !important;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 24px !important;
    width: 100% !important;
  }

  .contact-card-header,
  .enquiry-form-header {
    margin-bottom: 16px !important;
  }

  .contact-card-header h3,
  .enquiry-form-header h3 {
    font-size: 19px !important;
    margin-bottom: 4px !important;
  }

  .contact-card-header p,
  .enquiry-form-header p {
    font-size: 13px !important;
  }

  .contact-channels-list {
    gap: 10px !important;
    margin-top: 0 !important;
  }

  .contact-channel-item {
    padding: 12px 14px !important;
    border-radius: 14px !important;
    gap: 12px !important;
  }

  .channel-icon-wrap {
    width: 38px !important;
    height: 38px !important;
  }

  .channel-icon-wrap svg {
    width: 18px !important;
    height: 18px !important;
  }

  .channel-title {
    font-size: 10px !important;
  }

  .channel-value {
    font-size: 13.5px !important;
  }

  .channel-sub {
    font-size: 11px !important;
  }

  .enquiry-form {
    padding: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  .location-highlights-grid,
  .about-checklist {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .form-group label {
    font-size: 12.5px !important;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 11px 12px !important;
    font-size: 13.5px !important;
    border-radius: 10px !important;
  }

  .input-with-icon input {
    padding-left: 38px !important;
  }

  .input-with-icon svg {
    width: 16px !important;
    height: 16px !important;
    left: 12px !important;
  }

  .btn-submit-enquiry {
    padding: 13px 18px !important;
    font-size: 14px !important;
    border-radius: 10px !important;
    margin-top: 10px !important;
  }

  .enquiry-trust-strip {
    font-size: 11px !important;
    gap: 6px !important;
    margin-top: 12px !important;
  }

  .contact-info,
  .contact-card {
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .contact-card {
    padding: 16px 14px;
    gap: 12px;
  }
  .masterplan-zoning-grid {
    grid-template-columns: 1fr;
  }
  .location-map-card {
    min-height: 300px;
  }
  .map-wrapper,
  .map-wrapper iframe {
    min-height: 300px;
  }
  .float-desktop {
    display: none;
  }
  .whatsapp-float-btn {
    bottom: 75px;
    right: 18px;
    width: 52px;
    height: 52px;
  }
  .mobile-bottom-bar {
    display: block;
  }
  footer {
    padding-bottom: 90px; /* Space for sticky bar */
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* Small Mobile Screens (<480px) */
@media (max-width: 480px) {
  .nav {
    padding: 14px 0;
  }
  .nav.scrolled {
    padding: 10px 0;
  }
  .logo {
    font-size: 19px;
    letter-spacing: 3.5px;
  }
  .logo small {
    font-size: 7px;
    letter-spacing: 2.5px;
  }
  .nav-mobile-call {
    width: 34px;
    height: 34px;
  }
  .nav-mobile-call svg {
    width: 15px;
    height: 15px;
  }
  .menu-toggle {
    width: 38px;
    height: 38px;
  }
  .menu-toggle span {
    width: 18px;
  }
  .hero-badge {
    font-size: 11px;
    letter-spacing: 1px;
    padding: 6px 12px;
    line-height: 1.4;
    white-space: normal;
  }
  .hero-content h1 {
    font-size: 26px;
    line-height: 1.2;
  }
  .hero-sub {
    font-size: 15px !important;
  }
  .hero-btn-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-btn-group .btn {
    width: 100%;
    white-space: normal;
    padding: 12px 18px;
    font-size: 14px;
    text-align: center;
  }
  .map-tabs-container {
    flex-direction: column;
  }
  .map-tab-btn {
    width: 100%;
    text-align: center;
  }
  .about-visual {
    min-height: 340px;
  }
  .about-img-main {
    width: 95%;
    height: 300px;
  }
  .about-img-sub {
    width: 55%;
    height: 180px;
    border-width: 6px;
  }
  .about-badge-floating {
    padding: 10px 14px;
    top: 15px;
    right: 5%;
  }
  .about-badge-floating b {
    font-size: 20px;
  }
  .section-title {
    font-size: clamp(21px, 6vw, 26px) !important;
  }
  .calc-card-wrapper,
  .contact-card-wrapper,
  .enquiry-card-wrapper {
    padding: 18px 12px !important;
    border-radius: 14px !important;
  }
  .calc-results {
    padding: 18px 12px !important;
  }
  .calc-breakdown {
    gap: 6px !important;
  }
  .breakdown-item {
    padding: 7px 8px !important;
  }
  .breakdown-item .b-val {
    font-size: 12.5px !important;
  }
  .channel-action-btn {
    display: none !important;
  }
  .contact-channel-item {
    padding: 10px 12px !important;
  }
  .channel-value {
    font-size: 13px !important;
  }
}
