/* ==========================================================================
   BIIGTECH GREATER NOIDA — ULTRA-LUXURY COMMERCIAL LANDING PAGE
   Authentic Design System Matching index-2.html & ATS Kabana Design
   ========================================================================== */

:root {
  --primary-teal: #0b4d68;
  --primary-teal-dark: #073549;
  --primary-teal-light: #126385;
  
  --gold: #c59a3f;
  --gold-light: #dfb75f;
  --gold-dark: #9e7522;
  --gold-line: rgba(197, 154, 63, 0.45);
  --gold-soft: rgba(197, 154, 63, 0.12);
  
  --arrow-circle-bg: #f8dbbe;
  --arrow-circle-color: #1a2228;
  
  --bg-cream: #f6f3ee;
  --bg-cream-alt: #eeeae2;
  --bg-white: #ffffff;
  --bg-hero: #0b1c34;
  
  --text-heading: #0b4d68;
  --text-dark: #1e262f;
  --text-body: #4a5563;
  --text-muted: #6b7787;
  
  --border-light: #e4ded4;
  --border-card: rgba(0, 0, 0, 0.08);
  
  --font-serif: 'Cormorant Garamond', 'Fraunces', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --shadow-sm: 0 4px 16px rgba(11, 77, 104, 0.06);
  --shadow-md: 0 10px 30px rgba(11, 77, 104, 0.10);
  --shadow-lg: 0 20px 50px rgba(11, 77, 104, 0.16);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

ul {
  list-style: none;
}

button, input, textarea {
  font-family: inherit;
}

/* ---------- Layout Containers ---------- */
.container {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.p-100 {
  padding: 90px 0;
}

.p-80 {
  padding: 70px 0;
}

.background-view {
  background-color: var(--bg-cream);
}

.bg-white {
  background-color: var(--bg-white);
}

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

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

[class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  width: 100%;
}

.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-md-3 { flex: 0 0 100%; max-width: 100%; }
.col-md-4 { flex: 0 0 100%; max-width: 100%; }
.col-md-5 { flex: 0 0 100%; max-width: 100%; }
.col-md-6 { flex: 0 0 100%; max-width: 100%; }
.col-md-7 { flex: 0 0 100%; max-width: 100%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }

@media (min-width: 768px) {
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
  .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
}

/* Visibility */
.mobile-view { display: none !important; }
.desk-view { display: block !important; }

@media (max-width: 768px) {
  .mobile-view { display: block !important; }
  .desk-view { display: none !important; }
  .p-100 { padding: 50px 0; }
  .p-80 { padding: 40px 0; }
  .container { padding-left: 18px; padding-right: 18px; }
}

/* ---------- Typography & Section Headings ---------- */
.section-heading {
  text-align: center;
  margin-bottom: 45px;
}

.section-heading h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 46px);
  color: var(--text-heading);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  line-height: 1.2;
}

.section-heading h5 {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.8vw, 22px);
  color: var(--text-dark);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  font-size: 14.5px;
}

/* Signature "Know More ↗" Button as seen in screenshots */
.query-btn-new,
.know-more-wrap {
  margin-top: 26px;
}

.btn-know-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.btn-know-more .km-text {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  border-bottom: 1.5px solid var(--text-dark);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.btn-know-more .km-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--arrow-circle-bg);
  color: var(--arrow-circle-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.btn-know-more:hover .km-text {
  color: var(--primary-teal);
  border-color: var(--primary-teal);
}

.btn-know-more:hover .km-circle {
  transform: scale(1.1) translate(2px, -2px);
  background: #f7cb9b;
}

/* ==========================================================================
   HEADER & NAVBAR (Matches Screenshot 1 & 5)
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(246, 243, 238, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
}

.navbar {
  padding: 14px 0;
}

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

/* Logos */
.header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-text {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

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

.brand-badge {
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-teal);
  background: rgba(11, 77, 104, 0.08);
  padding: 3px 8px;
  border-radius: 2px;
}

/* Header Action buttons */
.menu-section {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Phone Round Icon Button */
.navbar-call-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-teal);
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 3px 10px rgba(11, 77, 104, 0.25);
  flex-shrink: 0;
}

