/* ==========================================================================
   FONT FACE DECLARATION - HELVETICA NEUE
   ========================================================================== */

/* Regular / Roman */
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeue-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Regular / Roman (400) */
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HELVETICA NEUE.TTF') format('truetype'),
       url('../fonts/HelveticaNeue-Roman.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Medium (500) */
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeue-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Bold (700) */
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HELVETICA NEUE BOLD.TTF') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-cream: #FAF5EB;
  --gold-primary: #C49B64;
  --gold-dark: #A4783B;
  --gold-light: #D4B279;
  --text-dark: #000;
  --text-muted: #7D7D7D;
  --price-red: #C5221F;
  --card-bg: #FFF8EA;
  --navy-mobile: #10162A;
  --white: #fff;
  --dots: #dddddd;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Helvetica Neue', Arial, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ==========================================================================
    2. Navbar Section
    ========================================================================== */
.navbar {
  background-color: #FFF3DB;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(192, 146, 82, 0.15);
}

.brand-logo {
 width: 120px;
}
.logo-desktop {
  display: block;
}
.logo-mobile {
  display: none;
}
.nav-actions{display: flex; gap: 40px;}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-links a.active, 
.nav-links a:hover {
  color: var(--gold-primary);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.phone-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 18px;
}

.mobile-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #fff;
  background: none;
  border: none;
}

/* Blurred Backdrop Mobile Menu */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 22, 42, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-links a {
  color: #FFF;
  font-size: 20px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
}

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

/* ==========================================================================
    3. Hero Banner Section
    ========================================================================== */
.hero-section {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: calc(100vh - 140px);
  position: relative;
}

