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

:root {
  --primary: #F88421;
  --primary-dark: #d96e10;
  --primary-light: #f5d0a9;
  --secondary: #00A85A;
  --secondary-dark: #008a4a;
  --secondary-light: #e6f7ef;
  --text: #1a1a1a;
  --text-light: #444;
  --text-muted: #777;
  --bg: #ffffff;
  --bg-light: #f5f5f5;
  --bg-section: #eef7f2;
  --border: #c8c8c8;
  --border-dark: #999;
  --shadow: 0 2px 6px rgba(0,0,0,0.12);
  --radius: 4px;
  --radius-sm: 2px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 16px; }
.section { padding: 48px 0; }
.hidden { display: none !important; }

/* ===== MARQUEE ===== */
.marquee-bar {
  background: #00A85A;
  color: #fff;
  padding: 8px 0;
  overflow: hidden;
  border-bottom: 2px solid #00A85A;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-content {
  white-space: nowrap;
  padding: 0 48px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.marquee-content span {
  color: #ffd080;
  margin: 0 8px;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== BANNER IMAGE ===== */
.site-banner {
  width: 100%;
  display: block;
  line-height: 0;
}
.site-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== HEADER / NAV ===== */
.header {
  background: #00A85A;
  border-bottom: 3px solid #F88421;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  min-height: 52px;
}
.logo a { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 48px; width: auto; display: block; }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}
.logo-sub {
  font-size: 10px;
  color: #ffd080;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.nav ul { display: flex; align-items: center; gap: 0; }
.nav-link {
  display: block;
  padding: 16px 13px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: background var(--transition);
  white-space: nowrap;
}
.nav-link:first-child { border-left: 1px solid rgba(255,255,255,0.15); }
.nav-link:hover, .nav-link.active {
  background: rgba(0,0,0,0.2);
  color: #ffd080;
}
.btn-register {
  background: #F88421 !important;
  color: #fff !important;
  border-left: none !important;
  border-right: none !important;
  padding: 10px 18px !important;
  margin-left: 8px;
  border-radius: var(--radius);
  font-weight: 700 !important;
}
.btn-register:hover { background: #d96e10 !important; }
@keyframes btn-blink {
  0%, 100% { box-shadow: 0 0 0 0 rgba(248,132,33,0.6); opacity: 1; }
  50% { box-shadow: 0 0 0 8px rgba(248,132,33,0); opacity: 0.82; }
}
.btn-blink { animation: btn-blink 1.4s ease-in-out infinite; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.btn-primary { background: #F88421; color: #fff; border-color: #F88421; }
.btn-primary:hover { background: #d96e10; border-color: #d96e10; }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-green { background: #00A85A; color: #fff; border-color: #00A85A; }
.btn-green:hover { background: #008a4a; border-color: #008a4a; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HERO — IMAGE ONLY ===== */
.hero {
  width: 100%;
  background: #eef7f2;
  border-bottom: 3px solid #F88421;
}
.hero-inner {
  display: flex;
  align-items: stretch;
}
.hero-image {
  flex: 0 0 70%;
  line-height: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-info {
  flex: 0 0 30%;
  background: #00A85A;
  display: flex;
  align-items: center;
  padding: 32px 24px;
}
.hero-info-content { width: 100%; text-align: center; }
.hero-badge {
  display: inline-block;
  background: #F88421;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.hero-hindi {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  border: none !important;
  padding: 0 !important;
}
.hero-location {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.4;
}
.hero-detail-line {
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 8px;
  line-height: 1.5;
}
.hero-detail-line strong { color: #fff; }
.btn-hero-register {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  background: #F88421;
  color: #fff;
  border: 2px solid #F88421;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 3px;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-hero-register:hover { background: #d96e10; border-color: #d96e10; }
@media (max-width: 768px) {
  .hero-inner { flex-direction: column; }
  .hero-image { flex: 0 0 auto; }
  .hero-info { flex: 0 0 auto; padding: 24px 20px; }
}

/* ===== QUICK INQUIRY ===== */
.quick-inquiry {
  background: #fff7f0;
  border-top: 3px solid #F88421;
  border-bottom: 3px solid #F88421;
  padding: 18px 0;
}
.quick-form {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.quick-form-title {
  font-size: 14px;
  font-weight: 700;
  color: #00A85A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  border-right: 2px solid #F88421;
  padding-right: 12px;
  flex-shrink: 0;
}
.quick-form-fields { display: flex; gap: 8px; flex: 1; flex-wrap: wrap; }
.quick-form-fields input {
  flex: 1;
  min-width: 140px;
  padding: 8px 12px;
  border: 1px solid #bbb;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  background: #fff;
}
.quick-form-fields input:focus { outline: 2px solid #00A85A; border-color: #00A85A; }
.quick-form-fields .btn { flex-shrink: 0; padding: 8px 18px; font-size: 13px; }

/* ===== SECTION HEADER ===== */
.section-header { margin-bottom: 28px; display: flex; flex-direction: column; align-items: flex-start; }
.section-header.center { text-align: center; align-items: center; }
.section-tag {
  display: inline-block;
  background: #00A85A;
  color: #fff;
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  border-radius: 2px;
}
.section-header h2 {
  font-size: clamp(20px, 3vw, 28px);
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 0;
  border-bottom: 3px solid #F88421;
  display: inline-block;
  padding-bottom: 6px;
  font-family: 'Poppins', sans-serif;
}
.section-header p {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 10px;
}

/* ===== ABOUT ===== */
.about { background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start; }
.about-cert { display: flex; flex-direction: column; align-self: start; margin-top: 0; padding-top: 0; position: relative; top: 0; }
.about-text .section-header { margin-bottom: 16px; }
.about-cert-img { width: 100%; height: auto; display: block; border: 2px solid #ccc; box-shadow: 0 2px 12px rgba(0,0,0,0.1); }
.about-text h3 {
  font-size: 17px;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-weight: 700;
  border-left: 4px solid #F88421;
  padding-left: 10px;
}
.about-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 12px; font-size: 14px; }
.about-highlights { margin: 16px 0; display: flex; flex-direction: column; gap: 8px; }
.about-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px dotted #ccc;
}
.about-highlights li:last-child { border-bottom: none; }
.about-highlights i { color: #00A85A; font-size: 14px; flex-shrink: 0; margin-top: 3px; }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid #00A85A;
  padding: 16px;
  text-align: center;
}
.info-card i { font-size: 24px; color: #F88421; margin-bottom: 8px; display: block; }
.info-card h4 { font-size: 12px; color: #1a1a1a; margin-bottom: 6px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.info-card p { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* ===== PLOT DETAILS ===== */
.plot-details { background: #fff; }
.plot-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 20px; }
.plot-card {
  border: 1px solid var(--border);
  border-top: 4px solid #00A85A;
  background: #fff;
}
.plot-badge {
  display: inline-block;
  background: #F88421;
  color: #fff;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 700;
  margin: 12px 12px 0;
  border-radius: 2px;
}
.plot-card-header {
  background: #00A85A;
  padding: 16px 16px 14px;
  color: #fff;
}
.plot-card-header h3 { font-size: 18px; margin-bottom: 4px; font-weight: 700; }
.plot-price { font-size: 16px; font-weight: 700; color: #ffd080; }
.plot-price span { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.7); }
.plot-card-body { padding: 0; }
.plot-table { width: 100%; border-collapse: collapse; }
.plot-table tr { border-bottom: 1px solid #e0e0e0; }
.plot-table tr:last-child { border-bottom: none; }
.plot-table td { padding: 9px 14px; font-size: 13px; color: var(--text); }
.plot-table td:first-child { color: var(--text-light); background: #f9f9f9; width: 48%; font-weight: 500; }
.plot-card .btn { display: block; margin: 12px 14px 14px; text-align: center; justify-content: center; }
.plot-note {
  display: flex;
  gap: 10px;
  background: #fff8e6;
  border: 1px solid #e8c87a;
  border-left: 4px solid #F88421;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.7;
}
.plot-note i { color: #F88421; flex-shrink: 0; margin-top: 2px; }

/* ===== CERTIFICATE SECTION ===== */
.cert-section { background: #fff; padding: 32px 0; border-top: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0; }
.cert-img { max-width: 960px; width: 100%; margin: 0 auto; display: block; border: 2px solid #ccc; }

/* ===== LOCATION ===== */
.location { background: #00A85A; }
.location .section-header h2 { color: #fff; border-bottom-color: #F88421; }
.location .section-header p { color: rgba(255,255,255,0.75); }
.location .section-tag { background: #F88421; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.location-map { border: 3px solid #F88421; }
.location-map iframe { display: block; }
.map-directions-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #F88421;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: background var(--transition);
}
.map-directions-btn:hover { background: #d96e10; color: #fff; }
.location-points { display: flex; flex-direction: column; gap: 8px; }
.location-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 14px;
}
.loc-icon {
  width: 40px;
  height: 40px;
  background: #F88421;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 2px;
}
.loc-icon i { color: #fff; font-size: 16px; }
.loc-text h4 { font-size: 14px; color: #fff; font-weight: 600; margin-bottom: 2px; }
.loc-text span { font-size: 12px; color: rgba(255,255,255,0.65); }

/* ===== PAYMENT PLAN ===== */
.payment-plan { background: var(--bg-light); }
.plan-block { margin-bottom: 32px; }
.plan-block:last-of-type { margin-bottom: 0; }
.plan-header { margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid #00A85A; }
.payment-table-full { min-width: 1200px; }
.payment-table-full th,
.payment-table-full td { white-space: nowrap; text-align: center; }
.payment-table-full td:nth-child(2),
.payment-table-full td:nth-child(3),
.payment-table-full td:nth-child(4) { white-space: normal; text-align: left; }
.plan-header h3 { font-size: 16px; color: #1a1a1a; font-weight: 700; margin-bottom: 4px; }
.plan-header p { font-size: 13px; color: var(--text-light); }
.plan-table-wrap { overflow-x: auto; }
.payment-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #bbb;
  font-size: 14px;
}
.payment-table thead tr { background: #00A85A; }
.payment-table thead th {
  padding: 11px 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  border-right: 1px solid #008a4a;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.payment-table thead th:last-child { border-right: none; }
.payment-table tbody tr { border-bottom: 1px solid #ddd; }
.payment-table tbody tr:nth-child(even) { background: #f9f9f9; }
.payment-table tbody tr:hover { background: #eef7f2; }
.payment-table td { padding: 10px 16px; font-size: 13px; color: var(--text); border-right: 1px solid #e0e0e0; }
.payment-table td:last-child { border-right: none; }
.payment-table td.highlight { font-weight: 700; color: #00A85A; }
.payment-table tfoot tr { background: #f0f0f0; border-top: 2px solid #00A85A; }
.payment-table tfoot td { padding: 10px 16px; font-size: 13px; font-weight: 700; }
.plan-note {
  display: flex;
  gap: 10px;
  background: #eef7f2;
  border: 1px solid #b2dfc8;
  border-left: 4px solid #00A85A;
  padding: 12px 16px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.7;
}
.plan-note i { color: #00A85A; flex-shrink: 0; margin-top: 2px; }

/* ===== AMENITIES ===== */
.amenities { background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.amenities-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.amenity-card--wide { grid-column: span 3; }
.amenity-card:not(.amenity-card--wide) { grid-column: span 2; }
.amenity-card {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px 20px;
  text-align: left;
  overflow: hidden;
  background-image: var(--am-bg, none);
  background-size: cover;
  background-position: center;
  background-color: #1a2e1e;
  cursor: default;
}
.amenity-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 40%, rgba(0,0,0,0.3) 100%);
  z-index: 0;
  transition: background var(--transition);
}
.amenity-card:hover::before { background: linear-gradient(to top, rgba(0,100,50,0.82) 40%, rgba(0,0,0,0.35) 100%); }
.amenity-card h4 {
  position: relative;
  z-index: 1;
  font-size: 15px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 6px;
  border-left: 3px solid #F88421;
  padding-left: 10px;
}
.amenity-card p {
  position: relative;
  z-index: 1;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  padding-left: 13px;
}

/* ===== LAYOUT PLAN ===== */
.layout-plan { background: var(--bg-light); }
.layout-content { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: start; }
.layout-image { border: 2px solid #bbb; overflow: hidden; }
.layout-img-link { display: block; overflow: hidden; cursor: zoom-in; }
.layout-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: zoom-out;
}
.layout-lightbox.active { display: flex; }
.layout-lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 4px; box-shadow: 0 4px 32px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
}
.lightbox-close:hover { opacity: 1; }
.layout-img-full {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}
.layout-img-full:hover { transform: scale(1.02); }
.layout-placeholder {
  background: #00A85A;
  padding: 40px 24px;
  text-align: center;
  color: #fff;
}
.layout-placeholder i { font-size: 48px; color: rgba(255,255,255,0.25); margin-bottom: 16px; }
.layout-placeholder h3 { font-size: 20px; margin-bottom: 6px; font-weight: 700; }
.layout-placeholder p { color: rgba(255,255,255,0.65); margin-bottom: 24px; font-size: 13px; }
.layout-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
  background: rgba(0,0,0,0.15);
  padding: 12px;
}
.legend-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.85); }
.legend-color { width: 14px; height: 14px; flex-shrink: 0; border: 1px solid rgba(255,255,255,0.3); }
.legend-color.residential { background: #4ade80; }
.legend-color.commercial { background: #fb923c; }
.legend-color.park { background: #22d3ee; }
.legend-color.road { background: #94a3b8; }
.layout-details h3 {
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 16px;
  border-bottom: 2px solid #F88421;
  padding-bottom: 6px;
}
.layout-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dotted #ccc;
}
.layout-feature:last-child { border-bottom: none; }
.lf-icon {
  width: 36px;
  height: 36px;
  background: #F88421;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 2px;
}
.lf-icon i { color: #fff; font-size: 14px; }
.lf-text h4 { font-size: 14px; color: #1a1a1a; font-weight: 700; margin-bottom: 2px; }
.lf-text p { font-size: 12px; color: var(--text-light); }

/* ===== WHY US ===== */
.why-us { background: var(--bg-light); }
.why-us .section-header h2 { color: #1a1a1a; border-bottom-color: #F88421; }
.why-us .section-header p { color: var(--text-light); }
.why-us .section-tag { background: #F88421; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid #F88421;
  padding: 20px 18px;
}
.why-num {
  font-size: 28px;
  font-weight: 800;
  color: rgba(0,0,0,0.06);
  float: right;
  line-height: 1;
}
.why-card i { font-size: 26px; color: #F88421; margin-bottom: 12px; display: block; }
.why-card h4 { font-size: 15px; color: #1a1a1a; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* ===== CONTACT ===== */
.contact { background: var(--bg-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 32px; }
.contact-info { display: flex; flex-direction: column; gap: 10px; }
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid #00A85A;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-card i { font-size: 18px; color: #F88421; }
.contact-card h4 { font-size: 11px; color: var(--text-muted); text-transform: uppercase; font-weight: 700; letter-spacing: 0.5px; }
.contact-card a, .contact-card p { font-size: 14px; color: var(--text); font-weight: 600; }
.contact-card a:hover { color: #00A85A; }
.social-links {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid #F88421;
  padding: 14px 16px;
}
.social-links h4 { font-size: 11px; color: var(--text-muted); text-transform: uppercase; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 10px; }
.socials { display: flex; gap: 8px; }
.socials a {
  width: 36px;
  height: 36px;
  background: #00A85A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  border-radius: 2px;
}
.socials a:hover { background: #F88421; }

/* ===== FORMS ===== */
.contact-form-wrap, .reg-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid #00A85A;
  padding: 24px;
}
.contact-form h3, .reg-form h3 {
  font-size: 17px;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid #eee;
  padding-bottom: 12px;
}
.contact-form h3 i, .reg-form h3 i { color: #F88421; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #00A85A;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #bbb;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  transition: border var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #00A85A;
  box-shadow: 0 0 0 2px rgba(0,168,90,0.12);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #cc0000; }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select { cursor: pointer; }
.checkbox-group { display: flex; align-items: flex-start; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #00A85A;
  flex-shrink: 0;
}
.checkbox-label a { color: #00A85A; font-weight: 600; text-decoration: underline; }

/* ===== FOOTER ===== */
.footer { background: #005a30; color: #fff; border-top: 4px solid #F88421; }
.footer-main { padding: 40px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1fr 1.2fr; gap: 32px; }
.footer-brand .footer-logo { display: flex; flex-direction: column; margin-bottom: 12px; }
.footer-brand .logo-main { font-size: 18px; font-weight: 700; color: #fff; }
.footer-brand .logo-sub { font-size: 10px; color: #ffd080; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 10px; }
.rera-text { font-size: 11px !important; color: rgba(255,255,255,0.4) !important; }
.footer h4 {
  font-size: 12px;
  font-weight: 700;
  color: #ffd080;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 6px;
}
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '›'; color: #F88421; font-weight: 700; }
.footer-links a:hover, .footer-contact a:hover { color: #ffd080; }
.footer-contact li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 6px; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact i { color: #F88421; flex-shrink: 0; margin-top: 3px; }
.footer-legal ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.65); }
.footer-legal a::before { content: '› '; color: #F88421; }
.footer-legal a:hover { color: #ffd080; }
.footer-loan h4 { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.loan-logos { display: flex; flex-direction: column; gap: 10px; }
.loan-logo { height: 44px; width: auto; max-width: 140px; object-fit: contain; background: #fff; border-radius: 4px; padding: 6px 10px; }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  border-radius: 2px;
}
.footer-socials a:hover { background: #F88421; color: #fff; border-color: #F88421; }
.footer-bottom {
  background: #004a28;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 14px 0;
  text-align: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.8; }
.footer-bottom p strong { color: rgba(255,255,255,0.75); font-weight: 700; }
.footer-bottom a { color: #ffd080; }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  right: max(20px, env(safe-area-inset-right, 20px));
  width: 44px;
  height: 44px;
  background: #F88421;
  color: #fff;
  border: none;
  border-radius: 2px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background var(--transition);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: #d96e10; }

/* ===== RELATION TOGGLE (Registration form) ===== */
.relation-toggle { display: flex; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; }
.radio-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  cursor: pointer;
  padding: 5px 12px;
  border: 1px solid #bbb;
  border-radius: 2px;
  color: var(--text);
  transition: all var(--transition);
  user-select: none;
}
.radio-pill input[type="radio"] { accent-color: #00A85A; width: 14px; height: 14px; flex-shrink: 0; }
.radio-pill:has(input:checked) { border-color: #00A85A; background: #eef7f2; color: #00A85A; font-weight: 600; }

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float, .call-float {
  position: fixed;
  width: 52px;
  height: 52px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: opacity var(--transition);
}
.whatsapp-float {
  bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  left: max(20px, env(safe-area-inset-left, 20px));
  background: #25d366;
  color: #fff;
}
.whatsapp-float:hover { opacity: 0.88; color: #fff; }
.call-float {
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  left: max(20px, env(safe-area-inset-left, 20px));
  background: #00A85A;
  color: #fff;
}
.call-float:hover { opacity: 0.88; color: #fff; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #00A85A;
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius);
  border-left: 4px solid #F88421;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  transition: transform 0.35s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast i { color: #90ee90; font-size: 16px; }
.toast.error { border-left-color: #cc0000; }
.toast.error i { color: #ff9999; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: #fff;
  border-top: 5px solid #00A85A;
  padding: 36px 32px;
  max-width: 440px;
  width: 92%;
  text-align: center;
  position: relative;
  transform: scale(0.95);
  transition: transform var(--transition);
}
.modal-overlay.active .modal { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #f0f0f0;
  border: 1px solid #ccc;
  font-size: 16px;
  cursor: pointer;
  color: #555;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}
.modal-close:hover { background: #ddd; }
.modal-icon { font-size: 48px; margin-bottom: 16px; }
.modal-icon.success i { color: #00A85A; }
.modal-icon.error i { color: #cc0000; }
.modal h3 { font-size: 22px; color: #1a1a1a; margin-bottom: 10px; font-weight: 700; }
.modal p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 24px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .layout-content { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-card--wide { grid-column: span 1; }
  .amenity-card:not(.amenity-card--wide) { grid-column: span 1; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { gap: 20px; }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    background: #00A85A;
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav ul { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; gap: 0; }
  .nav-link {
    font-size: 16px;
    padding: 16px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    text-align: center;
  }
  .nav-link:first-child { border-left: none; border-top: 1px solid rgba(255,255,255,0.15); }
  .btn-register { margin: 12px 0 0; border-radius: var(--radius); }
  .hamburger { display: flex; z-index: 1001; }



  .quick-form { flex-direction: column; align-items: stretch; }
  .quick-form-title { border-right: none; border-bottom: 2px solid #F88421; padding-right: 0; padding-bottom: 8px; }
  .quick-form-fields { flex-direction: column; }
  .quick-form-fields input { min-width: unset; }
  .quick-form-fields .btn { width: 100%; justify-content: center; }

  .about-grid { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr 1fr; }

  .plot-cards { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }

  .location-grid { grid-template-columns: 1fr; gap: 16px; }
  .location-map iframe { height: 260px; }

  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .social-links { grid-column: 1 / -1; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .whatsapp-float { bottom: 78px; left: 14px; right: auto; width: 48px; height: 48px; font-size: 20px; }
  .call-float { bottom: 18px; left: 14px; right: auto; width: 48px; height: 48px; font-size: 18px; }
  .scroll-top { bottom: 20px; right: 14px; width: 40px; height: 40px; font-size: 14px; }
}

@media (max-width: 576px) {
  .section { padding: 36px 0; }
  .container { padding: 0 12px; }

  .logo-main { font-size: 14px; }
  .logo-sub { display: none; }



  .about-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; gap: 10px; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .contact-form-wrap, .reg-form-wrap { padding: 16px 14px; }
  .plot-cards { max-width: 100%; }

  .payment-table th, .payment-table td { padding: 8px 10px; font-size: 12px; }
}

@media (max-width: 420px) {
  .section { padding: 28px 0; }
  .logo-main { font-size: 13px; }
  .section-header h2 { font-size: 18px; }
  .amenities-grid { grid-template-columns: 1fr; gap: 0; }

  .btn { padding: 8px 16px; font-size: 13px; }
  .modal { padding: 24px 16px; }
  .modal h3 { font-size: 18px; }
}

@media (hover: none) and (pointer: coarse) {
  .btn { min-height: 44px; }
  .nav-link { min-height: 48px; display: flex; align-items: center; justify-content: center; }
}
