/* =========================================================
   Kissan Baithak: green & white theme with gold accents
   ========================================================= */
:root {
  --green-900: #1B5E20;
  --green-700: #2E7D32;
  --green-600: #388E3C;
  --green-100: #E8F5E9;
  --green-50:  #F3FAF3;
  --gold-500:  #F9A825;
  --gold-600:  #C9A227;
  --ink-900:   #1F2A1F;
  --ink-600:   #4E5D4E;
  --white:     #FFFFFF;
  --line:      #DDE8DD;
  --radius:    16px;
  --shadow:    0 6px 24px rgba(27, 94, 32, 0.10);
  --font-en:   "Poppins", system-ui, sans-serif;
  --font-ur:   "Noto Nastaliq Urdu", "Jameel Noori Nastaleeq", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  font-family: var(--font-en);
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Urdu (RTL) content */
[lang="ur"] {
  font-family: var(--font-ur);
  line-height: 2.2;
}
[lang="ur"] h1, [lang="ur"] h2, [lang="ur"] h3, [lang="ur"] h4 {
  font-family: var(--font-ur);
  font-weight: 700;
  line-height: 2;
}
[lang="ur"] [dir="ltr"] { font-family: var(--font-en); }

img { max-width: 100%; display: block; }
a { color: var(--green-700); text-decoration: none; }

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(46, 125, 50, 0.35);
}
.btn-primary:hover { background: var(--green-900); color: var(--white); }

.btn-gold {
  background: var(--gold-500);
  color: #3E2E00;
  box-shadow: 0 4px 14px rgba(249, 168, 37, 0.4);
}
.btn-gold:hover { background: #FFB300; }

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--white);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.14); color: var(--white); }

.btn-block { width: 100%; }

/* ---------------- Navbar ---------------- */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(27, 94, 32, 0.12);
  border-color: var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--green-900);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--green-700);
  color: var(--white);
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 1.05rem; font-weight: 700; }
.brand-text small { font-size: 0.68rem; color: var(--ink-600); letter-spacing: 0.03em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-900);
  position: relative;
  padding: 0.3rem 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  border-radius: 3px;
  background: var(--gold-500);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--green-700); }
.nav-cta { margin-inline-start: 0.4rem; }

/* Dropdown (Services) */
.has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
}
.has-dropdown > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.caret {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}
.has-dropdown:hover .caret,
.has-dropdown:focus-within .caret { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px);
  min-width: 215px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(27, 94, 32, 0.16);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 1200;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.dropdown-menu a {
  display: block;
  padding: 0.55rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-900);
  border-radius: 8px;
}
.dropdown-menu a:hover {
  background: var(--green-50);
  color: var(--green-900);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background: var(--green-900);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  padding: 90px 0 90px;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(249, 168, 37, 0.28), transparent 60%),
    radial-gradient(700px 380px at 8% 110%, rgba(255, 255, 255, 0.14), transparent 60%),
    linear-gradient(150deg, var(--green-900) 0%, var(--green-700) 55%, var(--green-600) 100%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 70V38M40 38c0-10-8-15-18-15 0 10 8 15 18 15zm0 0c0-10 8-15 18-15 0 10-8 15-18 15z' fill='none' stroke='rgba(255,255,255,0.07)' stroke-width='2'/%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 1; text-align: center; }

.hero-kicker {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.15rem 1.4rem;
  font-size: 0.95rem;
}
.hero-title {
  font-size: clamp(3rem, 7vw, 5rem);
  margin: 1.2rem 0 0.6rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
.hero-sub {
  max-width: 760px;
  margin: 0 auto 1.6rem;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.94);
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin-inline: auto;
}
.stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 1rem 0.8rem 1.2rem;
  backdrop-filter: blur(4px);
}
.stat-num {
  display: block;
  font-family: var(--font-en);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold-500);
}
.stat-label { font-size: 0.92rem; }

