/* ============================================================
   JHARKHAND PROPERTIES — MAIN STYLESHEET
   Rebuilt to pixel-match the reference design image.
   ============================================================ */

/* ── 1. GOOGLE FONTS ────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600&family=Mukta:wght@400;500;600;700;800&family=Hind:wght@400;500;600;700&display=swap');

/* ── 2. DESIGN TOKENS ───────────────────────────────────────── */
:root {
  --accent:      #7A3515;
  --gold:        #D7A33D;
  --green-soft:  #F2F8F3;
  --red:         #0B6B35;
  --red-dark:    #064A25;
  --white:       #FFFFFF;
  --heading:     #111111;
  --para:        #444444;
  --bg:          #F8F8F8;
  --border:      #E8E8E8;

  --font-head:   'Poppins', 'Mukta', sans-serif;
  --font-body:   'Inter', 'Hind', sans-serif;

  --top-h:       45px;
  --nav-h:       80px;
  --hero-h:      680px;

  --container-w: 90%;
  --max-w:       1380px;

  --shadow-red:  0 8px 28px rgba(11,107,53,0.28);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-nav:  0 2px 20px rgba(0,0,0,0.09);

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 3. RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--para); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── 4. UTILITIES ───────────────────────────────────────────── */
.container { width: var(--container-w); max-width: var(--max-w); margin: 0 auto; }
.sr-only   { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-green { color: var(--red); font-weight: 700; }

/* ============================================================
   5. TOP HEADER BAR
   ============================================================ */
.top-header {
  height: var(--top-h);
  background: var(--red);
  display: flex;
  align-items: center;
}

.top-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Left items */
.top-header__left {
  display: flex;
  align-items: center;
  gap: 0;
}

.top-info-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.95);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
  padding: 0 18px 0 0;
  transition: color 0.2s ease;
}

.top-info-item:first-child { padding-left: 0; }

/* Pipe divider between items */
.top-info-item + .top-info-item {
  border-left: 1px solid rgba(255,255,255,0.30);
  padding-left: 18px;
}

.top-info-item:hover { color: rgba(255,255,255,0.75); }

.top-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0.90;
}

/* Right social */
.top-header__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.follow-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.90);
  white-space: nowrap;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.30);
  background: rgba(255,255,255,0.10);
  transition: background 0.25s ease, transform 0.25s ease;
}

.social-icon:hover {
  background: rgba(255,255,255,0.25);
  transform: scale(1.12) translateY(-1px);
}

/* ============================================================
   6. MAIN NAVIGATION
   ============================================================ */
.main-nav {
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 500;
  transition: box-shadow 0.3s ease, height 0.3s ease;
}

/* Sticky state — JS adds .is-sticky to .site-header */
.site-header.is-sticky .main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 68px;
  box-shadow: var(--shadow-nav);
  z-index: 999;
  animation: slideDown 0.35s var(--ease) forwards;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* ── Logo ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border: 2px solid rgba(11,107,53,0.18);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(11,107,53,0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-logo:hover .logo-icon {
  transform: scale(1.04);
  box-shadow: 0 6px 18px rgba(11,107,53,0.22);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.logo-name--bold {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-transform: uppercase;
}

.logo-name--bold:last-child { color: var(--accent); }

.logo-tagline {
  font-family: var(--font-body), 'Noto Sans Devanagari', 'Mangal', 'Nirmala UI', sans-serif;
  font-size: 11.5px;
  font-weight: 400;
  color: #6b7c6f;
  letter-spacing: 0.02em;
  margin-top: 2px;
  line-height: 1.25;
}

/* ── Nav Links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--heading);
  padding: 8px 12px;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}

/* Animated underline */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover { color: var(--red); }
.nav-link:hover::after { transform: scaleX(1); }

/* Active state */
.nav-link.active { color: var(--red); }
.nav-link.active::after { transform: scaleX(1); }

/* Dropdown chevron */
.dropdown-arrow {
  display: flex;
  align-items: center;
  color: var(--para);
  transition: transform 0.25s ease;
}
.has-dropdown:hover .dropdown-arrow,
.has-dropdown:focus-within .dropdown-arrow {
  transform: rotate(180deg);
}

/* ── Dropdown Menu ── */
.has-dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 195px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 600;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--heading);
  transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
  border-left: 3px solid transparent;
}

.dropdown-link:hover {
  color: var(--red);
  background: rgba(11,107,53,0.04);
  padding-left: 22px;
  border-left-color: var(--red);
}

/* ── Enquire Now CTA ── */
.btn-enquire {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 20px 11px 24px;
  border-radius: 50px;           /* pill shape as in image */
  flex-shrink: 0;
  white-space: nowrap;
  box-shadow: var(--shadow-red);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-enquire:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(11,107,53,0.42);
}

/* Arrow inside a small white circle */
.btn-arrow-circle {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.btn-enquire:hover .btn-arrow-circle {
  background: rgba(255,255,255,0.30);
  transform: translateX(2px);
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.2s;
}
.hamburger:hover { background: var(--bg); }

.hamburger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--heading);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.hamburger.is-active .hamburger-line:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.is-active .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active .hamburger-line:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   7. HERO SECTION — Full-bleed bg image, text on left
   ============================================================ */