.navbar-call-btn:hover {
  background: var(--primary-teal-dark);
  transform: scale(1.06);
}

.navbar-call-btn svg {
  width: 17px;
  height: 17px;
}

/* "Query Now" Sleek Button */
.navbar-query-btn {
  height: 40px;
  padding: 0 22px;
  background: #ffffff;
  color: var(--text-dark) !important;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid #ccd2d9;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.navbar-query-btn:hover {
  border-color: var(--primary-teal);
  color: var(--primary-teal) !important;
  box-shadow: 0 3px 12px rgba(11, 77, 104, 0.08);
}

/* Hamburger Icon */
.mobile-trigger {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
}

.mobile-trigger-in {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.mobile-trigger-in span.bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-dark);
  border-radius: 1px;
  transition: background 0.2s ease;
}

.mobile-trigger:hover span.bar {
  background: var(--primary-teal);
}

/* Slide-out Sidebar Menu */
.side-drawer-menu {
  position: fixed;
  top: 0;
  right: -340px;
  width: 310px;
  height: 100vh;
  background: #ffffff;
  z-index: 1050;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.14);
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  padding: 35px 24px;
}

.side-drawer-menu.active {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(14, 24, 38, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.closemenu {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--text-dark);
}

.closemenu:hover {
  background: var(--primary-teal);
  color: #fff;
}

.menu_logo {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.asidebar {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.asidebar li a {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  border-radius: 3px;
  transition: all 0.2s ease;
}

.asidebar li a:hover {
  color: var(--primary-teal);
  background: rgba(11, 77, 104, 0.06);
  padding-left: 18px;
}

/* ==========================================================================
   HERO BANNER SECTION (Exact Match to Screenshot 1)
   ========================================================================== */
.banner-section {
  position: relative;
  background: #0d1e38;
  overflow: hidden;
}

.banner-container {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
}

/* Background Image */
.banner-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.85;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(13, 30, 56, 0.2) 0%, rgba(13, 30, 56, 0.75) 100%),
              linear-gradient(180deg, rgba(13, 30, 56, 0.4) 0%, rgba(13, 30, 56, 0.85) 100%);
}

.banner-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 60px 0 80px 0;
}

.banner-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 30px;
}

/* Left Hero Typography */
.banner-left-copy {
  color: #ffffff;
}

.banner-left-copy h1.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 16px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.banner-left-copy p.hero-sub {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 340px;
}

/* Center Building Focal Area */
.banner-center-focus {
  position: relative;
  text-align: center;
}

.banner-center-focus img.center-tower {
  max-height: 520px;
  margin: 0 auto;
  border: 2px solid rgba(212, 175, 55, 0.6);
  border-radius: 4px;
  box-shadow: 0 0 40px rgba(197, 154, 63, 0.35);
  object-fit: cover;
}

