@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap");

:root {
  /* Colors */
  --color-gold: #c5a880;
  --color-gold-hover: #b39369;
  --color-gold-light: rgba(197, 168, 128, 0.15);

  --color-dark-bg: #0b0d11; /* Deep slate background */
  --color-dark-card: #12151c; /* Graphene dark card background */
  --color-dark-border: rgba(197, 168, 128, 0.2);
  --color-dark-text: #e6e8eb; /* White/grey text */
  --color-dark-muted: #9fa7b3; /* Muted grey text */

  --color-light-bg: #faf8f5; /* Warm off-white backdrop */
  --color-light-card: #f2efea; /* Light cream cards */
  --color-light-border: #e2dfd9;
  --color-light-text: #1a1e24; /* Deep charcoal text */
  --color-light-muted: #5e6573;

  --color-white: #ffffff; /* Headings default text color */
  --color-success: #4caf50;
  --color-error: #f44336;

  /* Fonts */
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", sans-serif;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset overrides */
html,
body {
  font-family: var(--font-sans) !important;
  line-height: 1.6;
  color: var(--color-light-text);
  background-color: var(--color-light-bg);
  max-width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 500;
}

.text-gold {
  color: var(--color-gold) !important;
}

.font-serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0 !important;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.logo img {
  width: auto;
  height: 85px;
  object-fit: contain;
  margin: 10px 0;
}
.btn-primary {
  background-color: var(--color-gold) !important;
  color: #111111 !important;
  border: 1px solid var(--color-gold) !important;
}

.btn-primary:hover {
  background-color: var(--color-gold-hover) !important;
  border-color: var(--color-gold-hover) !important;
  color: #000000 !important;
  transform: translateY(-2px);
}

.btn-outline-gold {
  background-color: transparent !important;
  color: var(--color-gold) !important;
  border: 1px solid var(--color-gold) !important;
  gap: 0rem;
}

.btn-outline-gold:hover {
  background-color: var(--color-gold) !important;
  color: #111111 !important;
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent !important;
  color: var(--color-white) !important;
  border: 1px solid var(--color-white) !important;
}

.btn-outline-white:hover {
  background-color: var(--color-white) !important;
  color: #111111 !important;
  transform: translateY(-2px);
}

/* Section base */
section {
  padding: 7rem 0;
  position: relative;
}

.section-dark {
  background-color: var(--color-dark-bg);
  color: var(--color-dark-text);
}

.section-dark .section-title {
  color: var(--color-white) !important;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  display: inline-block;
}

.section-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--color-light-text);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-light-muted);
  max-width: 650px;
  margin-bottom: 1rem;
}

/* Header & Navigation (Dark transparent overlay) */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1000;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.scrolled {
  background-color: rgba(11, 13, 17, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  height: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-white) !important;
}

.logo span {
  color: var(--color-gold);
}

.logo-icon {
  width: 28px;
  height: 28px;
  border: 2px solid var(--color-gold);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon-inner {
  width: 12px;
  height: 12px;
  background-color: var(--color-gold);
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sbi-logo {
  width: auto;
  height: 35px;
  margin: 0 0 16px 0;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75) !important;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-white) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-white);
  margin: 5px 0;
  transition: var(--transition-smooth);
}
/* Hero Section (Reverted to Dark cover background) */
.hero {
  min-height: 100vh;
  position: relative;
  background-image: linear-gradient(
      to right,
      rgba(11, 13, 17, 0.95) 0%,
      rgba(11, 13, 17, 0.75) 45%,
      rgba(11, 13, 17, 0.2) 100%
    ),
    url("../images/park-11.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  color: var(--color-dark-text);
  overflow: visible; /* Prevent stats strip clipping */
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 !important;
}

.hero-container-overlay {
  position: relative;
  z-index: 5;
}

.hero-content {
  padding: 100px 0 120px;
  position: relative;
  z-index: 5;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.15;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 1.3rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #c6c6c6;
  margin-bottom: 1rem;
  max-width: 675px;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 5px 0;
}

.usp-icon-wrapper {
  min-width: 44px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.1rem;
  background-color: rgba(11, 13, 17, 0.4);
}

.usp-text {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

/* Statistics Strip bottom of Hero (Reference aligned) */
.hero-stats-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%); /* Centered on section boundary */
  z-index: 20;
  width: 100%;
  max-width: var(--container-width);
  padding: 0 2rem;
  pointer-events: none;
}

.hero-stats-strip {
  background: rgba(18, 21, 28, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(197, 168, 128, 0.25);
  padding: 2.2rem 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  pointer-events: auto;
  border-radius: 12px;
}

.hero-stats-strip .stat-item {
  border-right: 1px solid rgba(197, 168, 128, 0.15);
  text-align: center;
}

.hero-stats-strip .stat-item:last-child {
  border-right: none;
}

.hero-stats-strip .stat-inner {
  padding: 0.5rem;
}

/* desk  all padding */
section {
  padding: 5rem 0;
}
/* desk all padding */

.hero-stats-strip .stat-inner i {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.hero-stats-strip .stat-number {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-stats-strip .stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-dark-muted);
}
/* About Project Section */
.about {
  background-color: var(--color-light-bg);
  padding-top: 11rem; /* Offset for centered floating stats strip */
}

.highlight-card {
  background-color: var(--color-light-card);
  padding: 2rem 1.5rem;
  border: 1px solid var(--color-light-border);
  transition: var(--transition-smooth);
  text-align: center;
  height: 100%;
}

.highlight-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.highlight-icon {
  font-size: 1.8rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.highlight-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-light-text);
}

.highlight-desc {
  font-size: 0.8rem;
  color: var(--color-light-muted);
  margin-bottom: 0;
  display: none;
}

/* Why Choose Section */
.why-choose {
  background-color: var(--color-light-bg);
  border-top: 1px solid var(--color-light-border);
}

.why-card {
  background-color: var(--color-light-card);
  border: 1px solid var(--color-light-border);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
  height: 100%;
  border-radius: 12px;
}

.why-card:hover {
  background-color: rgba(255, 255, 255, 0.8);
  border-color: var(--color-gold);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.why-card-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  border: 1px solid var(--color-light-border);
  border-radius: 50%;
  font-size: 1.9rem;
  transition: var(--transition-smooth);
}

.why-card:hover .why-card-icon {
  border-color: var(--color-gold);
  background-color: var(--color-gold-light);
}

.why-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-light-text);
  margin-bottom: 0;
}

/* Lifestyle Section (Dark Overlay) */
.lifestyle {
  background-color: var(--color-dark-bg);
  color: var(--color-dark-text);
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.lifestyle-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgb(11 13 17 / 56%), rgb(11 13 17 / 66%)),
    url("../images/park-10.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.lifestyle-container {
  position: relative;
  z-index: 2;
  /* max-width: 680px; */
}

.lifestyle-title {
  color: var(--color-white);
}

.lifestyle-content {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

/* Amenities Section */
.amenities {
  background-color: var(--color-dark-bg);
  color: var(--color-dark-text);
}

.amenities-tabs {
  border-bottom: 1px solid var(--color-dark-border);
  padding-bottom: 1rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.tab-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-dark-muted);
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
}

.tab-btn::after {
  content: "";
  position: absolute;
  bottom: -1.1rem;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}

.tab-btn:hover,
.tab-btn.active {
  color: var(--color-white);
}

.tab-btn.active::after {
  width: 100%;
}

.amenities-content-panel {
  display: none;
  animation: fadeIn 0.6s var(--transition-smooth);
}

.amenities-content-panel.active {
  display: block;
}

.amenity-card {
  background-color: var(--color-dark-card);
  border: 1px solid var(--color-dark-border);
  padding: 2.5rem 1.8rem;
  transition: var(--transition-smooth);
  height: 100%;
}

.amenity-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px);
}

.amenity-card-icon {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.amenity-card-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.amenity-card-list {
  list-style: none;
  font-size: 0.85rem;
  color: var(--color-dark-muted);
  padding: 0;
  margin: 0;
}

.amenity-card-list li {
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.amenity-card-list li::before {
  content: "•";
  color: var(--color-gold);
  font-size: 1.1rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Master Plan */
.master-plan {
  background-color: var(--color-light-bg);
}

.master-plan-image {
  width: 100%;
  border: 1px solid var(--color-light-border);
  padding: 1rem;
  background-color: var(--color-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
}

.master-plan-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-smooth);
}

.master-plan-image:hover img {
  transform: scale(1.02);
}

/* Floor Plans Section */
.floor-plans {
  background-color: var(--color-light-bg);
  border-top: 1px solid var(--color-light-border);
}

.floor-btn {
  background-color: transparent;
  border: 1px solid var(--color-light-border);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-light-muted);
  padding: 0.8rem 2.2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.floor-btn:hover,
.floor-btn.active {
  background-color: var(--color-light-text);
  border-color: var(--color-light-text);
  color: var(--color-white);
}

.floor-panel {
  display: none;
  animation: fadeIn 0.5s ease-out;
}

.floor-panel.active {
  display: block;
}
.choice-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.choice-group-3 {
  grid-template-columns: repeat(3, 1fr);
}

.choice-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  /* min-height: 46px; */
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  font-size: 14px;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card:has(input:checked) {
  background: #000;
  border-color: #000;
  color: #fff;
}

.choice-card:hover {
  border-color: #999;
}

.floor-details-card {
  background-color: var(--color-light-card);
  border: 1px solid var(--color-light-border);
  padding: 3rem 2.5rem;
}

.floor-details-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--color-light-text);
  border-bottom: 1px solid var(--color-light-border);
  padding-bottom: 1rem;
}

.floor-specs-list {
  list-style: none;
  margin-bottom: 2.5rem;
  padding: 0;
}

.floor-specs-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px dashed var(--color-light-border);
  font-size: 0.95rem;
}

.floor-specs-list li span:first-child {
  color: var(--color-light-muted);
  font-weight: 500;
}

.floor-specs-list li span:last-child {
  font-weight: 600;
  color: var(--color-light-text);
}

.floor-image-container {
  width: 100%;
  padding: 1.5rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-light-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.floor-image-container img {
  width: 100%;
  height: auto;
  display: block;
  filter: blur(5px);
  transition: var(--transition-smooth);
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--color-light-text);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-light-muted);
}

.floor-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(250, 248, 245, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 2rem;
  text-align: center;
}

.floor-image-overlay p {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--color-light-text);
  line-height: 1.4;
}

/* Specifications */
.specs {
  background-color: var(--color-light-bg);
  border-top: 1px solid var(--color-light-border);
}

.faq {
  background-color: var(--color-dark-bg);
  color: var(--color-dark-text);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-dark-card);
  border: 1px solid var(--color-dark-border);
  margin-bottom: 1.25rem;
  transition: var(--transition-smooth);
}

.faq-header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--color-white);
  font-weight: 500;
  margin-bottom: 0;
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}

.faq-icon::before {
  top: 9px;
  left: 0;
  width: 20px;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  left: 9px;
  width: 2px;
  height: 20px;
}

.faq-item.active {
  border-color: var(--color-gold);
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
  padding: 0 2rem 2rem;
  font-size: 0.95rem;
  color: var(--color-dark-muted);
  line-height: 1.7;
}

/* Final CTA & Inline Form (GOLD HIGHLIGHTED LIGHT FORM SECTION) */
.cta-section {
  background-color: var(--color-light-bg);
  color: var(--color-light-text);
  border-top: 1px solid var(--color-light-border);
  padding: 8rem 0;
  position: relative;
}

.cta-section .section-subtitle {
  color: var(--color-light-muted) !important;
}

.cta-form-container {
  background: var(
    --color-pure-white
  ) !important; /* Crisp white card background */
  border: 1px solid var(--color-gold) !important; /* Gold border highlight */
  padding: 1.5rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06) !important; /* Soft dark drop shadow */
  position: relative;
  border-radius: 13px;
}

.cta-form-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--color-light-text) !important;
}

.cta-form-subtitle {
  font-size: 0.9rem;
  color: var(--color-light-muted) !important;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-light-muted) !important;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  background-color: rgb(255, 255, 255);
  border: 1px solid var(--color-light-border);
  padding: 0.7rem 1.2rem;
  color: var(--color-light-text);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  transition: var(--transition-smooth);
  border-radius: 8px;
}
.form-input::placeholder {
  color: #000;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-gold);
  background-color: rgba(0, 0, 0, 0.04);
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.15);
}

.form-select {
  width: 100%;
  background-color: var(--color-pure-white);
  border: 1px solid var(--color-light-border);
  padding: 0.85rem 1.2rem;
  color: var(--color-light-text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c5a880' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
}

.form-select:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.15);
}

.form-response-msg {
  margin-top: 1rem;
  padding: 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  display: none;
}