.hero-section {
  position: relative;
  min-height: var(--hero-h);
  width: 100%;
  /* Lush green land fallback gradient — matches the aerial land image palette */
  background-color: #4a7c3f;
  background-image:
    url('../images/hero/hero-bg.png'),
    linear-gradient(
      135deg,
      #2d6a2d 0%,
      #3d8b3d 20%,
      #5aab3f 38%,
      #6bbf4a 50%,
      #4a9e6b 65%,
      #3a8a5a 80%,
      #87CEEB 80%,
      #98D8F5 100%
    );
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/*
  White gradient overlay — covers left ~55%, fades to transparent right.
  This replicates the exact look in the reference image.
*/
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,1)   0%,
    rgba(255,255,255,0.97) 25%,
    rgba(255,255,255,0.88) 40%,
    rgba(255,255,255,0.55) 52%,
    rgba(255,255,255,0.15) 65%,
    rgba(255,255,255,0)   75%
  );
  z-index: 1;
  pointer-events: none;
}

/* ── Customer Badge — top-right ── */
.customer-badge {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 118px;
  height: 118px;
  background: var(--red);
  border: 4px solid var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  z-index: 4;
  box-shadow: 0 6px 28px rgba(11,107,53,0.40);
  animation: badgeFloat 3.2s ease-in-out infinite;
  text-align: center;
}

.customer-badge__icon { color: rgba(255,255,255,0.85); margin-bottom: 1px; }
.customer-badge__number {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}
.customer-badge__label {
  font-family: var(--font-body);
  font-size: 8.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.90);
  line-height: 1.25;
}

/* ── Location Pins (on image, right half) ── */
.land-markers {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.land-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: pinBounce 2s ease-in-out infinite;
}
.land-pin:nth-child(2) { animation-delay: 0.5s; }
.land-pin:nth-child(3) { animation-delay: 1.0s; }
.land-pin:nth-child(4) { animation-delay: 1.5s; }

/* The actual pin shape */
.land-pin__icon {
  width: 32px;
  height: 32px;
  background: var(--red);
  border: 3px solid var(--white);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 3px 12px rgba(11,107,53,0.55);
  position: relative;
}

/* White dot in center of pin */
.land-pin__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
}

.land-pin__shadow {
  width: 8px;
  height: 4px;
  background: rgba(0,0,0,0.25);
  border-radius: 50%;
  margin-top: 3px;
  animation: pinShadow 2s ease-in-out infinite;
}
.land-pin:nth-child(2) .land-pin__shadow { animation-delay: 0.5s; }
.land-pin:nth-child(3) .land-pin__shadow { animation-delay: 1.0s; }
.land-pin:nth-child(4) .land-pin__shadow { animation-delay: 1.5s; }

/* ── Hero content wrap ── */
.hero-content-wrap {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 60px 0 80px;   /* bottom pad gives room before search bar */
}

/* Left text zone — max 52% */
.hero-left {
  max-width: 52%;
}

/* ── Eyebrow ── */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.1s forwards;
}

.hero-eyebrow-text {
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.hero-eyebrow-bar {
  display: block;
  width: 36px;
  height: 2.5px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Main Heading ── */
.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.22s forwards;
}

.hero-heading .text-red {
  color: var(--red);
}

/* ── Paragraph ── */
.hero-para {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: #444;
  line-height: 1.72;
  margin-bottom: 28px;
  max-width: 460px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.36s forwards;
}

/* ── Feature Items — flat row ── */
.hero-features {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 34px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.50s forwards;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* Icon circle with light red bg */
.feature-item__icon {
  width: 40px;
  height: 40px;
  background: rgba(11,107,53,0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}

.feature-item__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding-top: 2px;
}

.feature-item__title {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.2;
}

.feature-item__sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: #777;
  line-height: 1.3;
}

/* ── CTA Buttons ── */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.64s forwards;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 8px;
  border: 2px solid var(--red);
  box-shadow: var(--shadow-red);
  transition: all 0.25s ease;
}

.hero-btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(11,107,53,0.42);
}

.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--red);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 8px;
  border: 2px solid var(--red);
  transition: all 0.25s ease;
}

.hero-btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-icon {
  display: flex;
  align-items: center;
  transition: transform 0.25s ease;
}

.hero-btn-primary:hover .btn-icon { transform: translateX(3px); }
.hero-btn-outline:hover .btn-icon { transform: rotate(-10deg) scale(1.1); }

/* ============================================================
   8. SEARCH BAR — white card, sits at bottom / outside hero
   ============================================================ */
.hero-search-wrap {
  position: relative;
  z-index: 10;
  margin-top: -36px;    /* floats up to partially overlap hero bottom */
  padding-bottom: 0;
}

.hero-search {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.13);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 0;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.8s forwards;
  border: 1px solid var(--border);
}

/* Vertical divider between fields */
.search-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 6px;
}

/* Each field */
.search-field {
  flex: 1;
  padding: 0 18px;
  min-width: 0;
}

.search-field:first-child { padding-left: 0; }

.search-field__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 5px;
  cursor: pointer;
}

.search-field__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.search-select-wrap { position: relative; }

