/* ── Variables ── */
:root {
  --green: #2d6a2d;
  --green-dark: #1e4a1e;
  --green-light: #4a9e4a;
  --orange: #e87722;
  --orange-dark: #c5641a;
  --brown: #5c3317;
  --cream: #f5eed8;
  --cream-dark: #ede3c5;
  --white: #ffffff;
  --dark: #1a1a1a;
  --gray: #555;
  --light-gray: #f8f8f8;
  --border: #e0e0e0;

  --font-en: 'Poppins', sans-serif;
  --font-gu: 'Noto Sans Gujarati', sans-serif;

  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 10px 36px rgba(0,0,0,0.14);
  --radius: 10px;
  --radius-lg: 18px;
  --transition: all 0.3s ease;
  --max-w: 1200px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-en); color: var(--dark); background: #fff; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: var(--font-en); cursor: pointer; }
input, select, textarea { font-family: var(--font-en); }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--brown);
  line-height: 1.25;
  margin-bottom: 10px;
}
.section-header .section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--orange);
  margin: 14px auto 0;
  border-radius: 3px;
}
.section-subtitle { font-size: 1rem; color: var(--gray); max-width: 600px; margin: 0 auto; }
.section-left-title::after { margin-left: 0 !important; }

/* ── Utilities ── */
.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-orange { color: var(--orange); }
.text-brown { color: var(--brown); }
.bg-cream { background: var(--cream); }
.bg-green { background: var(--green); }
.bg-dark { background: #111; }
.bg-light { background: var(--light-gray); }
.fw-bold { font-weight: 700; }
.mb-0 { margin-bottom: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(232,119,34,.35); }

.btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-secondary:hover { background: #fff; color: var(--green); border-color: #fff; transform: translateY(-2px); }

.btn-green { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(45,106,45,.3); }

.btn-outline-green { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-green:hover { background: var(--green); color: #fff; transform: translateY(-2px); }

.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline-white:hover { background: #fff; color: var(--green); }

.btn-whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 6px 22px rgba(37,211,102,.35); }

.btn-lg { padding: 16px 38px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn-full { width: 100%; }

/* ── Badge ── */
.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.badge-ongoing { background: var(--green); color: #fff; }
.badge-completed { background: #4caf50; color: #fff; }
.badge-upcoming { background: #2196f3; color: #fff; }
.badge-residential { background: rgba(45,106,45,.12); color: var(--green); }
.badge-commercial { background: rgba(232,119,34,.12); color: var(--orange); }

/* ────────────────────────────
   HEADER / NAV
──────────────────────────── */
.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}
.header.scrolled {
  background: #fff;
  box-shadow: 0 2px 24px rgba(0,0,0,.09);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  transition: var(--transition);
}
.header.scrolled .nav-logo { color: var(--brown); }
.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.nav-logo-icon svg { width: 26px; height: 26px; }
.logo-name { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-size: 1.1rem; font-weight: 800; }
.logo-sub { font-size: 0.65rem; font-weight: 500; letter-spacing: 1.5px; opacity: .8; text-transform: uppercase; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  padding: 8px 13px;
  color: rgba(255,255,255,.9);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 6px;
  transition: var(--transition);
}
.header.scrolled .nav-link { color: var(--dark); }
.nav-link:hover { color: var(--orange); background: rgba(255,255,255,.12); }
.header.scrolled .nav-link:hover { background: rgba(45,106,45,.07); }
.nav-link.active { color: var(--orange); font-weight: 600; }
.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  border-radius: 50px;
  padding: 9px 22px;
  font-weight: 700;
  margin-left: 6px;
}
.nav-cta:hover { background: var(--orange-dark) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.header.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ────────────────────────────
   HERO
──────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide-1 { background: linear-gradient(135deg, #0d2e0d 0%, #1e4a1e 40%, #2d6a2d 100%); }
.hero-slide-2 { background: linear-gradient(135deg, #1a0a00 0%, #3d1a00 40%, #2d6a2d 100%); }
.hero-slide-3 { background: linear-gradient(135deg, #0d2020 0%, #1a3a1a 40%, #35723d 100%); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 60%, rgba(0,0,0,.05) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 130px 24px 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,119,34,.2);
  border: 1px solid rgba(232,119,34,.45);
  color: #ffa557;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 18px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-title-gu {
  font-family: var(--font-gu);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 8px;
  line-height: 1.5;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-title .highlight { color: var(--orange); }

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  max-width: 500px;
  margin-bottom: 34px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-phones {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.hero-phone:hover { color: var(--orange); }
.hero-phone-icon {
  width: 32px;
  height: 32px;
  background: rgba(232,119,34,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-phone-icon svg { width: 15px; height: 15px; fill: var(--orange); }

.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-image-wrap img {
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  max-height: 520px;
  object-fit: cover;
  width: 100%;
}
.hero-image-badge {
  position: absolute;
  bottom: 28px;
  left: -18px;
  background: var(--orange);
  color: #fff;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(232,119,34,.4);
  text-align: center;
}
.hero-image-badge .big { font-size: 1.5rem; line-height: 1; }

/* Slider dots */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.hero-dot.active { background: var(--orange); width: 26px; border-radius: 4px; }

/* ────────────────────────────
   STATS BAR
──────────────────────────── */
.stats-bar { background: var(--green); padding: 36px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-divider {
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-divider:last-child { border-right: none; }
.stat-number {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,.78);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .8px;
}

/* ────────────────────────────
   SECTION: FEATURED PROJECT
──────────────────────────── */
.featured-project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.featured-project-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  position: relative;
}
.featured-project-img img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  background: var(--cream);
  transition: transform .5s ease;
}
.featured-project-img:hover img { transform: scale(1.03); }
.project-status-badge {
  position: absolute;
  top: 18px;
  left: 18px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 20px;
}
.project-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--gray);
  font-weight: 500;
}
.project-meta-item svg { width: 16px; height: 16px; fill: var(--green); flex-shrink: 0; }

.project-tagline-gu {
  font-family: var(--font-gu);
  font-size: 1.15rem;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.5;
}

.project-usps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 22px 0 28px;
}
.project-usp {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--dark);
}
.usp-check {
  width: 20px;
  height: 20px;
  background: rgba(45,106,45,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.usp-check svg { width: 11px; height: 11px; fill: var(--green); }

/* ────────────────────────────
   WHY CHOOSE US
──────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--green); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 72px;
  height: 72px;
  background: rgba(45,106,45,.09);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 2rem;
  transition: var(--transition);
}
.feature-card:hover .feature-icon { background: var(--green); }
.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 8px;
}
.feature-desc { font-size: 0.86rem; color: var(--gray); line-height: 1.65; }

/* ────────────────────────────
   TESTIMONIALS
──────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.testimonial-quote {
  font-size: 3.5rem;
  color: rgba(45,106,45,.12);
  font-family: Georgia, serif;
  line-height: .8;
  margin-bottom: 10px;
}
.testimonial-stars { color: #f5a623; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 22px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--dark); font-size: 0.92rem; }
.testimonial-city { font-size: 0.78rem; color: var(--gray); }

/* ────────────────────────────
   CTA BANNER
──────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--green-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.82); font-size: 1.05rem; margin-bottom: 32px; }
.cta-phones {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  transition: var(--transition);
}
.cta-phone:hover { color: var(--orange); }
.cta-phone svg { width: 20px; height: 20px; fill: var(--orange); }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ────────────────────────────
   INQUIRY SECTION
──────────────────────────── */
.inquiry-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.inquiry-info h2 { font-size: 1.8rem; font-weight: 800; color: var(--brown); margin-bottom: 14px; }
.inquiry-info p { font-size: 0.95rem; color: var(--gray); line-height: 1.8; margin-bottom: 28px; }
.inquiry-contact-list { display: flex; flex-direction: column; gap: 14px; }
.inquiry-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 500;
}
.inquiry-contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(45,106,45,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.inquiry-contact-icon svg { width: 18px; height: 18px; fill: var(--green); }

/* ────────────────────────────
   FORMS
──────────────────────────── */
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-hover);
  border: 1.5px solid var(--border);
}
.form-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 6px;
}
.form-card-subtitle { font-size: 0.85rem; color: var(--gray); margin-bottom: 26px; }

.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-label .req { color: var(--orange); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--dark);
  background: #fff;
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-control:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,106,45,.1); }
.form-control::placeholder { color: #bbb; }
.form-control.is-invalid { border-color: #e53935; }
.form-error { font-size: 0.78rem; color: #e53935; margin-top: 4px; display: none; }
.form-control.is-invalid + .form-error { display: block; }
select.form-control { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23555' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
textarea.form-control { resize: vertical; min-height: 110px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.75rem; color: var(--gray); text-align: center; margin-top: 12px; }

/* ────────────────────────────
   FOOTER
──────────────────────────── */
.footer { background: #111; color: rgba(255,255,255,.75); }
.footer-main { padding: 64px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.8fr;
  gap: 44px;
}
.footer-logo { margin-bottom: 16px; }
.footer-logo .nav-logo { color: #fff; }
.footer-tagline {
  font-size: 0.86rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: 22px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,.1);
}
.social-btn:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-3px); }
.social-btn svg { width: 17px; height: 17px; fill: currentColor; }

.footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.58);
  font-size: 0.86rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before { content: '›'; color: var(--orange); font-size: 1rem; }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.86rem;
  color: rgba(255,255,255,.62);
  line-height: 1.6;
}
.footer-contact-icon {
  width: 34px;
  height: 34px;
  background: rgba(232,119,34,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-icon svg { width: 16px; height: 16px; fill: var(--orange); }
.footer-contact-item a { color: var(--orange); }
.footer-contact-item a:hover { text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,.38);
}
.footer-bottom a { color: var(--orange); }

/* ────────────────────────────
   WHATSAPP FLOAT
──────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.45);
  transition: var(--transition);
  animation: wapulse 2.8s infinite;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,.55); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes wapulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ────────────────────────────
   PAGE HERO (inner pages)
──────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 70%, #3a7a3a 100%);
  padding: 130px 0 60px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.page-hero p { font-size: 1rem; color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  margin-top: 18px;
  color: rgba(255,255,255,.6);
}
.breadcrumb a { color: var(--orange); }
.breadcrumb-sep { opacity: .5; }

/* ────────────────────────────
   PROJECT DETAIL PAGE
──────────────────────────── */
.project-hero {
  background: var(--green-dark);
  padding: 110px 0 0;
  position: relative;
  overflow: hidden;
}
.project-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 24px 0;
}
.project-hero-text { padding-bottom: 48px; color: #fff; }
.project-hero-text .badge { margin-bottom: 14px; }
.project-hero-text h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.project-hero-text .gu-title {
  font-family: var(--font-gu);
  font-size: 1.2rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 16px;
}
.project-hero-text p { color: rgba(255,255,255,.78); font-size: 0.95rem; line-height: 1.75; margin-bottom: 28px; }
.project-hero-specs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.spec-pill {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.82rem;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.spec-pill svg { width: 14px; height: 14px; fill: var(--orange); }

.project-hero-img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.project-hero-img img {
  max-height: 440px;
  object-fit: contain;
  border-radius: 18px 18px 0 0;
}

/* Amenities */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.amenity-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: #fff;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.amenity-card:hover { border-color: var(--green); background: rgba(45,106,45,.04); transform: translateX(4px); }
.amenity-emoji { font-size: 1.4rem; flex-shrink: 0; }
.amenity-name { font-size: 0.85rem; font-weight: 600; color: var(--dark); line-height: 1.3; }

/* Landmarks */
.landmarks-list { display: flex; flex-direction: column; gap: 12px; }
.landmark-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  font-size: 0.88rem;
  color: var(--dark);
  transition: var(--transition);
}
.landmark-item:hover { border-color: var(--green); }
.landmark-icon { font-size: 1.3rem; flex-shrink: 0; }
.landmark-name { font-weight: 600; }
.landmark-dist { margin-left: auto; font-size: 0.78rem; color: var(--green); font-weight: 700; white-space: nowrap; }

/* Layout Map */
.layout-section { background: var(--cream); }
.layout-map-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 2px solid var(--green);
}
.layout-legend {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
}
.legend-dot {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  flex-shrink: 0;
}
.legend-available { background: #4caf50; }
.legend-booked { background: #f44336; }
.legend-commercial { background: var(--brown); }
.layout-map-img {
  width: 100%;
  border-radius: var(--radius);
  cursor: zoom-in;
  transition: var(--transition);
}
.layout-map-img:hover { transform: scale(1.01); }

/* ────────────────────────────
   GALLERY
──────────────────────────── */
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--gray);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--green);
  color: var(--green);
  background: rgba(45,106,45,.06);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--light-gray);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45,106,45,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay svg { width: 44px; height: 44px; fill: #fff; }

/* ────────────────────────────
   LIGHTBOX
──────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  transition: var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,.28); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ────────────────────────────
   MODAL (download gating)
──────────────────────────── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 9998;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(3px);
}
.modal.open { display: flex; }
.modal-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 440px;
  width: 100%;
  position: relative;
  animation: modalIn .3s ease;
}
@keyframes modalIn { from { opacity:0; transform: scale(.9) translateY(20px); } }
.modal-icon { font-size: 2.5rem; margin-bottom: 14px; text-align: center; }
.modal-title { font-size: 1.35rem; font-weight: 800; color: var(--brown); margin-bottom: 8px; text-align: center; }
.modal-desc { font-size: 0.88rem; color: var(--gray); text-align: center; margin-bottom: 26px; line-height: 1.65; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.modal-close:hover { background: var(--light-gray); color: var(--dark); }

/* ────────────────────────────
   DOWNLOADS
──────────────────────────── */
.downloads-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.download-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}
.download-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-3px); }
.download-icon {
  width: 60px;
  height: 60px;
  background: rgba(232,119,34,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.download-info { flex: 1; }
.download-name { font-weight: 700; color: var(--dark); margin-bottom: 4px; font-size: 0.96rem; }
.download-desc { font-size: 0.8rem; color: var(--gray); }

/* ────────────────────────────
   CONTACT
──────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 52px;
  height: 52px;
  background: rgba(45,106,45,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}
.contact-title { font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.contact-detail { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }
.contact-detail a { color: var(--green); font-weight: 600; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  height: 380px;
}
.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* ────────────────────────────
   ABOUT PAGE
──────────────────────────── */
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-hover); }
.about-img img { width: 100%; height: 440px; object-fit: contain; background: var(--cream); }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--green);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.value-card:hover { transform: translateX(4px); }
.value-title { font-weight: 800; color: var(--brown); margin-bottom: 6px; }
.value-desc { font-size: 0.86rem; color: var(--gray); line-height: 1.65; }

.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.approach-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.approach-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--green); }
.approach-step {
  width: 44px;
  height: 44px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 16px;
}
.approach-title { font-weight: 700; color: var(--brown); margin-bottom: 8px; }
.approach-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.65; }

/* ────────────────────────────
   SCROLL REVEAL
──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ────────────────────────────
   TOAST
──────────────────────────── */
.toast {
  position: fixed;
  bottom: 104px;
  right: 28px;
  z-index: 9999;
  background: var(--green);
  color: #fff;
  padding: 15px 22px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
  max-width: 320px;
  animation: toastIn .35s ease;
}
@keyframes toastIn { from { opacity:0; transform: translateY(16px); } }

/* ────────────────────────────
   RESPONSIVE
──────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-container { gap: 32px; }
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    box-shadow: 0 10px 36px rgba(0,0,0,.14);
    gap: 4px;
    border-top: 2px solid var(--cream);
  }
  .nav-links.open { display: flex; }
  .nav-link { color: var(--dark) !important; padding: 12px 16px; border-radius: 8px; }
  .nav-link:hover { background: var(--cream) !important; color: var(--green) !important; }
  .nav-cta { text-align: center; margin-left: 0; margin-top: 8px; }

  .hero-container { grid-template-columns: 1fr; padding-top: 110px; }
  .hero-image-wrap { display: none; }
  .featured-project { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; gap: 36px; }
  .inquiry-section-grid { grid-template-columns: 1fr; gap: 36px; }
  .downloads-grid { grid-template-columns: 1fr; }
  .project-hero-inner { grid-template-columns: 1fr; }
  .project-hero-img { display: none; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; text-align: center; }
  .cta-phones { flex-direction: column; align-items: center; gap: 14px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .whatsapp-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .project-usps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
}