.form-response-msg.success {
  display: block;
  background-color: rgba(76, 175, 80, 0.15);
  border: 1px solid var(--color-success);
  color: var(--color-success);
}

.form-response-msg.error {
  display: block;
  background-color: rgba(244, 67, 54, 0.15);
  border: 1px solid var(--color-error);
  color: var(--color-error);
}
/* Footer Section */
footer {
  background-color: #060709;
  color: #8c939e;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

.footer-links-list {
  list-style: none;
  padding: 0;
}

.footer-links-list li {
  margin-bottom: 0.8rem;
}

.footer-links-list a {
  color: #d2d2d2;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.footer-links-list a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}

.footer-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #d2d2d2;
}
.footer-contact-item a {
  text-decoration: none;
}

.footer-contact-icon {
  color: var(--color-gold);
  font-size: 0.95rem;
  margin-top: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1.5rem;
}

.rera-note {
  font-size: 0.8rem;
  color: #d2d2d2;
  line-height: 1.5;
}

.copyright {
  font-size: 0.8rem;
  color: #d2d2d2;
}

/* Inquiry Popup Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 13, 17, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background-color: #fff;
  border: 1px solid var(--color-dark-border);
  max-width: 550px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s var(--transition-smooth);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-dark-muted);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  color: red !important;
}

/* Lightbox styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 13, 17, 0.95);
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  display: block;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2.5rem;
  cursor: pointer;
}

.spec-card {
  background-color: var(--color-light-card);
  border: 1px solid var(--color-light-border);
  padding: 2.5rem 1.8rem;
  transition: var(--transition-smooth);
}

.spec-card:hover {
  border-color: var(--color-gold);
  background-color: var(--color-white);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
}

.spec-icon {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.spec-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-light-text);
  margin-bottom: 0.75rem;
}

.spec-desc {
  font-size: 0.85rem;
  color: var(--color-light-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Location Advantage & Accordions */
.location {
  background-color: var(--color-dark-bg);
  color: var(--color-dark-text);
}

.location-accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: transparent;
}

.location-accordion-item {
  background-color: var(--color-dark-card) !important;
  border: 1px solid var(--color-dark-border) !important;
  margin-bottom: 0.85rem;
  border-radius: 0 !important;
  overflow: hidden;
}

