/* ============================================================
   JHARKHAND PROPERTIES — UNIQUE PAGE HEROES
   Each sub-page has its own distinctive hero treatment.
   ============================================================ */

/* ── Shared text-green utility ── */
/* Note: this duplicates the one in style.css utilities for broader coverage */
.text-green { color: var(--red); font-weight: 700; }


/* ============================================================
   1. ABOUT HERO — Split layout with floating stats
   ============================================================ */
.about-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f7f0 0%, #e8f2e8 40%, #f5faf5 100%);
  padding: 60px 0;
}

.about-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-hero__content { max-width: 580px; }

.about-hero__kicker {
  display: inline-block;
  color: var(--red);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  position: relative;
  padding-left: 48px;
}

.about-hero__kicker::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 36px;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateY(-50%);
}

.about-hero__title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--heading);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.about-hero__text {
  font-family: var(--font-body);
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}

.about-hero__btn {
  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: 13px 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-red);
  transition: all 0.25s ease;
  text-decoration: none;
}

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

.about-hero__btn svg { transition: transform 0.25s ease; }
.about-hero__btn:hover svg { transform: translateX(4px); }

/* ── Stats panel ── */
.about-hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-stat-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(232,232,232,0.7);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.about-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}

.about-stat-card--lg {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-color: transparent;
}

.about-stat-card--lg .about-stat-number,
.about-stat-card--lg .about-stat-label,
.about-stat-card--lg .about-stat-desc {
  color: var(--white);
}

.about-stat-card--lg .about-stat-desc { opacity: 0.80; }

.about-stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat-label {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 2px;
}

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

/* ── Decorative elements ── */
.about-hero__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.about-deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(11,107,53,0.08);
}

.about-deco-circle--1 {
  width: 320px;
  height: 320px;
  top: -80px;
  right: -60px;
}

.about-deco-circle--2 {
  width: 200px;
  height: 200px;
  bottom: -40px;
  left: 40%;
}

.about-deco-dots {
  position: absolute;
  bottom: 20px;
  right: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.about-deco-dots span {
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.12;
}


/* ============================================================
   2. PROPERTIES HERO — Dark gradient with count badge & filter pills
   ============================================================ */
.props-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a5c2e 0%, #0d7a3e 30%, #0f8f4a 55%, #0a7a3e 80%, #05361a 100%);
  padding: 60px 0;
}

.props-hero__content {
  position: relative;
  z-index: 2;
}

.props-hero__text-wrap { max-width: 700px; }

.props-hero__count-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 50px;
  padding: 6px 18px 6px 6px;
  margin-bottom: 20px;
}

.props-hero__count-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--white);
  color: var(--red);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  border-radius: 50%;
}

.props-hero__count-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
  letter-spacing: 0.04em;
}

.props-hero__title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.props-hero__title .text-green { color: #a8e6b3; }

.props-hero__text {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 32px;
}

/* ── Filter pills ── */
.props-hero__filters {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.props-filter-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.60);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.props-filter-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.props-pill {
  padding: 7px 16px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.80);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.props-pill:hover {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  border-color: rgba(255,255,255,0.40);
}

.props-pill.is-active {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  font-weight: 600;
}

/* ── Decorative blobs ── */
.props-hero__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.props-blob {
  position: absolute;
  border-radius: 50%;
}

.props-blob--1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
}

.props-blob--2 {
  width: 300px;
  height: 300px;
  bottom: -120px;
  left: 30%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}


/* ============================================================
   3. WHY US HERO — Centered with achievement badges & floating shapes
   ============================================================ */
.whyus-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbf8 0%, #f0f5f0 50%, #eaf2ea 100%);
  padding: 60px 0;
}

.whyus-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.whyus-hero__kicker {
  display: inline-block;
  color: var(--red);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  position: relative;
}

.whyus-hero__kicker::after {
  content: '';
  display: block;
  width: 40px;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  margin: 10px auto 0;
}

.whyus-hero__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 800;
  color: var(--heading);
  line-height: 1.18;
  margin-bottom: 16px;
}

.whyus-hero__text {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--para);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 40px;
}

/* ── Badge row ── */
.whyus-hero__badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.whyus-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transition: transform 0.30s var(--ease), box-shadow 0.30s var(--ease);
  min-width: 150px;
}