.search-field__select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #888;
  padding: 0 28px 0 0;
  border: none;
  background: transparent;
  cursor: pointer;
  appearance: none;
  outline: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 16px;
}

.search-field__select:focus { color: var(--heading); }

/* Search Button */
.search-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: var(--shadow-red);
  transition: all 0.25s ease;
  margin-left: 14px;
}

.search-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(11,107,53,0.44);
}

.search-btn__icon { display: flex; align-items: center; }

/* Post-hero spacer — gives room between search bar and stats card */
.post-hero-spacer { height: 80px; }

/* ============================================================
   9. SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal="fade-up"]    { transform: translateY(28px); }
[data-reveal="fade-left"]  { transform: translateX(-28px); }
[data-reveal="fade-right"] { transform: translateX(28px); }
[data-reveal].revealed     { opacity: 1; transform: translate(0,0); }
[data-delay="100"] { transition-delay: 0.10s; }
[data-delay="200"] { transition-delay: 0.20s; }
[data-delay="300"] { transition-delay: 0.30s; }
[data-delay="400"] { transition-delay: 0.40s; }
[data-delay="500"] { transition-delay: 0.50s; }

/* ============================================================
   10. KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}

@keyframes pinShadow {
  0%, 100% { transform: scale(1);   opacity: 0.25; }
  50%       { transform: scale(1.4); opacity: 0.12; }
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0)   rotate(0deg); }
  40%       { transform: translateY(-7px) rotate(2deg); }
  70%       { transform: translateY(-3px) rotate(-2deg); }
}

@keyframes dashDraw {
  to { stroke-dashoffset: -40; }
}


/* ============================================================
   SECTION 1 — STATISTICS CARD
   ============================================================ */

/* Section wrapper — slight negative margin so card feels elevated */
.stats-section {
  position: relative;
  z-index: 20;
  margin-top: 0;
  padding: 0 0 60px;
}

/* The white floating card */
.stats-card {
  width: 100%;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  padding: 35px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  border: 1px solid rgba(236, 236, 236, 0.7);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.stats-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* Thin vertical divider between columns */
.stat-divider {
  width: 1px;
  height: 72px;
  background: #ECECEC;
  flex-shrink: 0;
}

/* Each stat column */
.stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  transition: transform 0.35s var(--ease);
}

.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { padding-right: 0; }

.stat-item:hover { transform: translateY(-3px); }

/* Circular icon background */
.stat-icon-wrap {
  width: 62px;
  height: 62px;
  min-width: 62px;
  background: #FFF4F4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.stat-item:hover .stat-icon-wrap {
  transform: rotate(8deg) scale(1.08);
  background: rgba(216, 0, 0, 0.12);
}

/* Text block */
.stat-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Large animated number */
.stat-number {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  transition: transform 0.35s var(--ease);
  display: block;
}

.stat-item:hover .stat-number {
  transform: scale(1.06);
}

.stat-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.3;
  display: block;
}

.stat-desc {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: #888;
  line-height: 1.3;
  display: block;
}


/* ============================================================
   SECTION 2 — WHY CHOOSE US
   ============================================================ */
.why-section {
  padding: 120px 0 100px;
  background: var(--white);
}

/* 2-column CSS grid: 48% | 52% */
.why-grid {
  display: grid;
  grid-template-columns: 48fr 52fr;
  gap: 60px;
  align-items: center;
}

/* ── Shared eyebrow style ── */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.eyebrow-text {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.eyebrow-bar {
  display: block;
  width: 32px;
  height: 2.5px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Left column ── */
.why-heading {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.22;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}

.why-para {
  font-family: var(--font-body);
  font-size: 15px;
  color: #666;
  line-height: 1.80;
  max-width: 480px;
  margin-bottom: 36px;
}

/* Features: 2×2 grid */
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  margin-bottom: 40px;
}

.why-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

/* 70×70 icon square */
.why-feature-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  background: #FFF4F4;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
  flex-shrink: 0;
}

.why-feature-item:hover .why-feature-icon {
  background: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.why-feature-body {
  padding-top: 4px;
}

.why-feature-title {
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--heading);
  display: block;
  margin-bottom: 5px;
}

.why-feature-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}

/* Know More CTA */
.btn-know-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--red);
  color: var(--red);
  background: transparent;
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 8px;
  transition: all 0.28s var(--ease);
  text-decoration: none;
}

.btn-know-more:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-know-more__icon {
  display: flex;
  align-items: center;
  transition: transform 0.28s ease;
}

.btn-know-more__arrow {
  display: flex;
  align-items: center;
  transition: transform 0.28s ease;
}

.btn-know-more:hover .btn-know-more__arrow {
  transform: translateX(4px);
}

/* ── Right column — Image card ── */
.why-right {
  position: relative;
}

.why-img-card {
  position: relative;
  border-radius: 24px;
  overflow: visible;   /* allow quote card to hang out */
  /* Fallback background when image is missing */
  background-color: #4a8c3f;
  background-image:
    linear-gradient(
      135deg,
      #2d6a2d 0%,
      #3d8b3d 25%,
      #5aab3f 45%,
      #6bbf4a 60%,
      #4a9e6b 80%,
      #87CEEB 80%,
      #b0e0f0 100%
    );
}

