/* Doon Curve - Complete CSS */
:root {
  --color-dark-green: #101b14;
  --color-gold: #c9a24d;
  --color-charcoal: #1a2a22;
  --font-serif: "Playfair Display", serif;
  --font-sans: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  background: var(--color-dark-green);
  color: #f5f5f5;
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}
.section-tag {
  display: inline-block;
  color: var(--color-gold);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: white;
  margin-bottom: 1.5rem;
}
.section-desc {
  color: #9ca3af;
  font-size: 1.125rem;
  max-width: 48rem;
  margin: 0 auto;
}
.highlight-text {
  color: var(--color-gold);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  position: relative;
  padding: 6rem 1.5rem;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.5s;
  cursor: pointer;
  font-size: 1rem;
  border: none;
}
.btn-primary {
  background: var(--color-gold);
  color: var(--color-dark-green);
}
.btn-primary:hover {
  background: #b8923d;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201, 162, 77, 0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid rgba(201, 162, 77, 0.5);
}
.btn-secondary:hover {
  background: rgba(201, 162, 77, 0.1);
  border-color: var(--color-gold);
}

/* NAVIGATION */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.5s;
}
.nav.scrolled {
  background: rgba(16, 27, 20, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 77, 0.1);
  padding: 1rem 0;
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-icon {
  color: var(--color-gold);
}
.logo-text h1 {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: white;
}
.logo-text p {
  font-size: 0.625rem;
  color: var(--color-gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-menu a {
  color: #d1d5db;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.nav-menu a:hover {
  color: var(--color-gold);
}
.desktop-menu .schedule:hover {
    color: #FFF;
}
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-menu-btn span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: white;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(16, 27, 20, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201, 162, 77, 0.2);
  padding: 1.5rem;
}
.mobile-menu.active {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu a {
  color: #d1d5db;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://dooncurve.in/assets/images/home_bg.jfif")
    center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(16, 27, 20, 0.9),
    rgba(16, 27, 20, 0.7),
    var(--color-dark-green)
  );
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
}
.hero-location {
  display: inline-block;
  color: var(--color-gold);
  font-size: 0.875rem;
  letter-spacing: 0.4em;
  font-weight: 500;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero-subtitle {
  color: #9ca3af;
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 36rem;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
}
.stat-value {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-family: var(--font-serif);
  color: var(--color-gold);
}
.stat-label {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-arrow {
  display: block;
  color: rgba(201, 162, 77, 0.6);
  font-size: 2rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.5rem);
  }
}

/* OVERVIEW */
.overview {
  background: var(--color-dark-green);
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.feature-card {
  position: relative;
  background: var(--color-charcoal);
  border: 1px solid rgba(201, 162, 77, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.5s;
}
.feature-card:hover {
  border-color: rgba(201, 162, 77, 0.3);
  background: #1f3229;
  transform: translateY(-4px);
}
.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(201, 162, 77, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-gold);
  transition: all 0.3s;
}
.feature-card:hover .card-icon {
  background: rgba(201, 162, 77, 0.2);
  transform: scale(1.1);
}
.feature-card h3 {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 1rem;
}
.feature-card p {
  color: #9ca3af;
  line-height: 1.7;
}
.featured-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 21/9;
}
.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, var(--color-dark-green), transparent);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.image-badge {
  background: rgba(16, 27, 20, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 162, 77, 0.2);
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
}
.image-badge p {
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.image-badge h4 {
  color: white;
  font-size: 1.125rem;
}

/* LOCATION */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
}
.location-visual {
  position: relative;
  aspect-ratio: 1;
  background: var(--color-charcoal);
  border: 1px solid rgba(201, 162, 77, 0.2);
  border-radius: 1rem;
  overflow: hidden;
}
.location-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.location-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4rem;
  height: 4rem;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(201, 162, 77, 0.3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.location-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}
.location-card {
    background: linear-gradient(180deg, #1c2a23, #16231d);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease;
}
.location-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}
.location-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
}
.location-card-icon svg {
    width: 20px;
    height: 20px;
}

.location-card-content h4 {
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 6px;
}

.distance {
  color: var(--color-gold);
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}
.time {
  color: #6b7280;
  font-size: 0.75rem;
}
.location-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    align-items: baseline;
}

.location-meta .distance {
    color: #d4af37;
    font-weight: 500;
}

