/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 85vh;
  padding: 48px 24px 32px;
  overflow: hidden;
}

.hero__container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}

/* ============ Content ============ */
.hero__content {
  max-width: 620px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 20px;
  color: var(--primary-color, #587964);
  margin-bottom: 18px;
  letter-spacing: 1px;
  font-weight: 600;
}

.hero__title {
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  color: var(--text-color, #000);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero__title-prefix {
  display: block;
  font-size: 0.55em;
  font-weight: 600;
  color: var(--text-color, #000);
  opacity: 0.65;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.hero__title-accent {
  display: block;
  white-space: nowrap;
  background: linear-gradient(135deg, #c8860a 0%, #e6a820 50%, #b8720a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__title-by-text {
  display: block;
  text-align: center;
  font-size: 0.35em;
  margin-top: 15px;
  margin-bottom: -5px;
  color: var(--text-color, #000);
  opacity: 0.7;
}

.hero__title-by {
  display: block;
  text-align: center;
  font-size: clamp(16px, 2vw, 26px);
  font-weight: 400;
  margin-top: 10px;
  color: var(--text-color, #000);
  opacity: 0.8;
}

.hero__title-by em {
  font-style: normal;
  color: #b8720a;
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  opacity: 1;
  font-size: 1.5em;
}

.hero__description {
  font-size: 16px;
  color: var(--black-light-color, #707070);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}

/* ============ Buttons ============ */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
  text-decoration: none;
}

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn--primary {
  background: linear-gradient(135deg, #c8860a 0%, #a06a06 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(180, 110, 10, 0.35);
}



.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(180, 110, 10, 0.5);
  background: linear-gradient(135deg, #dc960c 0%, #b87a08 100%);
}

.btn--secondary {
  background: transparent;
  color: var(--primary-color, #587964);
  border-color: var(--primary-color, #587964);
}


.btn--secondary:hover {
  background: var(--primary-color, #587964);
  color: #fff;
  transform: translateY(-2px);
}

.btn--secondary:hover .btn__icon {
  color: #c8860a;
}

/* Dark mode buttons */
body.dark .btn--secondary {
  color: var(--text-color, #CCC);
  border-color: rgba(200, 200, 200, 0.4);
}

body.dark .btn--secondary:hover {
  background: rgba(200, 200, 200, 0.15);
  border-color: rgba(200, 200, 200, 0.7);
  color: #fff;
}

/* ============ Stats ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  background: rgba(88, 121, 100, 0.08);
  border: 1px solid rgba(88, 121, 100, 0.2);
  border-radius: 14px;
}

body.dark .stats {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Override index.css blue tint → gold for hero stats icons */
.stats .metric-icon {
  background: rgba(200, 134, 10, 0.12);
  color: #c8860a;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.stats .metric-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-color, #000);
}

.stats .metric-title {
  font-size: 0.8rem;
  color: var(--black-light-color, #707070);
}

.stats .metric-card {
  padding: 12px;
}


/* ============ Media (Image) ============ */
.hero__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(88, 121, 100, 0.3) 0%, transparent 65%);
  filter: blur(32px);
  z-index: 0;
  pointer-events: none;
}

body.dark .hero__glow {
  background: radial-gradient(circle at 50% 50%, rgba(200, 134, 10, 0.2) 0%, transparent 65%);
}

.hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  height: 400px;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  /* No hard border so it blends */
  box-shadow: none;
  /* Remove drop shadow that fights the bg */
  -webkit-mask-image:
    linear-gradient(to bottom, black 55%, transparent 100%),
    linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image:
    linear-gradient(to bottom, black 55%, transparent 100%),
    linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
}

.hero__urdu {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  text-align: right;
  color: var(--text-color, #000);
}

.hero__urdu-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.hero__urdu-tag {
  font-size: 14px;
  color: #c8860a;
}

/* ============ Features Strip ============ */
.features {
  max-width: 1280px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
  background: rgba(88, 121, 100, 0.07);
  border: 1px solid rgba(88, 121, 100, 0.18);
  border-radius: 14px;
}

body.dark .features {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

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

.feature__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(200, 134, 10, 0.12);
  color: #c8860a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.feature__title {
  font-size: 14px;
  color: var(--text-color, #000);
  margin-bottom: 3px;
  font-weight: 700;
}

.feature__text {
  font-size: 12px;
  color: var(--black-light-color, #707070);
}

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero__content {
    order: 1;
    max-width: 100%;
  }

  .hero__media {
    order: 2;
    min-height: 360px;
  }

  .hero__image {
    height: 400px;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 28px 16px;
  }

  .hero__title {
    font-size: 30px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__image {
    height: 320px;
  }

  .hero__urdu-name {
    font-size: 16px;
  }

  .hero__urdu-tag {
    font-size: 13px;
  }

  .features {
    grid-template-columns: 1fr;
  }
}