/* Main landscape image */
.why-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  transition: transform 0.6s var(--ease);
  /* Hide broken-image icon; card bg shows through */
  color: transparent;
  background: transparent;
}

/* Clip the img itself, NOT the whole card (so quote card isn't clipped) */
.why-img {
  clip-path: inset(0 round 24px);
}

.why-img-card:hover .why-img {
  transform: scale(1.03);
}

/* Decorative dot grid behind the red card */
.why-dots {
  position: absolute;
  bottom: -12px;
  right: -12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  z-index: 1;
  pointer-events: none;
}

.why-dots span {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.18;
  display: block;
}

/* Floating red quote card */
.why-quote-card {
  position: absolute;
  bottom: 32px;
  right: -12px;
  width: 300px;
  background: var(--red);
  border-radius: 28px;
  padding: 32px 30px 28px;
  box-shadow: 0 20px 60px rgba(216, 0, 0, 0.38), 0 4px 20px rgba(0,0,0,0.15);
  z-index: 5;
  animation: cardFloat 4s ease-in-out infinite;
}

.why-quote-mark {
  display: flex;
  margin-bottom: 14px;
  opacity: 0.80;
}

.why-quote-text {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 18px;
}

.why-quote-text strong {
  font-weight: 800;
}

/* Thin white divider */
.why-quote-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.30);
  margin-bottom: 18px;
  border-radius: 1px;
}

/* Checklist */
.why-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.why-checklist__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.94);
}

.why-check-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

/* Float animation for quote card */
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}


/* ============================================================
   SECTION 3 — POPULAR LOCALITIES SLIDER
   ============================================================ */
.localities-section {
  padding: 80px 0 90px;
  background: var(--bg);
}

/* Header row: heading left, button right */
.localities-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 16px;
  flex-wrap: wrap;
}

.localities-heading-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.localities-heading {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.localities-heading-bar {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

/* "View All" outlined button */
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--red);
  color: var(--red);
  background: transparent;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  flex-shrink: 0;
}

.btn-view-all:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-view-all__arrow {
  display: flex;
  align-items: center;
  transition: transform 0.25s ease;
}

.btn-view-all:hover .btn-view-all__arrow {
  transform: translateX(4px);
}

/* ── Slider layout ── */
.localities-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Prev / Next round buttons */
.slider-btn {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading);
  box-shadow: 0 2px 12px rgba(0,0,0,0.09);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  flex-shrink: 0;
  z-index: 2;
}

.slider-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
  transform: scale(1.08);
}

.slider-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

/* Slider viewport — clips overflow */
.localities-slider {
  flex: 1;
  overflow: hidden;
}

/* Moving track */
.localities-track {
  display: flex;
  gap: 20px;
  transition: transform 0.42s var(--ease);
  will-change: transform;
}

/* ── Individual Locality Card ── */
.locality-card {
  flex: 0 0 calc((100% - 80px) / 5); /* 5 visible on desktop */
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.30s var(--ease), box-shadow 0.30s var(--ease);
  cursor: pointer;
}

.locality-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}

/* Image container */
.locality-card__img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  position: relative;
  /* Fallback gradient when image is missing */
  background: linear-gradient(135deg, #3d8b3d 0%, #5aab3f 50%, #87CEEB 100%);
}

.locality-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
  /* Hide broken-image icon; background of parent shows through */
  color: transparent;
  background: transparent;
}

.locality-card:hover .locality-card__img {
  transform: scale(1.07);
}

/* Card content */
.locality-card__body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.locality-card__name-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.locality-pin-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.locality-card__name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
}

.locality-card__type {
  font-family: var(--font-body);
  font-size: 12px;
  color: #888;
  line-height: 1.4;
}

/* Explore link */
.locality-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  margin-top: 4px;
  transition: gap 0.22s ease;
}

.locality-card__link:hover {
  gap: 9px;
}

.locality-link-arrow {
  display: inline-block;
  transition: transform 0.22s ease;
}

.locality-card__link:hover .locality-link-arrow {
  transform: translateX(4px);
}


/* ============================================================
   SECTION 4 — FEATURED PROPERTIES
   ============================================================ */
.featured-section {
  padding: 120px 0;
  background: var(--bg);
}

/* 28% | 72% two-column grid */
.featured-grid {
  display: grid;
  grid-template-columns: 28fr 72fr;
  gap: 0 50px;
  align-items: start;
}

/* ── Left sticky column ── */
.featured-left {
  position: sticky;
  top: 100px;
}

.featured-heading {
  font-family: var(--font-head);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.featured-para {
  font-family: var(--font-body);
  font-size: 15px;
  color: #666;
  line-height: 1.80;
  margin-bottom: 32px;
  max-width: 280px;
}

/* "View All Properties" outlined button */
.btn-view-props {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 2px solid var(--red);
  color: var(--red);
  background: transparent;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 8px;
  transition: all 0.28s var(--ease);
  text-decoration: none;
}

.btn-view-props:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-arrow-icon {
  display: flex;
  align-items: center;
  transition: transform 0.25s ease;
}

.btn-view-props:hover .btn-arrow-icon { transform: translateX(4px); }

/* ── Right: slider container ── */
.featured-right { min-width: 0; }

.prop-slider-wrap {
  position: relative;
}

/* Viewport clips overflow */
.prop-slider {
  overflow: hidden;
  border-radius: 8px;
}

/* Sliding track */
.prop-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s var(--ease);
  will-change: transform;
}