.whyus-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.whyus-badge__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(11,107,53,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.whyus-badge__text {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.3;
  text-align: left;
}

/* ── Floating decorative shapes ── */
.whyus-hero__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.whyus-float {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center center;
  animation: whyusFloat 6s ease-in-out infinite;
}

.whyus-float--1 { top: 30px; left: 6%; animation-delay: 0s; }
.whyus-float--2 { top: 50%; right: 5%; animation-delay: 2s; margin-top: -18px; }
.whyus-float--3 { bottom: 40px; left: 10%; animation-delay: 4s; }

@keyframes whyusFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(6deg); }
}


/* ============================================================
   4. BLOGS HERO — Magazine-style split layout with featured article
   ============================================================ */
.blogs-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}

.blogs-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.blogs-hero__kicker {
  display: inline-block;
  color: var(--red);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  padding: 5px 14px;
  background: rgba(11,107,53,0.08);
  border-radius: 4px;
}

.blogs-hero__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--heading);
  line-height: 1.15;
  margin-bottom: 16px;
}

.blogs-hero__text {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--para);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 480px;
}

.blogs-hero__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blogs-topic {
  padding: 7px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  color: #666;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.22s ease;
  text-decoration: none;
}

.blogs-topic:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(11,107,53,0.04);
}

/* ── Featured article card ── */
.blogs-featured {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
  border: 1px solid var(--border);
  transition: transform 0.30s var(--ease), box-shadow 0.30s var(--ease);
}

.blogs-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.14);
}

.blogs-featured__img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #3d8b3d 0%, #5aab3f 50%, #87CEEB 100%);
}

.blogs-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  color: transparent;
  background: transparent;
  transition: transform 0.5s var(--ease);
}

.blogs-featured:hover .blogs-featured__img { transform: scale(1.05); }

.blogs-featured__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 20px;
}

.blogs-featured__body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blogs-featured__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  color: #888;
}

.blogs-featured__dot { color: #ccc; }

.blogs-featured__title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.4;
}

.blogs-featured__desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #777;
  line-height: 1.65;
}

.blogs-featured__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--red);
  transition: gap 0.22s ease;
  text-decoration: none;
  margin-top: 4px;
}

.blogs-featured__link:hover { gap: 10px; }


/* ============================================================
   5. CONTACT HERO — Gradient with direct connect channel pills
   ============================================================ */
.contact-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f7f0 0%, #e4efe4 40%, #f5faf5 100%);
  padding: 60px 0;
}

.contact-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.contact-hero__kicker {
  display: inline-block;
  color: var(--red);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  padding: 5px 16px;
  background: rgba(11,107,53,0.08);
  border-radius: 50px;
}

.contact-hero__title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  color: var(--heading);
  line-height: 1.15;
  margin-bottom: 16px;
}

.contact-hero__text {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--para);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 36px;
}

/* ── Channel pills ── */
.contact-hero__channels {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-channel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 12px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: all 0.28s var(--ease);
  min-width: 180px;
  justify-content: center;
}

.contact-channel--call {
  background: var(--red);
  box-shadow: var(--shadow-red);
}

.contact-channel--call:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(11,107,53,0.42);
}

.contact-channel--email {
  background: var(--white);
  color: var(--heading);
  border: 1.5px solid var(--border);
}

.contact-channel--email:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.contact-channel--visit {
  background: var(--white);
  color: var(--heading);
  border: 1.5px solid var(--border);
}

.contact-channel--visit:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.contact-channel__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.contact-channel--email .contact-channel__icon { color: var(--red); }
.contact-channel--visit .contact-channel__icon { color: var(--red); }

.contact-channel__text {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
}

/* ── Decorative pulse rings ── */
.contact-hero__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.contact-pulse {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(11,107,53,0.07);
  animation: contactPulse 4s ease-in-out infinite;
}

.contact-pulse--1 {
  width: 300px;
  height: 300px;
  top: -80px;
  right: -60px;
  animation-delay: 0s;
}

.contact-pulse--2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -40px;
  animation-delay: 1.5s;
}

.contact-pulse--3 {
  width: 150px;
  height: 150px;
  top: 40%;
  right: 15%;
  animation-delay: 3s;
}

@keyframes contactPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.08); opacity: 0.2; }
}
