/* ============================================================
   HOME HERO / STATS
   ============================================================ */
.hero-section {
  background: linear-gradient(135deg, #061B2C 0%, #0e2f47 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(226,92,55,0.08) 0%, transparent 70%);
}

.hero-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
}

.stats-section {
  background: #fff;
  padding: 2.5rem 0;
  border-top: 3px solid #E25C37;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  padding: 1.5rem;
}

.stat-icon {
  width: 64px;
  height: 64px;
  background: rgba(226,92,55,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E25C37;
  transition: all 0.3s;
}

.stat-item:hover .stat-icon {
  background: #E25C37;
  color: #fff;
  transform: translateY(-4px);
}

.stat-label {
  font-size: 1rem;
  font-weight: 700;
  color: #061B2C;
}

/* ============================================================
   HOME PAGE (REFERENCE MATCH)
   ============================================================ */
.home-main {
  background: #efefef;
  padding-bottom: 3rem;
}

.home-hero {
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.06) 30%, rgba(255,255,255,0) 62%),
    #eb6744;
  min-height: 520px;
}

.home-hero-inner {
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 1rem;
}

.home-hero-image {
  width: min(780px, 100%);
  height: auto;
  object-fit: contain;
  transform: translateX(-434px);
  margin-bottom: 40px;
}

.home-quick-links {
  margin-top: -64px;
  position: relative;
  z-index: 5;
}

.quick-links-card {
  width: min(100%, 760px);
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #dbe5ef;
  box-shadow: 0 12px 30px rgba(9, 30, 66, 0.16);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.quick-link-item {
  text-decoration: none;
  color: #061B2C;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 134px;
  padding: 0.95rem 0.55rem;
  border-left: 1px solid #e6edf5;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.quick-link-item:last-child {
  border-left: 0;
}

.quick-link-item:hover {
  background: #f8fbff;
  color: #e25c37;
  transform: translateY(-2px);
}

.quick-link-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(226, 92, 55, 0.25);
  background: linear-gradient(135deg, rgba(226,92,55,0.14), rgba(226,92,55,0.04));
  color: #E25C37;
}

.quick-link-icon svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.9;
}

.quick-link-label {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.home-cta-section {
  padding-top: 1.75rem;
}

.home-cta-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-cta-item {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(6, 27, 44, 0.22);
  border: 1px solid rgba(6, 27, 44, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-cta-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(6, 27, 44, 0.28);
}

.home-cta-item img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .home-hero,
  .home-hero-inner {
    min-height: 440px;
  }

  .home-hero-image {
    width: min(620px, 100%);
    transform: none;
  }

  .quick-link-label {
    font-size: 1.2rem;
  }

  .quick-link-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 900px) {
  .home-hero {
    min-height: 390px;
    background:
      radial-gradient(circle at 50% 38%, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.08) 30%, rgba(255,255,255,0) 68%),
      #eb6744;
  }

  .home-hero-inner {
    min-height: 390px;
    align-items: flex-end;
    justify-content: center;
    padding-top: 0;
  }

  .home-hero-image {
    width: min(319px, 66vw);
    transform: none;
    margin-bottom: -20px;
    object-fit: contain;
    margin-left: 25px;
  }

  .home-quick-links {
    margin-top: -42px;
  }

  .quick-links-card {
    width: min(100%, 560px);
  }

  .quick-link-item {
    min-height: 112px;
    padding: 0.75rem 0.45rem;
  }

  .quick-link-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .quick-link-icon svg {
    width: 28px;
    height: 28px;
  }

  .quick-link-label {
    font-size: 1.02rem;
  }

  .home-cta-section {
    padding-top: 1.25rem;
  }

  .home-cta-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