/* Right Hero Badges with Gold Leader Lines */
.banner-right-details {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.banner-right-header {
  text-align: right;
  margin-bottom: 6px;
}

.banner-right-logo {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
}
.banner-right-logo span {
  color: var(--gold-light);
}

.banner-right-sub {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Indicator items with golden leader lines */
.banner-indicator-item {
  position: relative;
  padding-left: 70px;
}

.banner-leader-line {
  position: absolute;
  left: 0;
  top: 14px;
  width: 55px;
  height: 1px;
  background: var(--gold);
}

.banner-leader-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2.5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.banner-pill-badge {
  display: inline-block;
  padding: 5px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(11, 30, 56, 0.45);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.banner-spec-val {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.banner-spec-note {
  font-size: 12px;
  color: var(--gold-light);
  font-family: var(--font-serif);
}

/* Bottom elements */
.banner-bottom-bar {
  position: absolute;
  bottom: 18px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11.5px;
}

.banner-powered-by {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Responsive Banner adjustments */
@media (max-width: 991px) {
  .banner-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .banner-left-copy p.hero-sub {
    margin: 0 auto;
  }
  .banner-center-focus img.center-tower {
    max-height: 380px;
  }
  .banner-right-header {
    text-align: center;
  }
  .banner-right-details {
    align-items: center;
  }
  .banner-indicator-item {
    padding-left: 0;
    text-align: center;
  }
  .banner-leader-line {
    display: none;
  }
}

/* ==========================================================================
   ABOUT PROJECT SECTION (Exact Match to Screenshot 2)
   ========================================================================== */
.about-project {
  background: var(--bg-cream);
  position: relative;
}

.about-project-copy {
  padding-right: 20px;
}

.about-project-copy p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 22px;
}

.about-project-images {
  position: relative;
  min-height: 420px;
}

.about-project-images .img-wide {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.about-project-images .img-tower-overlay {
  position: absolute;
  bottom: -40px;
  left: 8%;
  width: 48%;
  height: 280px;
  object-fit: cover;
  border: 6px solid #ffffff;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  z-index: 5;
}

@media (max-width: 768px) {
  .about-project-images {
    min-height: auto;
    margin-top: 30px;
  }
  .about-project-images .img-tower-overlay {
    position: static;
    width: 100%;
    height: 220px;
    margin-top: 16px;
    border: none;
  }
}

/* ==========================================================================
   AMENITIES SECTION (Refined Luxury Card Grid)
   ========================================================================== */
.amenities-section {
  background: var(--bg-cream);
  position: relative;
}

.amenities-section .section-heading h2 {
  color: var(--primary-teal);
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 46px);
  margin-bottom: 4px;
}

.amenities-section .section-heading h5 {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.8vw, 20px);
  color: var(--text-dark);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 12px;
}

.amenities-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 12px;
  margin-bottom: 24px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid rgba(11, 77, 104, 0.10);
  border-radius: 6px;
  padding: 12px 14px;
  box-shadow: 0 2px 8px rgba(11, 77, 104, 0.03);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.amenity-item:hover {
  background: #ffffff;
  border-color: var(--primary-teal);
  box-shadow: 0 6px 18px rgba(11, 77, 104, 0.08);
  transform: translateY(-2px);
}

.amenity-item.full-width {
  grid-column: 1 / -1;
}

.amenity-icon-circle {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: rgba(11, 77, 104, 0.07);
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.amenity-item:hover .amenity-icon-circle {
  background: var(--primary-teal);
  color: #ffffff;
}

.amenity-icon-circle svg {
  width: 20px;
  height: 20px;
}

.amenity-item p {
  font-family: var(--font-serif);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.25;
  margin: 0;
}

.amenity-featured-img {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  height: 100%;
}

.amenity-featured-img img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.amenity-featured-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(11, 77, 104, 0.88);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 4px;
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .amenities-icon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 8px;
    margin-bottom: 20px;
  }
  .amenity-item {
    padding: 10px 10px;
    gap: 10px;
  }
  .amenity-icon-circle {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }
  .amenity-icon-circle svg {
    width: 18px;
    height: 18px;
  }
  .amenity-item p {
    font-size: 13.5px;
    line-height: 1.25;
  }
  .amenity-featured-img {
    margin-top: 24px;
    min-height: 240px;
    max-height: 280px;
  }
  .amenity-featured-badge {
    padding: 8px 12px;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 4px;
  }
}

@media (max-width: 420px) {
  .amenities-icon-grid {
    gap: 8px 6px;
  }
  .amenity-item {
    padding: 8px 8px;
    gap: 8px;
  }
  .amenity-icon-circle {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }
  .amenity-icon-circle svg {
    width: 16px;
    height: 16px;
  }
  .amenity-item p {
    font-size: 12.5px;
    line-height: 1.2;
  }
}

/* ==========================================================================
   RETAIL SPACE / COMMERCIAL TABS (Exact Match to Screenshot 4)
   ========================================================================== */
.retail-space-section {
  background: var(--bg-cream);
}

/* Centered Tab Buttons */
.tab-pills-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 45px;
}

.tab-btn {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 3px;
  padding: 10px 36px;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.25s ease;
}

.tab-btn.active {
  background: var(--primary-teal);
  color: #ffffff;
  border-color: var(--primary-teal);
  box-shadow: 0 4px 15px rgba(11, 77, 104, 0.25);
}

.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.tab-copy p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.specs-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.spec-item .spec-svg {
  width: 32px;
  height: 32px;
  min-width: 32px;
  color: var(--text-dark);
}

.spec-item p {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.25;
}

.tab-visual-img {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.tab-visual-img img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

/* Specifications breakdown list inside tab */
.specifications-table {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 24px;
  box-shadow: var(--shadow-xs);
}

.spec-row {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}
.spec-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.spec-row b {
  display: block;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--primary-teal);
  margin-bottom: 2px;
}
.spec-row p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   FLOOR PLANS SECTION (Exact Match to Screenshot 5)
   ========================================================================== */
.floor-plans-section {
  background: var(--bg-cream);
}

.site-plan-wrapper {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.site-plan-wrapper img {
  max-height: 520px;
  margin: 0 auto;
}

.floor-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.floor-plan-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 16px;
  text-align: center;
  transition: all 0.25s ease;
  cursor: pointer;
}
.floor-plan-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-teal);
  box-shadow: var(--shadow-sm);
}
.floor-plan-card img {
  height: 140px;
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 12px;
}
.floor-plan-card h5 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}
.floor-plan-card span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-section {
  background: var(--bg-cream);
}

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