/* Floating nav buttons */
.prop-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s var(--ease);
}

.prop-slider-btn--prev { left:  -10px; }
.prop-slider-btn--next { right: -10px; }

.prop-slider-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.prop-slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: translateY(-50%);
}

/* ── Property Card ── */
.prop-card {
  flex: 0 0 calc((100% - 60px) / 4); /* 4 visible on desktop */
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
}

.prop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.14);
}

/* Card image area */
.prop-card__img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(135deg, #3d8b3d 0%, #5aab3f 50%, #87CEEB 100%);
}

.prop-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease);
  color: transparent;
  background: transparent;
}

.prop-card:hover .prop-card__img { transform: scale(1.07); }

/* FEATURED badge — top left */
.prop-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 2;
}

/* Favourite heart button — top right */
.prop-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 2;
  cursor: pointer;
  border: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.prop-fav:hover,
.prop-fav[aria-pressed="true"] {
  color: var(--red);
  transform: scale(1.12);
}

/* Card body */
.prop-card__body {
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Title + price row */
.prop-card__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.prop-card__title {
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.3;
  flex: 1;
}

.prop-card__price-wrap {
  text-align: right;
  flex-shrink: 0;
}

.prop-card__price {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  display: block;
  line-height: 1.2;
}

.prop-card__per {
  font-family: var(--font-body);
  font-size: 10.5px;
  color: #999;
  display: block;
  line-height: 1.2;
}

/* Location row */
.prop-card__location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: #777;
}

/* Features row: 3 equal columns */
.prop-card__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.prop-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 11px;
  color: #666;
  text-align: center;
}

/* Full-width view details button */
.prop-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
  margin-top: 2px;
}

.prop-card__btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.prop-card__btn svg {
  transition: transform 0.25s ease;
}

.prop-card__btn:hover svg { transform: translateX(3px); }


/* ============================================================
   SECTION 5 — OUR SERVICES
   ============================================================ */
.services-section {
  padding: 120px 0;
  background: var(--white);
}

/* Centered eyebrow */
.section-eyebrow--center {
  justify-content: center;
}

/* Centered heading block */
.section-center-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 64px;
}

.services-heading {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}

.services-intro {
  font-family: var(--font-body);
  font-size: 15px;
  color: #666;
  line-height: 1.80;
  max-width: 700px;
  margin: 0 auto;
}

/* 6-column grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

/* Service Card */
.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 22px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-top-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
  border-top-color: var(--red);
}

/* 80×80 icon circle */
.service-card__icon-wrap {
  width: 72px;
  height: 72px;
  background: #FFF5F5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease, transform 0.35s ease;
}

.service-card:hover .service-card__icon-wrap {
  background: var(--red);
  color: var(--white);
  transform: rotate(8deg) scale(1.06);
}

.service-card__title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.35;
}

.service-card__desc {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: #777;
  line-height: 1.65;
  flex: 1;
}

/* Animated bottom accent bar */
.service-card__bar {
  display: block;
  height: 3px;
  width: 28px;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.35s var(--ease);
  margin-top: auto;
}

.service-card:hover .service-card__bar { width: 52px; }


/* ============================================================
   SECTION 6 — CTA BANNER
   ============================================================ */
.cta-section {
  padding: 40px 0 70px;
  background: var(--bg);
}

/* Banner box */
.cta-banner {
  background: var(--red);
  border-radius: 24px;
  overflow: hidden;
  min-height: 120px;
  padding: 32px 48px;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 36px;
  position: relative;
}

/* Dot pattern — left */
.cta-dots {
  position: absolute;
  top: 0; bottom: 0;
  width: 220px;
  opacity: 0.10;
  background-image: radial-gradient(circle, rgba(255,255,255,0.9) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  pointer-events: none;
}

.cta-dots--left  { left: 0; }
.cta-dots--right { right: 0; background-position: right; }

/* LEFT: pulsing phone circle */
.cta-icon-col {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-phone-circle {
  position: relative;
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pulse rings */
.cta-phone-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35);
  animation: ctaPulse 2.2s ease-out infinite;
}

.cta-phone-pulse--2 {
  animation-delay: 1.1s;
}

@keyframes ctaPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.85); opacity: 0; }
}