/* ---------------- Hero slider (full-width, top of home page) ---------------- */
.slider {
  position: relative;
  margin-top: 72px;
  margin-bottom: 64px;
  height: min(74vh, 620px);
  min-height: 420px;
  overflow: hidden;
  background: var(--green-900);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 30, 12, 0.25) 0%, rgba(10, 30, 12, 0.05) 40%, rgba(10, 30, 12, 0.72) 100%);
}
.slide-caption {
  position: absolute;
  z-index: 2;
  left: 0; right: 0; bottom: 10%;
  text-align: center;
  color: var(--white);
  padding: 0 6%;
}
.slide-caption .kicker {
  display: inline-block;
  background: rgba(249, 168, 37, 0.94);
  color: #2B1F00;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 0 1.2rem;
  margin-bottom: 0.6rem;
}
.slide-caption h2 {
  font-size: clamp(1.5rem, 3.6vw, 2.5rem);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  margin-bottom: 0.2rem;
}
.slide-caption p {
  max-width: 640px;
  margin-inline: auto;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}
.slider-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.85);
  color: var(--green-900);
  cursor: pointer;
  transition: background 0.15s ease;
}
.slider-arrow:hover { background: var(--white); }
.slider-arrow svg { width: 22px; height: 22px; }
.slider-arrow.prev { left: 18px; }
.slider-arrow.next { right: 18px; }
.slider-dots {
  position: absolute;
  z-index: 3;
  left: 0; right: 0; bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 9px;
}
.slider-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.slider-dots button.active { background: var(--gold-500); transform: scale(1.25); }

/* General Manager contact card */
.gm-card {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 2.2rem;
}
.gm-photo {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 3px solid var(--green-100);
  box-shadow: 0 4px 14px rgba(27, 94, 32, 0.18);
  flex-shrink: 0;
}
.gm-info .partner-tag { margin-bottom: 0.4rem; }
.team-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
}
.team-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-900);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.team-btn svg { width: 20px; height: 20px; }
.team-btn:hover { background: var(--green-700); color: var(--white); transform: translateY(-2px); }
.team-btn.wa { background: #E3F7EC; color: #128C4A; }
.team-btn.wa:hover { background: #25D366; color: var(--white); }

/* ---------------- Sections ---------------- */
.section { padding: 84px 0; }
.section-light { background: var(--green-50); }

.section-head { text-align: center; margin-bottom: 3rem; }
.section-title {
  display: inline-block;
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  color: var(--green-900);
  position: relative;
  padding-bottom: 0.9rem;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--green-600));
}
.section-sub { color: var(--ink-600); margin-top: 0.8rem; font-size: 1.02rem; }

/* Page header banner for inner pages */
.page-header {
  position: relative;
  padding: 140px 0 54px;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(700px 300px at 85% -20%, rgba(249, 168, 37, 0.25), transparent 60%),
    linear-gradient(150deg, var(--green-900) 0%, var(--green-700) 60%, var(--green-600) 100%);
}
.page-header h1 {
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.22);
}
.page-header p {
  max-width: 720px;
  margin: 0.4rem auto 0;
  color: rgba(255, 255, 255, 0.92);
}

/* CTA band (home page) */
.cta-band {
  padding: 64px 0;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(700px 300px at 12% 120%, rgba(249, 168, 37, 0.22), transparent 60%),
    linear-gradient(160deg, var(--green-700), var(--green-900));
}
.cta-band h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.cta-band p { color: rgba(255, 255, 255, 0.92); margin: 0.5rem 0 1.4rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.section-green {
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(249, 168, 37, 0.16), transparent 55%),
    linear-gradient(160deg, var(--green-900), var(--green-700));
}
.section-title.on-green { color: var(--white); }

/* ---------------- Cards & grids ---------------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.card-title {
  color: var(--green-700);
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}
.muted { color: var(--ink-600); font-size: 0.95rem; }

.feature-card p, .service-card p, .partner-card p, .about-card p { color: var(--ink-600); }

.feature-icon, .service-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green-100);
  color: var(--green-700);
  margin-bottom: 1rem;
}
.feature-icon svg, .service-icon svg { width: 30px; height: 30px; }

.check-list { list-style: none; }
.check-list li {
  position: relative;
  padding-inline-start: 1.9em;
  color: var(--ink-600);
}
.check-list li::before {
  content: "✔";
  position: absolute;
  inset-inline-start: 0;
  top: 0.1em;
  color: var(--green-600);
  font-family: var(--font-en);
  font-weight: 700;
}

/* ---------------- Services: main card + tabs ---------------- */
.service-main { margin-bottom: 1.6rem; }
.service-main-head {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-bottom: 1.2rem;
}
.service-main-head .service-icon { margin-bottom: 0; flex-shrink: 0; }

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-bottom: 2px solid var(--green-100);
  padding-bottom: 0.7rem;
  margin-bottom: 1.4rem;
}
.tab-btn {
  font-family: var(--font-en);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-600);
  background: var(--green-50);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.tab-btn:hover { background: var(--green-100); color: var(--green-900); }
.tab-btn.active {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.pill-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.8rem;
}
.pill-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--green-50);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  color: var(--ink-900);
}
.pill-icon { font-size: 1.4rem; }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}
.pillar {
  background: var(--green-50);
  border-inline-start: 4px solid var(--gold-500);
  border-radius: 12px;
  padding: 1rem 1.2rem;
}
.pillar h4 { color: var(--green-900); }
.pillar p { color: var(--ink-600); font-size: 0.95rem; }

.split-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.list-heading {
  color: var(--green-900);
  margin-bottom: 0.5rem;
  border-bottom: 2px dashed var(--line);
  padding-bottom: 0.4rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.product {
  background: var(--green-50);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.2rem;
}
.product.has-img { padding: 0; overflow: hidden; }
.product-img {
  display: grid;
  place-items: center;
  height: 170px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 12px;
}
.product-img img { max-height: 146px; max-width: 80%; object-fit: contain; }
.product-body { padding: 0.9rem 1.2rem 1.1rem; }

/* Offering / seed cards with photos */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
}
.offer-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(27, 94, 32, 0.16);
}
.offer-card img, .offer-card .img-fallback {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.offer-body { padding: 0.85rem 1.1rem 1.1rem; }
.offer-body h4 { color: var(--green-700); font-size: 1.05rem; margin-bottom: 0.15rem; }
.offer-body p { color: var(--ink-600); font-size: 0.92rem; }
.product h4 { color: var(--green-700); }
.product p { color: var(--ink-600); font-size: 0.94rem; }

.source-note {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  color: var(--ink-600);
  text-align: left;
}

/* Stacked full-width service cards with metric tiles */
.service-stack {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 1.6rem;
}
.service-row { padding: 2.2rem 2.4rem; }
.service-row-main {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
}
.service-row-main .service-icon { flex-shrink: 0; margin-bottom: 0; }
.service-row-main p { color: var(--ink-600); margin-bottom: 0.6rem; }

.service-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 1.6rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--line);
}
.metric {
  background: var(--green-50);
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: center;
  padding: 1rem 0.9rem 1.2rem;
}
.metric-num {
  display: block;
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-700);
}
.metric-label { color: var(--ink-600); font-size: 0.95rem; }

/* ---------------- Partners (stacked rows with logos) ---------------- */
.partner-row { padding: 2.2rem 2.4rem; }
.partner-row > p { color: var(--ink-600); }
.partner-head {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 0.7rem;
}
.partner-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px;
  box-sizing: border-box;
}
.logo-chip {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 14px;
  background: #F0F1EE;
  border: 1px solid var(--line);
  color: var(--ink-600);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.partner-en {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-600);
  background: var(--green-50);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.12rem 0.7rem;
  margin-inline-start: 0.5rem;
  vertical-align: middle;
}
.metric-num-ur {
  font-family: var(--font-ur);
  font-size: 1.25rem;
  line-height: 1.9;
}
.partner-tag {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-900);
  border-radius: 999px;
  font-size: 0.88rem;
  padding: 0 1.1rem;
  margin-bottom: 0.7rem;
}

/* ---------------- Gallery ---------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}
.gallery-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(27, 94, 32, 0.18);
}
.gallery-item img, .img-fallback {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.img-fallback {
  display: grid;
  place-items: center;
  font-size: 3rem;
  background: linear-gradient(150deg, var(--green-100), #DCEEDC);
}
.gallery-item figcaption {
  padding: 0.5rem 1rem 0.9rem;
  font-size: 0.92rem;
  color: var(--ink-600);
  text-align: center;
}

/* ---------------- About (green band) ---------------- */
.about-card {
  background: rgba(255, 255, 255, 0.97);
  border: 0;
}

/* ---------------- Contact ---------------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-row { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-700);
}
.contact-icon svg { width: 24px; height: 24px; }
.contact-row h4 { color: var(--green-900); }
.contact-row p { color: var(--ink-600); overflow-wrap: anywhere; }
.contact-row a { font-family: var(--font-en); font-weight: 500; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.25rem; }
.form-field label { color: var(--green-900); font-weight: 600; }
.form-field input, .form-field textarea {
  font-family: var(--font-ur);
  font-size: 1rem;
  color: var(--ink-900);
  background: var(--green-50);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  resize: vertical;
}
.form-field input[dir="ltr"] { font-family: var(--font-en); }
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(56, 142, 60, 0.18);
}
.form-status { min-height: 1.5em; color: var(--green-700); font-weight: 600; text-align: center; }
.form-status.error { color: #C62828; }

/* ---------------- Footer ---------------- */
.footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.9);
  padding: 1.6rem 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-inner p[dir="ltr"] { font-size: 0.85rem; color: rgba(255, 255, 255, 0.65); }
.footer [lang="ur"], .footer-inner p[lang="ur"] { font-family: var(--font-ur); }

/* ---------------- WhatsApp floating button ---------------- */
.whatsapp-fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 1100;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  animation: whatsapp-pulse 2.4s ease-out infinite;
}
.whatsapp-fab svg { width: 32px; height: 32px; }
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.55);
}
@keyframes whatsapp-pulse {
  0%   { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70%  { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 480px) {
  .whatsapp-fab { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .whatsapp-fab svg { width: 29px; height: 29px; }
}

/* ---------------- Reveal animation ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .slide { transition: none; }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 24px rgba(27, 94, 32, 0.14);
    padding: 0.6rem 6%;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 0.8rem 0; border-bottom: 1px solid var(--green-50); }
  .nav-link::after { display: none; }
  .nav-cta { margin: 0.8rem 0 0.6rem; text-align: center; }

  /* Dropdown becomes an always-open, indented sub-list on mobile */
  .has-dropdown {
    flex-direction: column;
    align-items: stretch;
    align-self: auto;
  }
  .caret { display: none; }
  .dropdown-menu,
  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0 1.2rem 0.4rem;
  }
  .dropdown-menu a {
    padding: 0.55rem 0;
    color: var(--ink-600);
    border-bottom: 1px dashed var(--green-100);
    border-radius: 0;
  }
  .dropdown-menu a:last-child { border-bottom: 0; }

  .hero { padding: 70px 0 60px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .slider { height: 62vh; min-height: 360px; margin-bottom: 44px; }
  .slider-arrow { width: 38px; height: 38px; }
  .slider-arrow.prev { left: 8px; }
  .slider-arrow.next { right: 8px; }
  .gm-card { flex-direction: column; text-align: center; }
  .gm-card .team-actions { justify-content: center; }
  .grid-2, .grid-3, .split-cols, .contact-wrap { grid-template-columns: 1fr; }
  .service-row { padding: 1.6rem 1.4rem; }
  .service-row-main { flex-direction: column; }
  .service-metrics { grid-template-columns: 1fr; }
  .partner-row { padding: 1.6rem 1.4rem; }
  .partner-en { display: block; width: fit-content; margin: 0.2rem 0 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img, .img-fallback { height: 220px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .brand-text small { display: none; }
}