.gallery-card {
  position: relative;
  height: 240px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
}

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

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 77, 104, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  color: #ffffff;
  padding: 20px;
  text-align: center;
}

.gallery-overlay h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
}

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

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   LOCATION ADVANTAGES SECTION
   ========================================================================== */
.location-section {
  background: var(--bg-cream);
}

.location-desktop-view {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto;
  max-width: 1100px;
}

.location-map-center {
  width: 58%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.location-flank {
  width: 21%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-flank.left { padding-right: 20px; }
.location-flank.right { padding-left: 20px; }

.location-badge {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 3px;
  padding: 14px;
  box-shadow: var(--shadow-xs);
  transition: all 0.25s ease;
}
.location-badge:hover {
  transform: translateY(-2px);
  border-color: var(--primary-teal);
}

.loc-dist {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: 2px;
}

.loc-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
}

/* Mobile Location View */
.location-mobile-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 20px;
}

.location-mobile-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 3px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.location-mobile-card p {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
}

.location-mobile-card span {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-teal);
}

/* ==========================================================================
   ABOUT DEVELOPER / METRICS
   ========================================================================== */
.about-dev-section {
  background: var(--bg-cream);
}

.dev-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 35px;
}

.dev-stat-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s ease;
}

.dev-stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-teal);
}

.dev-stat-card h4 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: 4px;
}