.location-meta .time {
    color: rgba(255,255,255,0.6);
}
/* STATS */
.stats {
  background: linear-gradient(to bottom, var(--color-dark-green), #0d1610);
}
.stats-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: 180px;
    gap: 24px;
}
.stats-grid .stat-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.stat-card {
    background: linear-gradient(145deg, #16231b, #0f1913);
    border-radius: 16px;
    padding: 15px 20px;
    color: #d6b56a;
    box-shadow: inset 0 0 0 1px rgba(214,181,106,0.08);
}
.stat-card--large {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.stat-icon {
    margin-bottom: 16px;
    color: #d6b56a;
}
.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: radial-gradient(circle, rgba(201, 162, 77, 0.05), transparent);
  border-radius: 50%;
  transition: all 0.5s;
}
.stat-card:hover {
  border-color: rgba(201, 162, 77, 0.3);
}
.stat-card:hover::before {
  background: radial-gradient(circle, rgba(201, 162, 77, 0.1), transparent);
}
.stat-card svg {
  color: var(--color-gold);
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
}
.stats-grid .stat-card:first-child svg {
  width: 3rem;
  height: 3rem;
}
.stat-card .stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}
.stats-grid .stat-card:first-child .stat-number {
    font-size: 42px;
    font-weight: 600;
    margin: 0;
}
.stat-card .stat-title {
    color: #fff;
    font-size: 14px;
    margin-top: 6px;
}
.stats-grid .stat-card:first-child .stat-title {
  font-size: 1.25rem;
}
.stat-card .stat-detail {
    font-size: 12px;
    color: #8fa89a;
}

/* APARTMENTS */
.apartments {
  background: linear-gradient(to bottom, #0d1610, var(--color-dark-green));
}
.apartment-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid rgba(201, 162, 77, 0.2);
  background: var(--color-charcoal);
  color: #9ca3af;
}
.tab-btn.active {
  background: var(--color-gold);
  color: var(--color-dark-green);
  border-color: var(--color-gold);
}
.tab-btn:hover:not(.active) {
  color: white;
  border-color: rgba(201, 162, 77, 0.4);
}
.apartment-content {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}
.apartment-content.active {
  display: grid;
}
.apartment-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.apartment-image::before {
  content: "";
  position: absolute;
  inset: -1rem;
  background: radial-gradient(
    circle at center,
    rgba(201, 162, 77, 0.1),
    transparent
  );
  filter: blur(2rem);
}
.apartment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}
.area-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--color-gold);
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
}
.area-badge p {
  color: var(--color-dark-green);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.125rem;
}
.area-badge span {
  color: rgba(16, 27, 20, 0.7);
  font-size: 0.75rem;
}
.apartment-details .subtitle {
  color: var(--color-gold);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.apartment-details h3 {
  font-size: 2rem;
  color: white;
  margin-bottom: 1.5rem;
}
.apartment-details .description {
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.specs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0px 0;
}
.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    color: #d6d6d6;
    font-size: 14px;
}

.spec-item svg {
    color: #c9a44d; /* gold icon */
    flex-shrink: 0;
}
.spec-item span {
  color: white;
  font-size: 0.875rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #d6d6d6;
}

.features-list li::before {
    content: "✔";
    color: #c9a44d;
    font-size: 14px;
}

/* AMENITIES */


/* Container */
.amenities-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Image Card */
.amenity-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 420px;
    background: #000;
}

/* Image */
.amenity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Hover Zoom */
.amenity-image:hover img {
    transform: scale(1.06);
}

/* Dark Gradient Overlay */
.amenity-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.45) 35%,
        rgba(0, 0, 0, 0.15) 60%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 1;
}

/* Text Overlay */
.amenity-image-overlay {
    position: absolute;
    bottom: 28px;
    left: 28px;
    z-index: 2;
    max-width: 70%;
}

/* Title */
.amenity-image-overlay h4 {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}

/* Description */
.amenity-image-overlay p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .amenities-images {
        grid-template-columns: 1fr;
    }

    .amenity-image {
        height: 320px;
    }

    .amenity-image-overlay h4 {
        font-size: 22px;
    }
}

/* Image wrapper */
.security-visual {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
}

/* Image */
.security-visual img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

/* Dark bottom gradient */
.security-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 55%,
        rgba(0,0,0,0.7) 100%
    );
    z-index: 1;
}

/* Badge */
.security-badge {
    position: absolute;
    left: 24px;
    bottom: 110px;
    background: #c9a44d;
    color: #1a1a1a;
    padding: 12px 14px;
    border-radius: 14px;
    display: flex;
    gap: 8px;
    align-items: center;
    z-index: 3;
}

.security-badge p {
    margin: 0;
    font-size: 12px;
}

/* Bottom text */
.security-bottom-text {
    position: absolute;
    bottom: 28px;
    left: 24px;
    z-index: 3;
    color: #fff;
}

.security-bottom-text h3 {
    font-size: 26px;
    margin-bottom: 6px;
}

.security-bottom-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.amenities {
  background: var(--color-dark-green);
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.amenity-card {
  background: var(--color-charcoal);
  border: 1px solid rgba(201, 162, 77, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.5s;
}
.amenity-card:hover {
  border-color: rgba(201, 162, 77, 0.3);
  background: #1f3229;
  transform: translateY(-4px);
}
.amenity-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(201, 162, 77, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}
.amenity-card:hover .amenity-icon {
  background: rgba(201, 162, 77, 0.2);
  transform: scale(1.1);
}
.amenity-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--color-gold);
}
.amenity-card h3 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.amenity-card p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* SECURITY */
.security {
  background: var(--color-dark-green);
}
.security-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}
.security-text .subtitle {
  color: var(--color-gold);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  font-weight: 500;
  margin-bottom: 1rem;
}
.security-text h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}
.security-text .tagline {
  font-size: 1.25rem;
  color: #9ca3af;
  margin-bottom: 2rem;
}
.security-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.security-feature {
  display: flex;
  gap: 1.25rem;
}
.security-icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(201, 162, 77, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.security-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--color-gold);
}
.security-feature h3 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}
.security-feature p {
  color: #6b7280;
}
.security-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 1.5rem;
  overflow: hidden;
}
.security-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTACT */
.contact {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--color-charcoal),
    var(--color-dark-green)
  );
}
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("https://dooncurve.in/assets/images/cont_bg.jfif")
    center/cover;
  opacity: 0.1;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}
.contact-info h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 2rem;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 164, 77, 0.18);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: #c9a44d;   /* gold color */
}
.contact-item-text .label {
    color: #8fa59a;
    font-size: 14px;
}
.icon-wrapper {
    color: #c9a44d;
}
.contact-item-text .value {
    color: #ffffff;
    font-size: 16px;
}
.contact-form-wrapper {
  background: var(--color-dark-green);
  border: 1px solid rgba(201, 162, 77, 0.2);
  border-radius: 1.5rem;
  padding: 2.5rem;
}
.contact-form-wrapper h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
}
.contact-form-wrapper .subtitle {
  color: #6b7280;
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-charcoal);
  border: 1px solid rgba(201, 162, 77, 0.2);
  border-radius: 0.5rem;
  color: white;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: all 0.3s;
}
.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  background: #1f3229;
}
.form-control::placeholder {
  color: #6b7280;
}
textarea.form-control {
  min-height: 120px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.form-submit {
  width: 100%;
  padding: 0.75rem 2rem;
  background: var(--color-gold);
  color: var(--color-dark-green);
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}
.form-submit:hover {
  background: #b8923d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 162, 77, 0.3);
}
.success-message {
  text-align: center;
  padding: 3rem 0;
}
.success-message h4 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.success-message p {
  color: #9ca3af;
}

/* FOOTER */
.footer {
  background: var(--color-dark-green);
  border-top: 1px solid rgba(201, 162, 77, 0.1);
  padding: 4rem 1.5rem;
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo svg {
  color: var(--color-gold);
}
.footer-logo h3 {
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  color: white;
}
.footer-logo p {
  font-size: 0.5rem;
  color: var(--color-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.footer-desc {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.7;
}
.footer-col h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #6b7280;
  font-size: 0.875rem;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--color-gold);
}
.footer-col p {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.footer-col strong {
  color: #9ca3af;
}
.disclaimer {
  color: rgba(201, 162, 77, 0.8) !important;
  font-size: 0.75rem !important;
  margin-top: 1rem !important;
  line-height: 1.5;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 162, 77, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  color: #6b7280;
  font-size: 0.875rem;
}
.footer-bottom .highlight {
  color: var(--color-gold);
}
@media(min-width: 240px) and (max-width: 479px) {
  .featured-image .image-badge {
    padding: 5px !important;
}
.featured-image .image-overlay {
    padding: 8px !important;
    gap: 10px !important;
}
.featured-image .image-badge h4 {
    font-size: 14px !important;
}
.security-bottom-text h3 {
    font-size: 20px !important;
    margin-bottom: 6px;
}
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid .stat-card:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }
  .apartment-tabs {
    flex-direction: column;
    align-items: stretch;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 3rem 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .location-cards,
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card--large {
        grid-row: auto;
    }
}