.location-accordion-button {
  background-color: transparent !important;
  color: var(--color-dark-muted) !important;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 1.3rem 1.5rem !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.location-accordion-button:not(.collapsed) {
  color: var(--color-white) !important;
  border-bottom: 1px solid rgba(197, 168, 128, 0.15) !important;
}

/* Accordion Collapse Arrow Filter */
.location-accordion-button::after {
  filter: invert(72%) sepia(21%) saturate(545%) hue-rotate(334deg)
    brightness(88%) contrast(85%) !important;
}

.location-accordion-body {
  background-color: transparent;
  padding: 1.5rem 1.8rem !important;
}

.loc-places-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.loc-places-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

.loc-places-list li:last-child {
  border-bottom: none;
}

.loc-place-name {
  color: var(--color-white);
  font-weight: 500;
}

.loc-place-time {
  color: var(--color-gold);
  font-weight: 600;
}

.location-map-container {
  border: 1px solid var(--color-dark-border);
  padding: 0.75rem;
  background-color: var(--color-dark-card);
}
/* About Builder Section */
.builder {
  background-color: var(--color-light-bg);
}

.builder-logo {
  display: block;
  max-height: 140px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
  mix-blend-mode: multiply;
}
.builder-logo-2 {
  display: block;
  max-height: 100px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
  mix-blend-mode: multiply;
}

.builder-stats .stat-item-card {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.builder-stats .stat-item-card:hover {
  border-color: var(--color-gold) !important;
  background-color: var(--color-white) !important;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
}

/* Gallery Section (Refactored Bootstrap Grid) */
.gallery {
  background-color: var(--color-light-bg);
  border-top: 1px solid var(--color-light-border);
}

.gallery-grid {
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 230px;
  border: 1px solid var(--color-light-border);
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
}
.footer-about-logo {
  width: auto;
  height: 100px;
  object-fit: contain;
  color: var(--color-white) !important;
  margin-bottom: 1.5rem;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 13, 17, 0.45);
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  font-size: 2rem;
  color: var(--color-white);
  opacity: 0;
  z-index: 5;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.location-map-container iframe {
  width: 100%;
  height: 480px;
  display: block;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

@media (max-width: 991px) {
  .hero {
    background-image: linear-gradient(
        to bottom,
        rgb(11 13 17 / 57%) 0%,
        rgb(11 13 17) 100%
      ),
      url("../images/bg-2.png");
    background-position: center center;
  }

  .hero-content {
    padding: 100px 0 60px;
  }

  .hero-stats-container {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: -30px;
    margin-bottom: 2rem;
    padding: 0 1.5rem;
  }

  .hero-stats-strip .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    padding: 1.25rem 0;
  }

  .hero-stats-strip .stat-item:nth-child(3),
  .hero-stats-strip .stat-item:nth-child(4) {
    border-bottom: none;
  }

  .hero-stats-strip {
    padding: 1rem;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .about {
    padding-top: 5rem !important; /* Reset overlap spacing on mobile */
  }
}

@media (max-width: 991px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-dark-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
    z-index: 999;
    padding: 0;
  }

  .nav-menu.active {
    right: 0;
  }

  .menu-toggle {
    display: block;
    z-index: 1000;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

@media (max-width: 768px) {
  .cta-form-container {
    padding: 1.2rem;
  }
}

@media (max-width: 991px) {
  .location-map-container iframe {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .gallery-item {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
  section {
    padding: 5rem 0;
  }
}

@media (max-width: 576px) {
  .choice-group-3 {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .choice-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 500px) {
  .logo img {
    width: auto;
    height: 65px;
  }
  .builder-logo-2 {
    max-height: 65px;
    margin-bottom: 0.5rem;
  }
  .choice-card {
    font-size: 11px;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
  .form-label {
    font-size: 0.7rem;
  }
  .builder-logo {
    max-height: 60px;
    margin-bottom: 1.25rem;
  }
  .cta-section {
    padding: 4rem 0;
  }
  footer {
    padding: 3rem 0 2rem 0;
  }
  .footer-bottom {
    padding-top: 1.5rem;
  }
  .footer-about-logo {
    height: 70px;
    margin: 0 0 1rem 0;
  }
  .gallery-item {
    height: 110px;
  }
  .faq-header {
    padding: 1rem;
  }
  .faq-question {
    font-size: 1rem;
  }
  .stat-number {
    font-size: 1.5rem;
  }
  .stat-label {
    font-size: 0.5rem;
  }
  .hero-content {
    padding: 50px 20px;
  }
  .hero-title,
  .section-title {
    font-size: 1.8rem;
  }
  .hero-title {
    margin-bottom: 0.75rem;
  }
  .hero-subtitle {
    font-size: 0.83rem;
  }
  .eyebrow {
    margin-bottom: 1rem;
  }
  .usp-text {
    font-size: 0.8rem;
  }
  .hero-stats-strip .stat-number {
    font-size: 1.6rem;
  }
  .hero-stats-strip .stat-label {
    font-size: 0.5rem;
  }
  .hero-stats-strip {
    padding: 0.5rem;
  }
  .hero-stats-strip .stat-inner i {
    font-size: 1.5rem;
  }
  .section-subtitle {
    font-size: 0.9rem;
    margin: 0 0 2rem 0;
  }
  .floor-btn {
    padding: 0.5rem 1rem;
  }
  .highlight-card {
    padding: 1rem;
  }
  .spec-card {
    padding: 1rem;
  }
  .faq-content {
    font-size: 13px;
    line-height: 1.3;
  }
  .floor-details-title {
    font-size: 1.5rem;
  }
  .highlight-title {
    font-size: 1rem;
  }
  .location-accordion-button {
    padding: 1rem;
  }
  .highlight-icon {
    font-size: 1.5rem;
  }
  /* all mobile padding */
  section {
    padding: 3rem 0;
  }
  .why-card {
    padding: 1.5rem;
  }
  .why-card-icon {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .why-card-title {
    font-size: 1rem;
  }
  .lifestyle {
    min-height: 450px;
  }
  .lifestyle-content {
    font-size: 0.9rem;
  }
  .btn-outline-white {
    font-size: 0.7rem;
  }
  .amenities-tabs {
    justify-content: center;
  }
  .amenities-tabs .tab-btn {
    font-size: 0.7rem;
    padding: 0.5rem;
    min-width: 126px;
    background: #fff;
    color: #000;
    border-radius: 5px;
  }
  .tab-btn::after {
    display: none;
  }
}