.dev-stat-card p {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .dev-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

/* ==========================================================================
   CONTACT FORM / GET IN TOUCH (Matches Screenshot Style)
   ========================================================================== */
.contact-section {
  background: #102138;
  color: #ffffff;
}

.contact-left-content h1.heading-start {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 600;
  line-height: 1.1;
  color: #ffffff;
}

.contact-left-content h1.heading-end {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.contact-left-content p {
  font-size: 15px;
  color: #a3b8ce;
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: 24px;
}

.contact-phone-direct a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-family: var(--font-serif);
  color: #ffffff;
  font-weight: 600;
}
.contact-phone-direct svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

/* Form Card on Right */
.contact-form-card {
  background: #ffffff;
  padding: 34px 28px;
  border-radius: 4px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
  color: var(--text-dark);
}

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

.form-control {
  width: 100%;
  padding: 13px 16px;
  font-size: 13.5px;
  border: 1px solid #d5dce4;
  border-radius: 2px;
  background: #ffffff;
  color: var(--text-dark);
  transition: border-color 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 3px rgba(11, 77, 104, 0.12);
}

.form-control::placeholder {
  color: #8c9ba8;
  font-size: 12.5px;
  letter-spacing: 0.04em;
}

.field-error {
  display: none;
  font-size: 11.5px;
  color: #dc2626;
  margin-top: 4px;
  font-weight: 500;
}
.field-error.show {
  display: block;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
}

.form-check-input {
  margin-top: 3px;
  width: 15px;
  height: 15px;
  accent-color: var(--primary-teal);
  cursor: pointer;
  flex-shrink: 0;
}

.form-check-label {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.45;
}

.btn-form-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary-teal);
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(11, 77, 104, 0.35);
}
.btn-form-submit:hover {
  background: var(--primary-teal-dark);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contact-left-content {
    margin-bottom: 30px;
    text-align: center;
  }
  .contact-left-content p {
    margin: 0 auto 20px auto;
  }
  .contact-phone-direct {
    justify-content: center;
  }
  .contact-form-card {
    padding: 24px 18px;
  }
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer-section {
  background: #091321;
  color: #728498;
  padding: 45px 0 25px 0;
  font-size: 12.5px;
  line-height: 1.7;
}

.footer-contact-number {
  text-align: center;
  margin-bottom: 20px;
}

.footer-contact-number .ivr-number a {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-rera-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.footer-rera-box svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

.rera-text p {
  margin: 0;
  font-size: 12.5px;
  color: #cbd5e1;
}

.rera-text a {
  color: var(--gold-light);
  text-decoration: underline;
}

.disclaimer-text {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 22px auto;
  font-size: 11px;
  color: #556677;
  line-height: 1.6;
}

.copyright-text {
  text-align: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: #728498;
}

/* ==========================================================================
   FLOATING WHATSAPP & RESPONSIVE MOBILE BAR
   ========================================================================== */
.whatsapp-float-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
}

.whatsapp-float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease;
  color: #ffffff;
}
.whatsapp-float-btn:hover {
  transform: scale(1.1);
}
.whatsapp-float-btn svg {
  width: 30px;
  height: 30px;
}

/* Mobile Bottom Bar (Slim & Elegant) */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #ffffff;
  z-index: 1000;
  box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.12);
  border-top: 1px solid var(--border-light);
}

.mobile-bottom-inner {
  display: flex;
  height: 100%;
}

.mobile-bottom-bar a,
.mobile-bottom-bar button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  padding: 0 6px;
}

.mb-btn-call {
  background: #0b4d68;
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.mb-btn-query {
  background: #c59a3f;
  color: #ffffff;
}

.mb-btn-wa {
  background: #25d366;
  color: #ffffff;
}

@media (max-width: 768px) {
  .whatsapp-float-wrap { display: none !important; }
  .mobile-bottom-bar { display: block !important; }
  body { padding-bottom: 50px; }
}

/* ==========================================================================
   POPUP MODAL / LEAD ENQUIRY DIALOG
   ========================================================================== */
.popup-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 24, 38, 0.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.popup-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-modal-dialog {
  background: #ffffff;
  border-radius: 4px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform: translateY(15px) scale(0.97);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 4px solid var(--primary-teal);
}

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

.btn-close-modal {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  font-size: 18px;
  color: #555;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s ease;
}
.btn-close-modal:hover {
  background: var(--primary-teal);
  color: #fff;
}

.popup-modal-body {
  padding: 30px 26px;
}

.popup-project-logo {
  text-align: center;
  margin-bottom: 14px;
}

.popup-project-logo h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.popup-project-logo h3 span {
  color: var(--gold);
}

.popup-project-logo p {
  font-size: 12px;
  color: var(--text-muted);
}

.popup-deal-banner {
  background: var(--gold-soft);
  border: 1px dashed var(--gold-line);
  border-radius: 2px;
  padding: 8px 12px;
  text-align: center;
  margin-bottom: 18px;
}

.popup-deal-banner p {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold-dark);
  margin: 0;
}

.hp-field {
  display: none !important;
}

/* ==========================================================================
   LIGHTBOX MODAL FOR GALLERY
   ========================================================================== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 16, 26, 0.94);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 880px;
  max-height: 85vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 3px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  margin: 0 auto;
}

.lightbox-caption {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 16px;
  margin-top: 12px;
}

.lightbox-close {
  position: absolute;
  top: -38px;
  right: 0;
  font-size: 30px;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
}
