/* ---------- Service Hero ---------- */
.service-hero {
  padding: 100px 0 40px;
  text-align: center;
}

.service-hero .section-head {
  max-width: 720px;
  margin: 0 auto;
}

.service-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.service-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--navy-primary);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  border: 1.5px solid rgba(3, 27, 58, 0.15);
  transition: all 0.35s ease;
}

.service-btn-ghost:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
}

/* ---------- Why-style Section ---------- */
.why-section {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.why-section::before,
.why-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}

.why-section::before {
  width: 420px;
  height: 420px;
  background: rgba(75, 157, 48, 0.08);
  top: -120px;
  left: -140px;
}

.why-section::after {
  width: 360px;
  height: 360px;
  background: rgba(3, 27, 58, 0.05);
  bottom: -100px;
  right: -120px;
}

.why-section .container {
  position: relative;
  z-index: 1;
}

.why-row {
  display: flex;
  align-items: center;
  gap: 64px;
  margin-top: 90px;
  position: relative;
}

.why-row-reverse {
  flex-direction: row-reverse;
}

@media (max-width: 992px) {
  .why-row,
  .why-row-reverse {
    flex-direction: column;
    gap: 36px;
    margin-top: 60px;
  }
}

.why-media,
.why-content {
  flex: 1 1 50%;
  min-width: 0;
}

.why-media {
  position: relative;
}

.why-media::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 2px dashed rgba(75, 157, 48, 0.35);
  border-radius: 28px;
  z-index: 0;
}

.why-video-card {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(3, 27, 58, 0.3),
    0 0 0 1px rgba(3, 27, 58, 0.06);
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, #eef4ea, #ffffff);
}

.why-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-video-card:hover .why-thumb {
  transform: scale(1.05);
}

.why-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 27, 58, 0) 55%,
    rgba(3, 27, 58, 0.45) 100%
  );
  pointer-events: none;
}

.why-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: rgba(3, 27, 58, 0.65);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.why-stat-chip {
  position: absolute;
  bottom: -22px;
  right: 20px;
  z-index: 4;
  background: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 18px 36px -12px rgba(3, 27, 58, 0.3);
  border: 1px solid rgba(3, 27, 58, 0.06);
}

.why-row-reverse .why-stat-chip {
  right: auto;
  left: 20px;
}

.why-stat-chip .stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(
    120deg,
    var(--green-primary),
    var(--green-bright)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.why-stat-chip .stat-num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-primary);
  line-height: 1.1;
}

.why-stat-chip .stat-label {
  font-size: 0.68rem;
  color: var(--blue-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.why-content {
  position: relative;
}

.why-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(75, 157, 48, 0.1);
  color: var(--green-primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 14px;
}

.why-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-primary);
  background: rgba(75, 157, 48, 0.08);
  border: 1px solid rgba(75, 157, 48, 0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  margin-left: 10px;
}

.why-content h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 800;
  margin-bottom: 0.9rem;
  line-height: 1.25;
  position: relative;
  padding-left: 18px;
}

.why-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(
    180deg,
    var(--green-primary),
    var(--green-bright)
  );
  box-shadow: 0 0 12px rgba(75, 157, 48, 0.5);
}

.why-content p {
  color: var(--blue-accent);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.94rem;
  color: var(--navy-medium);
  font-weight: 500;
}

.why-list li i {
  color: var(--green-primary);
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ---------- Directional entrance animation ---------- */
.slide-left,
.slide-right {
  opacity: 0;
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-left {
  transform: translateX(-60px);
}

.slide-right {
  transform: translateX(60px);
}

.slide-left.in-view,
.slide-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 992px) {
  .slide-left,
  .slide-right {
    transform: translateY(40px);
  }

  .slide-left.in-view,
  .slide-right.in-view {
    transform: translateY(0);
  }

  .why-stat-chip {
    right: 16px !important;
    left: auto !important;
  }
}