/* Inner white circle with red phone */
.cta-phone-inner {
  width: 66px;
  height: 66px;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* CENTER: text */
.cta-center-col { min-width: 0; }

.cta-heading {
  font-family: var(--font-head);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 6px;
}

.cta-para {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* RIGHT: phone box + enquire button */
.cta-right-col {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* White phone number pill */
.cta-phone-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--heading);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.cta-phone-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.cta-phone-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Outlined enquire button */
.cta-enquire-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 2px solid rgba(255,255,255,0.85);
  color: var(--white);
  background: transparent;
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.28s var(--ease);
}

.cta-enquire-btn:hover {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.cta-enquire-btn svg {
  transition: transform 0.25s ease;
}

.cta-enquire-btn:hover svg { transform: translateX(3px); }


/* ============================================================
   SECTION 7 — TESTIMONIALS + STATISTICS
   ============================================================ */
.testi-section {
  padding: 120px 0;
  background: var(--bg);
}

/* 65% | 35% grid */
.testi-grid {
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: 0 48px;
  align-items: start;
}

.testi-left,
.testi-right {
  min-width: 0; /* let grid tracks shrink — long Hindi text must not force overflow */
}

/* ── Left heading ── */
.testi-heading {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
  letter-spacing: -0.018em;
  margin-bottom: 12px;
}

.testi-para {
  font-family: var(--font-body);
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Slider viewport */
.testi-slider { overflow: hidden; }

.testi-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s var(--ease);
  will-change: transform;
}

/* ── Testimonial Card ── */
.testi-card {
  flex: 0 0 calc((100% - 40px) / 3);
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px 22px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.14);
}

.testi-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.testi-quote { display: flex; align-items: flex-start; flex-shrink: 0; }

.testi-stars { display: flex; align-items: center; gap: 2px; }

.testi-card__text {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #444;
  line-height: 1.80;
  flex: 1;
}

.testi-card__divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0;
}

.testi-card__user {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Avatar circle */
.testi-avatar {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.14);
  position: relative;
  background: linear-gradient(135deg, #e8c0c0, #f5d5d5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  color: transparent;
}

/* Fallback initials when image missing */
.testi-avatar__fallback {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--red);
  position: relative;
  z-index: 1;
}

.testi-user-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testi-user-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
}

.testi-user-role {
  font-family: var(--font-body);
  font-size: 12px;
  color: #888;
}

.testi-user-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 11.5px;
  color: #777;
}

/* Pagination dots */
.testi-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding-left: 2px;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  border: none;
  transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
}

.testi-dot.is-active {
  background: var(--red);
  width: 24px;
  border-radius: 5px;
}

/* ── Right stats panel ── */
.testi-right { position: sticky; top: 100px; }

.testi-stats-panel {
  background: #FFF8F8;
  border-radius: 28px;
  padding: 36px 32px;
  border: 1px solid rgba(11,107,53,0.08);
}

.testi-stats-heading {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.3;
}

.testi-stats-bar {
  width: 36px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 0 auto 28px;
}

/* 2-column, 3-row grid */
.testi-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.testi-stat-card {
  min-width: 0;
  background: var(--white);
  border-radius: 18px;
  padding: 20px 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.testi-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}

.testi-stat-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #FFF4F4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-stat-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.testi-stat-num {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  display: block;
}

.testi-stat-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.3;
  display: block;
}

.testi-stat-desc {
  font-family: var(--font-body);
  font-size: 11px;
  color: #999;
  display: block;
}


/* ============================================================
   SECTION 8 — HOW IT WORKS
   ============================================================ */
.hiw-section {
  padding: 120px 0;
  background: var(--white);
}

.hiw-heading {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.25;
  letter-spacing: -0.018em;
  margin-bottom: 0;
}

/* 5-column horizontal timeline */
.hiw-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

/* Each step */
.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 16px;
}

/* Step number */
.hiw-step__num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: #ccc;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

/* Large white circle with icon */
.hiw-step__circle {
  width: 90px;
  height: 90px;
  background: var(--white);
  border-radius: 50%;
  border: 2px solid var(--border);
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  position: relative;
  z-index: 2;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.hiw-step:hover .hiw-step__circle {
  background: var(--red);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 14px 36px rgba(11,107,53,0.32);
  border-color: var(--red);
}

/* Dashed connector line between steps */
.hiw-step__connector {
  position: absolute;
  top: calc(28px + 45px); /* num height + half circle */
  left: calc(50% + 45px);
  right: calc(-50% + 45px);
  height: 2px;
  border-top: 2px dashed #e0e0e0;
  z-index: 1;
  pointer-events: none;
}

.hiw-step--last .hiw-step__connector { display: none; }

.hiw-step__title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--heading);
  margin-top: 18px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.hiw-step__desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: #777;
  line-height: 1.65;
  max-width: 160px;
}

/* ============================================================
   SECTION 9 — NEWSLETTER CTA BANNER
   ============================================================ */
.newsletter-section {
  padding: 0 0 80px;
  background: var(--bg);
}

.newsletter-banner {
  background: var(--red);
  border-radius: 28px;
  overflow: hidden;
  min-height: 120px;
  padding: 32px 44px;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 36px;
  position: relative;
}