/* Visual Side */
.hero-visual {
  position: relative;
  background-color: #0d1222;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Capsule Pins & Animation */
.capsule-pin {
  font-family: var(--font-body);
  position: absolute;
  background: rgba(192, 146, 82, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFF;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 400;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);

  /* Sequential Animation Initial State */
  opacity: 0;
  transform: translateY(15px);
  animation: capsuleFadeIn 0.8s forwards ease-out;
}

/* Absolute positions for desktop */
.pin-lakeside {
  left: 8%;
  top: 52%;
  animation-delay: 0.3s;
}

.pin-clubhouse {
  right: 12%;
  top: 30%;
  animation-delay: 0.8s;
}

.pin-corner {
  right: 16%;
  top: 50%;
  animation-delay: 1.3s;
}

@keyframes capsuleFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Content Side */
.hero-content {
  padding: 60px 8% 60px 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.dots-pattern {
  position: absolute;
  width: 200px;
  height: 95px;
  background-color: var(--dots);
  /* Hard-stop linear gradient: 4px dot in a 20px cell */
  -webkit-mask-image: 
    linear-gradient(to right, #000 10px, transparent 10px),
    linear-gradient(to bottom, #000 10px, transparent 10px);
  -webkit-mask-size: 20px 20px;
  -webkit-mask-composite: source-in;
  mask-image: 
    linear-gradient(to right, #000 10px, transparent 10px),
    linear-gradient(to bottom, #000 10px, transparent 10px);
  mask-size: 20px 20px;
  mask-composite: intersect;
  pointer-events: none;
  filter: blur(65px);
   /* animation: dotPulse 3s infinite ease-in-out alternate; */
}
.hero-top-dots{
  top: 0;
  left: 85%;
}
.hero-bottom-dots{
  bottom: 0;
  left: 0;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 54px;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
  position: relative;
  font-weight: 700;
}

.hero-title span {
  color: var(--gold-primary);
}

.hero-title::after {
  content: '';
  display: block;
  width: 120px;
  height: 2px;
  background-color: #c49a62;
  margin-top: 8px;
  animation: expandUnderline 0.8s ease-out forwards;
  animation-delay: 0.3s; /* Optional slight delay */
}

@keyframes expandUnderline {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}
.hero-subtitle {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 300;
}

.rera-tag {
  font-size: 12px;
  color: var(--text-dark);
  letter-spacing: 0;
  margin-bottom: 70px;
  border: 1px dotted #E7D5AF;
  padding: 10px 23px;
  font-weight: 400;
  width: 65%;
}

/* Pricing & Info Card */
.pricing-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 19px 24px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border: 1px solid rgba(196, 155, 100, 0.2);
  z-index: 1;
}

.starting-label {
  font-size: 11px;
  color: #000;
  margin-bottom: 8px;
}

.price-value {
  font-size: 50px;
  font-weight: 800;
  color: var(--price-red);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-blurred {
  filter: blur(10px);
  user-select: none;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 20px;
  margin-bottom: 24px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.spec-icon {
  font-size: 18px;
  color: var(--gold-primary);
}
.spec-item img{width: 28px; margin-bottom: 14px;}
.pricing-card .spec-label {
  font-size: 11px;
  color: #000;
  font-weight: 300;
  letter-spacing: 0;
  margin-bottom: 0;
}

.spec-val {
  font-size: 16px;
  font-weight: 500;
  color: var(--gold-dark);
}

.btn-get-price {
  font-family: var(--font-body);
  width: 100%;
  background-color: var(--gold-primary);
  color: #FFF;
  border: none;
  padding: 20px 0;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-get-price:hover {
  background-color: var(--gold-dark);
}

.mobile-banner{display: none;}
/* ==========================================
   MOBILE HERO SECTION STYLES (≤ 768px)
   ========================================== */
@media (max-width: 768px) {
  .hero-section {
    display: flex;
    flex-direction: column;
    /* background: linear-gradient(180deg, #0b1128 0%, #121938 50%, #1a234b 100%); */
    background: #FFFBF3;
    min-height: auto;
  }

  /* Flatten hero-content so its children can be reordered alongside hero-visual */
  .hero-content {
    display: contents;
    padding: 0;
  }

  /* Hide desktop background patterns */
  .dots-pattern,
  .dots-pattern-bottom {
    display: none;
  }

  /* 1. Title */
  .hero-title {
  display: none;
  }

  /* 2. Subtitle */
  .hero-subtitle {
    display: none;
  }

  /* 3. RERA Tag */
  .rera-tag {
    display: none;
  }

  /* 4. Building Visual & Overlaid Pins */
  .hero-visual {
    order: 4;
    position: relative;
    width: 100%;
    background: transparent;
    overflow: visible;
  }

  .mobile-banner {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: cover;
    display: block;
  }
  .hero-bg-img{display: none;}
  .capsule-pin {
    background: rgba(196, 155, 100, 0.85);
    border: none;
    font-size: 12px;
    padding: 7px 16px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  /* Position capsule pins relative to building in mobile view */
  .pin-corner {
    top: 54%;
    left: 22%;
    right: auto;
  }

  .pin-clubhouse {
    bottom: 25%;
    left: 5%;
    top: auto;
    right: auto;
  }

  .pin-lakeside {
    bottom: 20%;
    right: 15%;
    top: auto;
    left: auto;
  }

  /* 5. Floating Pricing Card */
  .pricing-card {
    order: 5;
    background-color: #fffdf5;
    border-radius: 8px;
    padding: 20px 18px 18px;
    position: relative;
    z-index: 10;
    border: 1px solid #f2e9dc;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    margin: -45px 20px 20px;
  }

  .starting-label {
    font-size: 16px;
    color: #333333;
    margin-bottom: 4px;
  }

  .price-value {
    font-size: 42px;
    font-weight: 800;
    color: #c93a2b; /* Red price styling from image */
    margin-bottom: 16px;
    gap: 4px;
  }

  .price-blurred {
    filter: blur(5px);
  }

  /* Hide icons in mobile grid view */
  .spec-item img {
    display: none;
  }

  /* Specs Grid: 2x2 layout with vertical border */
  .specs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
    padding-top: 0;
    margin-bottom: 20px;
  }

  .spec-item {
    gap: 2px;
  }

  .spec-item:nth-child(odd) {
    border-right: 1px solid #e5decf;
    padding-right: 12px;
  }

  .spec-label {
    font-size: 12px;
    color: #6b7280;
  }

  .spec-val {
    font-size: 19px;
    font-weight: 700;
    color: var(--gold-primary, #c49b64);
  }

  .btn-get-price {
    background-color: var(--gold-primary, #c49b64);
    padding: 14px 0;
    font-size: 17px;
    font-weight: 500;
    border-radius: 6px;
  }
}
/* ==========================================================================
    4. Stats Section
    ========================================================================== */
.stats-section {
  background-color: var(--gold-primary);
  color: #FFF;
  overflow: hidden;
}

/* Desktop View */
.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
}

.stat-item {
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  text-align: left;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item img {
  width: 30px;
}

.stat-text {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0;
}

/* ==========================================================================
    5. Mobile Responsive Adjustments (Max Width: 768px)
    ========================================================================== */
@media (max-width: 768px) {
  /* Navbar */
  .navbar {
     background: linear-gradient(180deg, #0b1128 0%, #121938 50%, #1a234b 100%);
    padding: 0 20px;
    border: none;
  }
  .logo-desktop {
    display: none;
  }
  .logo-mobile {
    display: block;
  }
  .logo-text .main {
    color: #FFF;
  }

  .nav-links, .phone-btn {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  /* Mobile Auto-Scrolling Ticker Setup */
  .stats-container {
    display: flex;
    width: max-content;
    animation: autoScroll 18s linear infinite;
  }

  /* Wrapper to hold scrolling track */
  .stats-ticker-wrapper {
    width: 100%;
    overflow: hidden;
  }

  .stats-ticker-wrapper:hover .stats-container {
    animation-play-state: paused;
  }

  .stat-item {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 16px 30px;
  }

  @keyframes autoScroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
}

/* ==========================================================================
      Overview Section  
========================================================================== */

.overview-section {
  background-color: #fcf9f2;
  position: relative;
  overflow: hidden;
  padding: 80px 8%;
}

.overview-container {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* ----------------------------------
   Image Column & Arch Styling
---------------------------------- */
.image-column {
  flex: 0 0 45%;
  position: relative;
  display: flex;
  justify-content: center;
}

.arch-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1.7; /* Stadium / Capsule ratio */
}

/* Clipped Image Container */
.arch-image-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 200px; /* Gives full stadium / pill shape */
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.arch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Offset Gold Line Outer Ring */
.gold-outline {
  position: absolute;
  inset: -12px;
  border: 1px solid #d4af37;
  border-radius: 240px;
  z-index: 3;
  pointer-events: none;
  margin-left: 40px;
}

/* ----------------------------------
   Text Content Column
---------------------------------- */
.content-column {
  flex: 1;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 25px;
  color: var(--text-dark);
  margin: 0 0 40px 0;
  font-weight: 700;
  position: relative;
}

.section-title .gold-text {
  color: #c49a62;
}

/* Accent Line below title */
.section-title::after {
  content: '';
  display: block;
  width: 0; /* Starts at 0px width */
  height: 2px;
  background-color: #c49a62;
  margin-top: 16px;
  /* Smooth expand transition when class is added */
  transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Class added by JavaScript when scrolled into view */
.section-title.is-visible::after {
  width: 80px;
}

.description {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 400;
}

/* Call To Action Button */
.btn-know-more {
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #BC8F54;
  color: #ffffff;
 padding: 14px 34px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-know-more:hover {
  background-color: #a37a43;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(190, 146, 86, 0.3);
}
.btn-know-more img{width: 17px;}
/* ----------------------------------
   Animated Dot Patterns
---------------------------------- */

/* Positioning */
.dots-top-left {
  top: 15%;
  left: 0;
}

.dots-bottom-right {
  bottom: 30px;
  right: 30px;
  animation-delay: 1.5s;
}

/* Mobile-only dots hidden on desktop */
.dots-mobile-top-right,
.dots-mobile-bottom-left {
  display: none;
}

/* Subtle breathing opacity & scale animation */
@keyframes dotPulse {
  0% {
    opacity: 0.35;
    transform: scale(0.96);
  }
  100% {
    opacity: 0.9;
    transform: scale(1.04);
  }
}

/* ----------------------------------
   Mobile Responsive Layout (≤ 768px)
---------------------------------- */
@media (max-width: 768px) {
  .overview-section {
    padding: 25px 20px;
  }

  .overview-container {
    flex-direction: column;
    gap: 30px;
  }

  /* Reorder: Text first, image second on mobile */
  .content-column {
    order: 1;
  }

  .image-column {
    order: 2;
    width: 100%;
    margin-top: 10px;
  }

  .section-title {
    font-size: 25px;
  }

  .description {
    font-size: 14px;
  }

  .btn-know-more {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .arch-frame {
    max-width: 95%;
  }

  /* Hide Desktop Dots */
  .dots-top-left,
  .dots-bottom-right {
    display: none;
  }

  /* Show and position Mobile Dots around the image */
  .dots-mobile-top-right {
    display: block;
    top: 20px;
    right: 10px;
  }

  .dots-mobile-bottom-left {
    display: block;
    top: 90%;
    left: 10px;
    animation-delay: 1.5s;
  }
}

/* ==========================================================================
      Amenities Section  
========================================================================== */
.amenities-section {
  background-color: #FAF3E5;
  padding: 80px 8%;
  overflow: hidden;
}

.amenities-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 70px;
}

/* ----------------------------------
   Left Column: Text Content
---------------------------------- */
.text-column {
  flex: 0 0 38%;
  position: relative;
}

/* Animated Underline */
.section-title::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background-color: #c49a62;
  margin-top: 16px;
  transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.section-title.is-visible::after {
  width: 80px;
}

/* Buttons */
.amenities-section .btn-know-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #be9256;
  color: #ffffff;
  padding: 14px 34px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 90px;
  font-family: var(--font-body);
}

.btn-know-more:hover {
  background-color: #a37a43;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(190, 146, 86, 0.25);
}

.desktop-btn {
  display: inline-flex;
}

.mobile-btn {
  display: none !important;
}

@keyframes dotPulse {
  0% {
    opacity: 0.3;
    transform: scale(0.95);
  }
  100% {
    opacity: 0.95;
    transform: scale(1.05);
  }
}
.amenities-dot{
    bottom: -25%;
    left: 50%;
    width: 100px;
    height: 130px;
}
/* ----------------------------------
   Right Column: Amenities Grid
---------------------------------- */
.grid-column {
  flex: 0 0 56%;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 24px;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.icon-wrapper {
  width: 86px;
  margin-bottom: 16px;
}

.icon-wrapper img {
  width: 100%;
  height: 100%;
}

.amenity-item h3 {
  font-size: 15px;
  line-height: 1.4;
  color: var(--text-dark);
  font-weight: 400;
  margin: 0;
}

/* Horizontal Line between Row 1 and Row 2 */
.grid-divider {
  grid-column: 1 / -1;
  height: 1px;
  background-color: #eae3d5;
  margin: 4px 0;
}

/* ----------------------------------
   Mobile Responsive Layout (≤ 768px)
---------------------------------- */
@media (max-width: 768px) {
  .amenities-section {
    padding: 25px 20px;
  }

  .amenities-container {
    flex-direction: column;
    gap: 36px;
  }

  .text-column,
  .grid-column {
    flex: 1 1 100%;
    width: 100%;
  }

  .description {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .desktop-btn {
    display: none !important;
  }

  .mobile-btn {
    display: flex !important;
    width: 100%;
    margin-top: 36px;
    box-sizing: border-box;
  }

  .dots-pattern {
    display: none; /* Hide background dot matrix on mobile view */
  }

  /* 2-Column Grid on Mobile */
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }
  .amenity-item {margin: 0 auto;}
  .grid-divider {
    display: none; /* Hide 3-column divider on 2-column layout */
  }
  .icon-wrapper {width: 70px; margin: 0 auto 10px;}
  .amenities-section .btn-know-more {margin-top: 40px;}
}
/* ==========================================================================
      Priject Highlight Section  
========================================================================== */
.project-highlights-section {
  background-color: #fcf9f2;
  padding: 80px 8%;
  position: relative;
  overflow: hidden;
}

.highlights-container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* ----------------------------------
   Text Column
---------------------------------- */
.highlights-content {
  flex: 0 0 52%;
}
.highlights-dots{
  bottom: 5%;
  right: 60%;
}
/* ----------------------------------
   Stats Row
---------------------------------- */
.mobile-stats-row{display: none;}
.stats-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 36px 0;
}

.project-highlights-section .stat-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0;
}

.stat-number {
  font-size: 40px;
  font-weight: 700;
  color: #917F5D;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14px;
  /* line-height: 1.3; */
  color: var(--text-muted);
  max-width: 90px;
}

.stat-divider {
  width: 1px;
  height: 38px;
  background-color: #e2d8c5;
}

/* ----------------------------------
   CTA Button
---------------------------------- */
.btn-view-projects {
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #be9256;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-view-projects:hover {
  background-color: #a37a43;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(190, 146, 86, 0.25);
}

/* ----------------------------------
   Image Column & Arch Shape
---------------------------------- */
.highlights-image-column {
  flex: 0 0 42%;
  position: relative;
  display: flex;
  justify-content: center;
}

.arch-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1.65;
}

.arch-image-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 200px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.arch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-highlights-section .gold-outline {
  position: absolute;
  inset: -10px;
  border: 1px solid #d4af37;
  border-radius: 210px;
  z-index: 3;
  pointer-events: none;
  margin-left: 40px;
}

/* ----------------------------------
   Dot Pattern & Animation
---------------------------------- */



/* ----------------------------------
   Mobile Layout (≤ 768px)
---------------------------------- */
@media (max-width: 768px) {
  .project-highlights-section {
    padding: 25px 20px;
  }

  .highlights-container {
    flex-direction: column;
    gap: 36px;
  }

  .highlights-content,
  .highlights-image-column {
    flex: 1 1 100%;
    width: 100%;
  }

  .description {
    font-size: 14px;
  }

  /* Hide stats row & button on mobile view */
  .stats-row,
  .btn-view-projects,
  .dots-pattern {
    display: none;
  }

  .arch-frame {
    max-width: 95%;
    margin: 0 auto;
  }
  .mobile-stats-row{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .mobile-stats-row .stat-item{padding: 10px;}
  .mobile-stats-row .stat-divider {
    width: 100%;
    height: 1px;
    background-color: #e2d8c5;
    margin-top: 20px;
  }
}

/* ==========================================================================
      Advantage Section  
========================================================================== */
.advantage-section {
  background-color: #FAF3E5;
  padding: 80px 8%;
  position: relative;
  overflow: hidden;
}

.advantage-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.info-block {
  flex: 1;
}
.why-block{
  align-content: end;
}
.why-block h2{ width: 50%;}
.section-title::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background-color: #c49a62;
  margin-top: 14px;
  transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.section-title.is-visible::after {
  width: 70px;
}
/* ----------------------------------
   Custom Diamond Lists
---------------------------------- */
.advantage-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.advantage-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.5;
  font-family: var(--card-bg);
}

.diamond-icon {
  width: 9px;
  height: 9px;
  background-color: #be9256;
  transform: rotate(45deg);
  flex-shrink: 0;
  display: inline-block;
}

/* ----------------------------------
   Center Stadium Image Column
---------------------------------- */
.image-block {
  flex: 0 0 380px;
  position: relative;
  display: flex;
  justify-content: center;
}

.arch-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1.65;
}

.arch-image-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 200px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.arch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ----------------------------------
   Animated Dot Matrix
---------------------------------- */

.dots-desktop-left {
  top: 70%;
  left: 12%;
}

.dots-desktop-right {
  top: 70px;
  right: 12%;
  animation-delay: 1.5s;
}

.dots-mobile-left,
.dots-mobile-right {
  display: none;
}


/* ----------------------------------
   Mobile Responsive Layout (≤ 768px)
---------------------------------- */
@media (max-width: 768px) {
  .advantage-section {
    padding: 25px 20px;
  }

  .advantage-container {
    flex-direction: column;
    gap: 40px;
  }

  /* Exact Mobile Sequence: Top Text -> Middle Text -> Bottom Image */
  .location-block {
    order: 1;
    width: 100%;
  }

  .why-block {
    order: 2;
    width: 100%;
  }
  .why-block h2{width: 100%;}
  .image-block {
    order: 3;
    width: 100%;
    margin-top: 10px;
  }

  .section-title {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .advantage-list li {
    font-size: 15px;
  }

  .arch-frame {
    max-width: 95%;
  }

  /* Hide Desktop Dots & Display Mobile Flanking Dots */
  .dots-desktop-left,
  .dots-desktop-right {
    display: none;
  }

  .dots-mobile-left {
    display: block;
    bottom: 20px;
    left: -15px;
    z-index: 1;
  }

  .dots-mobile-right {
    display: block;
    top: 30%;
    right: -15px;
    z-index: 1;
    animation-delay: 1.5s;
  }
}

/* ==========================================================================
      DSR Plan Section  
========================================================================== */
.dsr-plan-section {
  background-color: #fcf9f2;
  padding: 80px 8%;
  position: relative;
  overflow: hidden;
}

/* Header & Controls */
.plan-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 45px;
}


.tab-switcher {
  display: inline-flex;
  background-color: #000000;
  border-radius: 40px;
  gap: 4px;
}

.tab-btn {
  font-family: var(--font-body);
  background: transparent;
  color: #ffffff;
  border: none;
  padding: 18px 35px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.35s ease;
}

.tab-btn.active {
  background-color: #be9256;
  color: #ffffff;
}

/* Tab View Switcher Animation */
.tab-view {
  display: none;
  gap: 60px;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.tab-view.active-view {
  display: flex;
  opacity: 1;
}

.plan-content-wrapper {
  margin: 0 auto;
}

/* Plan Card & Frame */
.plan-image-card {
  flex: 0 0 60%;
  background-color: #f2ebd9;
  padding: 16px;
  border-radius: 20px;
  box-sizing: border-box;
}

.slider-viewport,
.image-frame {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-color: #ffffff;
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.masterplan-dots{
  bottom: 30%;
  right: 0;
}
/* Slider Components */
.slider-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  max-width: 100%;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background-color: #be9256;
  border-color: #be9256;
}

.prev-arrow { left: 14px; }
.next-arrow { right: 14px; }

.slide-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 500;
}

/* Thumbnails */
.thumbnail-strip {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: #be9256 #f2ebd9;
}

.thumb-item {
  flex: 0 0 64px;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.55;
  transition: all 0.3s ease;
}

.thumb-item.active,
.thumb-item:hover {
  opacity: 1;
  border-color: #be9256;
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floor Details Section */
.plan-text-content {
  flex: 0 0 40%;
  position: relative;
}

.highlights-title {
  font-family: var(--font-heading);
  font-size: 26px;
  color: #111111;
  font-weight: 700;
  margin: 0 0 20px 0;
  transition: color 0.3s ease;
}

.floor-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.spec-card {
  background-color: #f5eedc;
  padding: 12px 14px;
  border-radius: 8px;
  border-left: 3px solid #be9256;
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 11px;
  text-transform: uppercase;
  color: #777777;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.spec-value {
  font-size: 13.5px;
  color: #111111;
  font-weight: 600;
}


/* Mobile Responsive */
@media (max-width: 768px) {
  .dsr-plan-section { padding: 25px 20px; }
  .plan-header { align-items: flex-start; text-align: left; margin-bottom: 28px; }
  .tab-switcher { width: 100%; }
  .tab-btn { flex: 1; padding: 16px 0; text-align: center; }

  .tab-view { flex-direction: column; gap: 28px; }
  .plan-image-card, .plan-text-content { flex: 1 1 100%; width: 100%; }

  .floor-spec-grid { grid-template-columns: 1fr; }
  .dots-pattern { display: none; }
}

/* ==========================================================================
      Location Section  
========================================================================== */
.location-section {
  background-color: #FAF3E5;
  padding: 80px 8%;
  position: relative;
  overflow: hidden;
}

.location-container {
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 2;
}
.location-dots{
  top: 5%;
  left: 35%;
}
/* ----------------------------------
   Left Column Styling
---------------------------------- */
.location-left {
  flex: 1 1 52%;
  max-width: 580px;
}

.section-description {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-muted);
  font-weight: 400;
  margin: 0 0 32px 0;
}
/* Map Frame */
.map-card {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  background-color: #ffffff;
  margin-top: 60px;
}

/* ----------------------------------
   Right Column / Connectivity Card
---------------------------------- */
.location-right {
  flex: 1 1 42%;
  max-width: 600px;
}

.connectivity-card {
  background-color: #fff8eb;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 8px 24px rgba(196, 154, 98, 0.08);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.clock-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #c49a62;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-title {
  font-size: 22px;
  font-weight: 600;
  color: #111111;
  margin: 0;
}

/* Alternating Location List Items */
.location-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list-item {
  font-family: var(--font-body);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-radius: 12px;
  background-color: #fffdf8;
  font-size: 17px;
  color: #000;
  transition: transform 0.2s ease;
}

.list-item.alt-bg {
  background-color: #f1e4ce;
}

.list-item:hover {
  transform: translateX(4px);
}

.place-name {
  font-weight: 500;
}

.drive-time {
  font-weight: 500;
  color: #222222;
  white-space: nowrap;
}

/* ----------------------------------
   Decorative Background Elements
---------------------------------- */

@media (min-width: 1920px) {
  .location-container{justify-content: space-around; gap: 80px;}
}
/* ----------------------------------
   Mobile Responsive Layout (≤ 768px)
---------------------------------- */
@media (max-width: 768px) {
  .location-section {
    padding: 25px 20px;
  }

  .location-container {
    flex-direction: column;
    gap: 32px;
  }

  .location-left,
  .location-right {
    max-width: 100%;
    width: 100%;
  }

  .section-description {
    font-size: 14px;
    margin-bottom: 24px;
  }

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

  .card-title {
    font-size: 20px;
  }

  .list-item {
    padding: 12px 16px;
    font-size: 13.5px;
  }

  .dots-pattern {
    top: 20px;
    right: 15px;
    left: auto;
  }
}

/* ==========================================================================
      DSR About Section  
========================================================================== */
.dsr-about-section {
  background-color: #faf6f0;
  padding: 80px 8% 0;
  position: relative;
  overflow: hidden;
}

.dsr-container {
  margin: 0 auto;
  display: grid;
  gap: 32px;
  /* Mobile Layout Order: Content -> Logo -> Image */
  grid-template-areas:
    "content"
    "logo"
    "image";
}
.dsr-content {
  grid-area: content;
}
.dsr-heading {
  font-family: var(--font-heading);
  font-size: 25px;
  color: var(--text-dark);
  margin: 0 0 60px 0;
  font-weight: 700;
  position: relative;
}

.dsr-heading .gold-text {
  color: #c49a62;
}

/* Accent Line below title */
.dsr-heading::after {
  content: '';
  display: block;
  width: 0; /* Starts at 0px width */
  height: 2px;
  background-color: #c49a62;
  margin-top: 16px;
  /* Smooth expand transition when class is added */
  transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Class added by JavaScript when scrolled into view */
.dsr-heading.is-visible::after {
  width: 80px;
}
.dsr-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0 0 40px 0;
}
/* ----------------------------------
   Desktop Grid Layout (Screen >= 992px)
---------------------------------- */
@media (min-width: 992px) {
 

  .dsr-container {
    grid-template-columns: 420px 1fr;
    column-gap: 140px;
    row-gap: 40px;
    align-items: start;
    /* Desktop Layout Order:
       Left: Logo then Image
       Right: Spans full Content height */
    grid-template-areas:
      "logo    content"
      "image   content";
  }
}


/* ----------------------------------
   Brand Logo Block
---------------------------------- */
.dsr-logo-wrapper {
  grid-area: logo;
  display: flex;
  justify-content: center;
}


/* ----------------------------------
   Arch Image & Dot Pattern Wrapper
---------------------------------- */
.dsr-image-wrapper {
  grid-area: image;
  position: relative;
  padding: 20px 10px 0;
  margin-top: 10px;
}

/* Outer Thin Arch Line */
.arch-border-frame {
 
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.gold-border{
  position: absolute;
  border: 1px solid #c3996b;
  border-top-left-radius: 240px;
  border-top-right-radius: 240px;
  border-bottom: none;
  padding: 12px 12px 0 12px;
  inset: -14px;
  margin-left: 40px;
  height: 274px;
}
/* Inner Arch Image Container */
.arch-image-card {
  width: 100%;
  height: 260px;
  border-top-left-radius: 220px;
  border-top-right-radius: 220px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}



.arch-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



/* Mobile dot positioning */
.pattern-left {
  display: none;
}

.pattern-right {
  top: 80%;
  right: -5%;
}

@media (max-width: 768px) {
  .dsr-about-section {
    padding: 25px 20px 0;
  }
  .arch-image-card {
    height: 300px;
  }
  .gold-border{height: 330px;}
  .dsr-content {
  grid-area: content;
}
.dsr-logo img{width: 250px;}
.dsr-heading {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
}
  .dsr-text {
    font-size: 14px;
  }
}

/* ==========================================================================
      Testimonials Section  
========================================================================== */
.testimonials-section {
  padding: 80px 8%;
  position: relative;
  background-color: #FAF3E5;
}

/* Section Header */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  max-width: 650px;
}

/* Carousel Wrapper */
.testimonials-carousel-container {
  position: relative;
  overflow: hidden;
  padding-top: 80px; /* Leave space for floating quote badges */
}

.testimonials-carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.4s ease-in-out;
}

/* Testimonial Card Base */
.testimonial-card {
  flex: 0 0 calc(50% - 15px); /* Show 2 cards at a time on desktop */
  min-width: calc(50% - 15px);
  position: relative;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

/* Dark Variant Card */
.testimonial-card.dark-card {
  background: #BC8F54;
  color: var(--white);
}

.testimonial-card.dark-card .star-rating {
  color: var(--white);
}

.testimonial-card.dark-card .card-text {
  color: var(--white);
}

.testimonial-card.dark-card .divider {
  background-color: rgba(255, 255, 255, 0.15);
}

.testimonial-card.dark-card .client-title {
  color: var(--white);
}

/* Light Variant Card */
.testimonial-card.light-card {
  background-color: var(--white);
  border: 1px solid #FAF3E5;
  color: var(--text-dark);
}

.testimonial-card.light-card .star-rating {
  color: #BC8F54;
}

.testimonial-card.light-card .card-text {
  color: var(--text-dark);
}

.testimonial-card.light-card .divider {
  background-color: #f0f0f0;
}

.testimonial-card.light-card .client-title {
  color: #777777;
}

/* Floating Quote Badge */
.quote-badge {
  position: absolute;
  top: -22px;
  left: 35px;
  width: 44px;
  height: 44px;
  background-color: #CFA876;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* Card Content */
.star-rating {
  display: flex;
  gap: 6px;
  font-size: 14px;
  margin-bottom: 25px;
}

.testimonials-section .card-text {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.divider {
  height: 1px;
  width: 100%;
  margin-bottom: 20px;
}

.client-info .client-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.client-info .client-title {
  font-size: 13px;
  font-weight: 400;
}

/* Navigation Arrows */
.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 35px;
  padding-right: 10px;
}

.control-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}

.control-btn.prev-btn {
  background-color: var(--text-dark);
  color: #ffffff;
}

.control-btn.next-btn {
  background-color: #C49B64;
  color: #ffffff;
}

.control-btn:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

.control-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .testimonials-section{padding: 25px 20px;}
  .testimonials-section .section-header{margin: 0;}
  .testimonials-carousel-container {padding-top: 25px;}
  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .carousel-controls {
    justify-content: center;
  }
}

/* ==========================================================================
      Explore Section  
========================================================================== */
.explore-section {
  background-color: #fbf8f2;
  padding: 80px 8%;
  position: relative;
  overflow: hidden;
}

.explore-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* ----------------------------------
   Left Column Styling
---------------------------------- */
.explore-info {
  flex: 1 1 45%;
  max-width: 480px;
}

.info-divider {
  width: 100%;
  height: 1px;
  background-color: #eae1d3;
  margin-bottom: 32px;
}

.phone-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-icon {
  width: 46px;
  height: 46px;
  background-color: #be8e54;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.phone-number {
  font-size: 24px;
  font-weight: 700;
  color: #0f0f0f;
  text-decoration: none;
  letter-spacing: -0.3px;
}

/* ----------------------------------
   Right Column / Form Styling
---------------------------------- */
.explore-form-wrapper {
  flex: 1 1 55%;
  max-width: 620px;
}

.explore-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 20px;
}

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

.form-group label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: #1a1a1a;
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  background-color: #f5f0e6;
  border: 1px solid #e5dccf;
  border-radius: 10px;
  font-size: 14px;
  color: #1a1a1a;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  font-family: var(--font-body);
}

.form-group input::placeholder {
  color: #c0b19b;
}

.form-group input:focus {
  border-color: #be8e54;
  background-color: #ffffff;
}

.form-submit-wrapper {
  grid-column: 1 / -1;
  margin-top: 6px;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #be8e54;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  font-family: var(--font-body);
}

.submit-btn:hover {
  background-color: #a87941;
}

.submit-btn:active {
  transform: scale(0.98);
}
.submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}
/* Background Dot Matrix */
.dot-matrix-pattern {
  top: 80%;
  left: 35%;
  width: 80px;
  height: 80px;
}

/* ----------------------------------
   Mobile View)
---------------------------------- */
@media (max-width: 768px) {
  .explore-section {
    padding: 50px 24px;
  }

  .explore-container {
    flex-direction: column;
    gap: 28px;
  }

  .explore-info,
  .explore-form-wrapper {
    max-width: 100%;
    width: 100%;
  }

  .explore-title {
    font-size: 38px;
  }

  .explore-title .gold-text {
    white-space: normal;
    display: block;
  }

  .title-underline {
    margin-bottom: 20px;
  }

  .explore-desc {
    font-size: 15px;
    color: #666666;
    margin-bottom: 24px;
  }

  .info-divider {
    display: none;
  }

  .phone-contact {
    margin-bottom: 12px;
  }

  .phone-number {
    font-size: 22px;
  }

  .explore-form {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .submit-btn {
    width: 100%;
    padding: 16px 20px;
  }

  .dot-matrix-pattern {
    display: none;
  }
}

/* ==========================================================================
      FAQ Section  
========================================================================== */
.faq-section {
  background-color: #FAF3E5;
  padding: 80px 8%;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.faq-container {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ----------------------------------
   Header Styling
---------------------------------- */
.faq-header {
  text-align: center;
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ----------------------------------
   Accordion List & Items
---------------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: #FFFDF8;
  border: 1px solid #F2E7D5;
  border-radius: 14px;
  overflow: hidden;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Expanded State */
.faq-item.active {
  background-color: #EFE4D0;
  border-color: #E6D8BF;
}

.faq-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  outline: none;
  gap: 16px;
}

.faq-question {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.5;
}

/* Icon (+ / -) */
.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: #B88D56;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Horizontal Line */
.faq-icon::before {
  width: 16px;
  height: 2px;
}

/* Vertical Line */
.faq-icon::after {
  width: 2px;
  height: 16px;
}

/* Active Icon Transforms into (-) */
.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

/* Answer Drawer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  transition: max-height 0.35s ease-in-out;
}

.answer-content {
  font-family: var(--card-bg);
  padding: 0 28px 24px 28px;
  font-size: 14px;
  line-height: 1.5;
  color: #2F2E2E;
}

/* ----------------------------------
   Decorative Background Dots
---------------------------------- */
.pattern-top-right {
  top: 40px;
  left: 90%;
}

.pattern-bottom-left {
  top: 85%;
  left: -8%;
}

/* ----------------------------------
   Mobile Responsive View 
---------------------------------- */
@media (max-width: 768px) {
  .faq-section {
    padding: 50px 18px;
  }

  .faq-header {
    align-items: flex-start;
    text-align: left;
    margin-bottom: 32px;
  }

  .faq-title {
    flex-direction: column;
    align-items: flex-start;
    font-size: 36px;
    gap: 2px;
  }

  .title-underline {
    margin-top: 12px;
    width: 90px;
  }

  .faq-toggle {
    padding: 18px 20px;
  }

  /* Ellipsis truncation for question title on mobile as shown in design */
  .faq-question {
    font-size: 14.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Expanded item wraps naturally */
  .faq-item.active .faq-question {
    white-space: normal;
  }

  .answer-content {
    padding: 0 20px 20px 20px;
    font-size: 13.5px;
  }

  .pattern-top-right {
    top: 15px;
    right: 10px;
  }

  .pattern-bottom-left {
    display: none;
  }
}

/* ==========================================================================
      Footer Section  
========================================================================== */
.footer-section {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 8% 30px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.footer-container {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Decorative Arcs */
.decorative-arcs {
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  height: 420px;
  pointer-events: none;
  z-index: 1;
}

/* ----------------------------------
   Brand Logo
---------------------------------- */
.footer-brand {
  margin-bottom: 50px;
}
.footer-brand-logo img{width: 250px;}

/* ----------------------------------
   Content & Columns Layout
---------------------------------- */
.footer-content {
  display: flex;
  align-items: flex-start;
  gap: 100px;
  margin-bottom: 40px;
}

.column-title {
  color: #D2B67C;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin: 0 0 18px 0;
}

/* Social Buttons */
.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icon {
  width: 42px;
  height: 42px;
  background-color: #1b1b1b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c3996b;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.social-icon:hover {
  background-color: #2a2a2a;
  transform: translateY(-2px);
}

/* Contact List Layout */
.contact-items {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #ffffff;
}

.contact-item a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: #c3996b;
}

.contact-icon {
  width: 38px;
  height: 38px;
  background-color: #1b1b1b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c3996b;
  flex-shrink: 0;
}

/* ----------------------------------
   Bottom Bar
---------------------------------- */
.footer-bottom {
  border-top: 1px solid #1c1c1c;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #9D9D9D;
}

/* ----------------------------------
   Mobile Responsiveness 
---------------------------------- */
@media (max-width: 768px) {
  .footer-section {
    padding: 50px 24px 80px 24px;
  }

  .decorative-arcs {
    width: 260px;
    height: 260px;
  }

  .footer-brand {
    margin-bottom: 32px;
  }
  .footer-brand-logo img{width: 180px;}
  .logo-valar {
    font-size: 34px;
  }

  .footer-content {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 36px;
  }

  .contact-items {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .contact-item {
    font-size: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding-top: 28px;
  }
}

/* ==========================================================================
      Floating Action Buttons  
========================================================================== */
.floating-actions-wrapper {
    position: fixed;
    bottom: 31%;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 9999;
}
.sticky-enquiry-btn {
  font-family: var(--font-body) !important;
    background-color: #be9256;
    color: #ffffff;
    border: none;
    padding: 12px 16px;
    border-radius: 0px 12px 12px 0px;
    font-weight: 400;
    white-space: nowrap;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 16px;
}
/* Fixed Floating Social/Call Buttons */
.floating-actions {
  position: fixed;
  right: 25px;
  bottom: 90px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 900;
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 25px;
  text-decoration: none;
}
.float-btn:hover{transform: scale(1.08);}
.sticky-enquiry-btn:hover{background-color: #A67B41;}
.float-whatsapp { background-color: #25D366; }
.float-phone img{width: 50px; }
.float-whatsapp i{font-size: 35px;}
.phone-sticky-btn{display: none;}
.whatsapp-sticky-btn{ display: none;}
.fa-calendar::before{ display: none;}
@media (max-width: 768px) {
  .floating-actions{display: none;}

  .floating-actions-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    transform: none;
    width: 100%;
    background-color: var(--text-dark);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #313234;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom, 0px)) 0;
    z-index: 99999;
    height: 60px;
  }
  .floating-actions-wrapper .sticky-enquiry-btn {
      writing-mode: horizontal-tb !important;
      transform: rotate(0deg) !important;
  }
  .floating-actions-wrapper > a:not(:last-child), .floating-actions-wrapper > button:not(:last-child) {
    border-right: 1px solid #313234 !important;
  }
  .floating-actions-wrapper > a, .floating-actions-wrapper > button {
    flex: 1;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    color: #4a5568 !important;
    border: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 4px 0 !important;
    text-decoration: none;
    box-sizing: border-box;
    box-shadow: none;
    font-weight: 600;
    white-space: nowrap;
  }
  .floating-actions-wrapper .phone-sticky-btn i {
     color: var(--white);
  }
  .floating-actions-wrapper .sticky-enquiry-btn i {
     color: var(--white);
  }
  .floating-actions-wrapper .whatsapp-sticky-btn i {
     color: var(--white);
     font-size: 18px;
  }
  .floating-actions-wrapper i {
    font-size: 16px;
    margin-bottom: 3px;
    display: inline-block;
  }
  .floating-actions-wrapper .btn-label{color: var(--white); font-size: 14px;}
  .whatsapp-sticky-btn{display: block;}
  .phone-sticky-btn{ display: block;}
  .fa-calendar::before{ display: block;}
}

.modal {
  display: none; /* Controlled by Bootstrap JS */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1050;
  background-color: rgba(0, 0, 0, 0.5); /* Dim backdrop */
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

/* Shown state handled by Bootstrap JS */
.modal.show {
  display: block;
}

/* Modal Container Dialog */
.modal-dialog {
  position: relative;
  width: auto;
  max-width: 500px;
  margin: 1.75rem auto;
  pointer-events: none;
}

/* Modal Box Card */
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  outline: 0;
  padding: 24px;
  box-sizing: border-box;
  margin-top: 50%;
}

/* Header & Close Button */
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.modal-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333333;
}

.btn-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  color: #000000;
  opacity: 0.5;
  cursor: pointer;
  padding: 0;
}

.btn-close:hover {
  opacity: 0.8;
}


@media (min-width: 1920px) {
  .nav-links a{font-size: 16px; font-weight: 400;}
  .section-title{font-size: 30px;}
  .dsr-heading {font-size: 30px;}
  .testimonial-card {
    flex: 0 0 calc(50% - 15px); /* Show 2 cards at a time on desktop */
    min-width: calc(50% - 15px);
    position: relative;
    border-radius: 12px;
    padding: 60px 35px 35px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
  }
  .testimonials-section .card-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 60px;
  }
  .advantage-section {padding: 80px 15%;}
  .advantage-container {gap: 100px;}
  .stats-container {padding: 0 10%;}
  .rera-tag {width: 45%;}
}
/* Base hidden state */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

/* State added by JS when element enters viewport */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: Stagger delays for sequential text elements */
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }