/**
 * Krishi Dooth — farmer-focused agri-air service page
 */

.hero-krishi-dooth {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, #1a5f2a 0%, #2d8a3e 38%, #1e6f8f 100%);
  padding-bottom: 0;
}

.hero-krishi-dooth::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(0, 0, 0, 0.18) 0%, transparent 55%);
  pointer-events: none;
}

.hero-krishi-dooth .container {
  position: relative;
  z-index: 2;
}

.hero-krishi-dooth__grid {
  padding: 1.5rem 0 2.75rem;
}

.hero-krishi-dooth .hero-kicker {
  color: rgba(255, 255, 255, 0.92);
}

.hero-krishi-dooth .hero-title {
  max-width: 16ch;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.hero-krishi-dooth .hero-sub {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.92);
}

.hero-krishi-dooth__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.hero-krishi-dooth__visual {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(8, 52, 24, 0.35);
  line-height: 0;
}

.hero-krishi-dooth__photo {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

.kd-problem {
  background: #f7faf5;
}

.kd-problem__card {
  height: 100%;
  padding: 1.5rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e3ebe0;
  box-shadow: 0 8px 28px rgba(26, 95, 42, 0.06);
}

.kd-problem__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #1a5f2a;
  background: #e8f5e9;
  margin-bottom: 1rem;
}

.kd-compare {
  background: linear-gradient(180deg, #fff 0%, #f4f9f2 100%);
}

.kd-compare__panel {
  height: 100%;
  border-radius: 18px;
  padding: 1.75rem;
  border: 1px solid #e0e8dc;
}

.kd-compare__panel--road {
  background: #fff8f5;
  border-color: #f0ddd4;
}

.kd-compare__panel--air {
  background: #f0f9f4;
  border-color: #cfe8d6;
}

.kd-compare__panel h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.kd-compare__stat {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.kd-compare__panel--road .kd-compare__stat { color: #c45c2a; }
.kd-compare__panel--air .kd-compare__stat { color: #1a5f2a; }

.kd-map-section {
  background: #0f3d4f;
  color: #fff;
}

.kd-map-section__lead {
  max-width: 68ch;
}

.kd-map-section__wrap {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .kd-map-section__wrap {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.kd-map-section__visual {
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.kd-map-section__visual img {
  width: 100%;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.22));
}

.kd-corridor-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .kd-corridor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.kd-corridor {
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e3ebe0;
}

.kd-corridor strong {
  display: block;
  color: #1a5f2a;
  margin-bottom: 0.35rem;
}

.kd-steps {
  counter-reset: kd-step;
  list-style: none;
  padding: 0;
  margin: 0;
}

.kd-steps li {
  position: relative;
  padding: 0 0 1.35rem 3rem;
  margin: 0;
}

.kd-steps li::before {
  counter-increment: kd-step;
  content: counter(kd-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: #2d8a3e;
}

.kd-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 2.1rem;
  bottom: 0.2rem;
  width: 2px;
  background: #cfe8d6;
}

.kd-audience .why-card {
  border: 1px solid #e3ebe0;
}

@media (max-width: 991.98px) {
  .hero-krishi-dooth__visual {
    margin-top: 0.5rem;
  }
}