/* Dot patterns */
.nl-dots {
  position: absolute;
  top: 0; bottom: 0;
  width: 200px;
  opacity: 0.10;
  background-image: radial-gradient(circle, rgba(255,255,255,0.9) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  pointer-events: none;
}
.nl-dots--left  { left: 0; }
.nl-dots--right { right: 0; }

/* LEFT: pulsing mail circle */
.nl-icon-col { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.nl-icon-circle {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nl-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35);
  animation: ctaPulse 2.4s ease-out infinite;
}
.nl-pulse--2 { animation-delay: 1.2s; }

.nl-icon-inner {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* CENTER */
.nl-center-col { min-width: 0; }

.nl-heading {
  font-family: var(--font-head);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 5px;
}

.nl-para {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Input + button row */
.nl-form { max-width: 520px; }

.nl-input-wrap {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 10px;
  padding: 5px 5px 5px 14px;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  transition: box-shadow 0.25s ease;
}

.nl-input-wrap:focus-within {
  box-shadow: 0 4px 20px rgba(0,0,0,0.20);
}

.nl-input-icon { display: flex; align-items: center; flex-shrink: 0; }

.nl-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--heading);
  background: transparent;
  min-width: 0;
}

.nl-input::placeholder { color: #aaa; }

.nl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}
.nl-btn:hover { background: var(--red-dark); transform: translateX(2px); }
.nl-btn svg { transition: transform 0.25s ease; }
.nl-btn:hover svg { transform: translateX(3px); }

/* Success/error message */
.nl-msg {
  font-family: var(--font-body);
  font-size: 12.5px;
  margin-top: 8px;
  padding-left: 2px;
  min-height: 18px;
  color: rgba(255,255,255,0.90);
}

.nl-msg.is-error { color: #ffcccc; }

/* RIGHT */
.nl-right-col {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}

.nl-divider {
  width: 1px;
  height: 70px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

.nl-phone-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nl-phone-circle {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.nl-phone-circle:hover { background: rgba(255,255,255,0.28); }

.nl-phone-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nl-phone-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  display: block;
}

.nl-phone-num {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  display: block;
  line-height: 1.2;
  transition: opacity 0.2s ease;
}

.nl-phone-num:hover { opacity: 0.85; }

.nl-phone-sub {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: rgba(255,255,255,0.70);
  display: block;
}

/* ============================================================
   SECTION 10 - LATEST NEWS & GUIDES
   ============================================================ */
.news-section {
  padding: 120px 0;
  background: var(--white);
}

.news-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 24px;
  margin-bottom: 42px;
}

.news-header__text {
  grid-column: 2;
  text-align: center;
  max-width: 680px;
}

.news-heading {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.22;
  margin: 8px 0 12px;
}

.news-para {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
}

.news-view-btn {
  grid-column: 3;
  justify-self: end;
  align-self: center;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.14);
}

.blog-card__img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: #e9f2e7;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.blog-card:hover .blog-card__img { transform: scale(1.08); }

.blog-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 7px 14px;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(11,107,53,0.28);
}

.blog-card__body {
  padding: 22px 20px 20px;
}

.blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: #666;
  font-family: var(--font-body);
  font-size: 12px;
}

.blog-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-meta__item svg { color: var(--red); }
.blog-meta__dot { color: #b8b8b8; }

.blog-card__title {
  min-height: 70px;
  margin-bottom: 12px;
  color: var(--heading);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.42;
}

.blog-card__desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
  margin-bottom: 16px;
  color: #555;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.75;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.blog-link-arrow {
  display: inline-flex;
  transition: transform 0.3s var(--ease);
}

.blog-card__link:hover { color: var(--red-dark); }
.blog-card__link:hover .blog-link-arrow { transform: translateX(5px); }


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #111;
  color: rgba(255,255,255,0.82);
}

.footer-main {
  padding: 90px 0 36px;
  background:
    radial-gradient(circle at 10% 10%, rgba(215,163,61,0.08), transparent 34%),
    linear-gradient(135deg, #071A10 0%, #111 58%, #160c07 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 0.9fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border: 2px solid rgba(215,163,61,0.38);
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
}

.footer-logo-name {
  display: flex;
  flex-direction: column;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-logo-name span:last-child { color: var(--gold); }

.footer-brand-desc {
  max-width: 320px;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.72);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 50%;
  color: var(--white);
  transition: transform 0.3s var(--ease), background 0.3s ease, border-color 0.3s ease;
}

.footer-social-icon:hover {
  transform: rotate(12deg) translateY(-2px);
  background: var(--red);
  border-color: var(--red);
}

.footer-col { min-width: 0; }

.footer-col-heading {
  position: relative;
  margin-bottom: 28px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.footer-col-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -11px;
  width: 42px;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
}

.footer-links,
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.76);
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.45;
  transition: color 0.3s ease, transform 0.3s var(--ease);
}

.footer-links:not(.footer-links--location) .footer-link::before {
  content: '›';
  color: var(--white);
  font-size: 18px;
  line-height: 1;
}

.footer-link:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-view-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: var(--red);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  transition: color 0.3s ease, transform 0.3s var(--ease);
}

.footer-view-link:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2px;
}

.footer-contact-text,
.footer-address {
  color: rgba(255,255,255,0.82);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-style: normal;
  line-height: 1.75;
}

a.footer-contact-text {
  transition: color 0.3s ease;
}

a.footer-contact-text:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.16);
  padding: 24px 0 30px;
  background: #111;
}

.footer-bottom__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-copy,
.footer-credit,
.footer-legal-link,
.footer-legal-sep {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.74);
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.footer-legal-link {
  transition: color 0.3s ease;
}

.footer-legal-link:hover { color: var(--white); }

.footer-credit {
  justify-self: end;
}

.footer-heart {
  color: var(--gold);
  font-size: 17px;
  line-height: 1;
}

/* ============================================================
   INNER PAGES
   ============================================================ */
.page-section {
  padding: 90px 0;
  background: var(--white);
}

.page-section--soft {
  background: var(--green-soft);
}

.page-head {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.page-head__eyebrow {
  color: var(--red);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.page-head__title {
  margin: 8px 0 12px;
  color: var(--heading);
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.25;
}

.page-head__text {
  color: #607064;
  font-size: 15px;
  line-height: 1.75;
}

.content-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.content-copy h2 {
  margin-bottom: 18px;
  color: var(--heading);
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.25;
}

.content-copy p {
  margin-bottom: 16px;
  color: #566459;
  font-size: 15px;
  line-height: 1.85;
}

.page-image {
  width: 100%;
  min-height: 380px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 18px 48px rgba(0,0,0,0.14);
}

.info-grid,
.residential-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.info-card,
.contact-card,
.residential-card {
  border: 1px solid rgba(11,107,53,0.12);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.info-card:hover,
.contact-card:hover,
.residential-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 46px rgba(0,0,0,0.12);
}

.info-card {
  padding: 30px;
}

.info-card__icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 16px;
  background: rgba(11,107,53,0.08);
  color: var(--red);
}

.info-card h3,
.residential-card h3,
.contact-card h3 {
  margin-bottom: 10px;
  color: var(--heading);
  font-family: var(--font-head);
  font-size: 18px;
  line-height: 1.35;
}

.info-card p,
.residential-card p,
.contact-card p {
  color: #607064;
  font-size: 14px;
  line-height: 1.75;
}

.residential-card {
  overflow: hidden;
}

.residential-card__image {
  height: 230px;
  overflow: hidden;
}

.residential-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s var(--ease);
}

.residential-card:hover .residential-card__image img { transform: scale(1.06); }

.residential-card__body {
  padding: 22px;
}

.residential-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 14px 0 18px;
  color: #68766c;
  font-size: 13px;
}

.residential-price {
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 800;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 10px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.3s var(--ease), background 0.3s ease;
}

.page-btn:hover {
  transform: translateY(-2px);
  background: var(--red-dark);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-card {
  padding: 24px;
}

.contact-form {
  padding: 34px;
  border: 1px solid rgba(11,107,53,0.12);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(0,0,0,0.08);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--heading);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--heading);
  font: inherit;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(11,107,53,0.10);
}


/* ============================================================
   SECTION 20 — CONTACT PAGE
   ============================================================ */

/* ── Contact Grid: info left, form right ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info-col { min-width: 0; }

.contact-form-col { min-width: 0; }

.page-head--left { text-align: left; }

.page-head--left .page-head__text {
  margin-left: 0;
}

/* ── Contact Info Cards ── */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 36px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform 0.30s var(--ease), box-shadow 0.30s var(--ease);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(11,107,53,0.07);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 2px;
}

.contact-card__title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 2px;
}

.contact-card__text {
  font-family: var(--font-body);
  font-size: 13px;
  color: #777;
  line-height: 1.5;
}

.contact-card__link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s ease;
}

.contact-card__link:hover {
  color: var(--red-dark);
  text-decoration: underline;
}

.contact-hours {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.contact-hours__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 13px;
}

.contact-hours__day {
  font-weight: 500;
  color: var(--heading);
}

.contact-hours__time {
  color: #777;
}

/* ── Contact Form ── */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.contact-form__title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 6px;
}

.contact-form__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: #888;
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

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

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

.form-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
}

.form-required {
  color: var(--red);
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--heading);
  background: var(--white);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(11,107,53,0.10);
}

.form-input.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 4px rgba(220,53,69,0.10);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  cursor: pointer;
  padding-right: 36px;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
  font-family: var(--font-body);
  line-height: 1.6;
}

.form-error {
  font-family: var(--font-body);
  font-size: 12px;
  color: #dc3545;
  min-height: 16px;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  box-shadow: var(--shadow-red);
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.form-submit:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.form-submit__arrow {
  display: flex;
  align-items: center;
  transition: transform 0.25s ease;
}

.form-submit:hover .form-submit__arrow {
  transform: translateX(4px);
}

.form-status {
  font-family: var(--font-body);
  font-size: 13px;
  text-align: center;
  padding: 0;
  min-height: 20px;
}

.form-status.is-error {
  color: #dc3545;
}

.form-status.is-success {
  color: var(--red);
}

/* ── Map Section ── */
.map-wrap {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.map-container iframe {
  display: block;
  width: 100%;
}

.map-card {
  position: absolute;
  bottom: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  max-width: 320px;
}

.map-card__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(11,107,53,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-card__text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--heading);
  line-height: 1.5;
}

/* ── FAQ Section ── */
.faq-list {
  max-width: 780px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.25s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.faq-item[open] {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 24px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--red);
  transition: transform 0.30s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.faq-cta {
  text-align: center;
  padding: 32px 0 0;
  border-top: 1px solid var(--border);
}

.faq-cta p {
  font-family: var(--font-body);
  font-size: 15px;
  color: #666;
  margin-bottom: 16px;
}
