/* ============================================================
   HOME PAGE — Specific Styles
   ============================================================ */

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(13, 50, 48, 0.88) 0%,
    rgba(13, 92, 86, 0.7) 50%,
    rgba(13, 92, 86, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 80px;
}

/* Hero Text */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-title-accent {
  color: var(--teal-light);
  display: inline;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.5s ease both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 600;
}

/* Hero Card */
.hero-card {
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-card-inner {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}

.hero-card-inner h3 {
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.hero-card-inner > p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 24px;
}

.hero-card-badges {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-card-badges span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-dark);
  background: var(--teal-pale);
  padding: 4px 12px;
  border-radius: 50px;
}

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  text-decoration: none;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}

.scroll-arrow {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ---- STATS BAND ---- */
.stats-band {
  background: var(--teal-dark);
  padding: 0;
}

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

.stats-band .stat-block {
  padding: 36px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stats-band .stat-block:last-child { border-right: none; }

.stats-band .stat-number {
  font-size: 2.8rem;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.stats-band .stat-label {
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
}

/* ---- INTRO IMGS ---- */
.intro-imgs { position: relative; }

.intro-img-main img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.intro-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.intro-img-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

/* ---- WHY CHOOSE US ---- */
.why-img-wrap {
  position: relative;
}

.why-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.14);
}

.why-img-badge {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.16);
  text-align: center;
}

.why-img-badge .badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.why-img-badge .badge-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.why-list { display: flex; flex-direction: column; gap: 20px; }

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.why-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--teal-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--charcoal);
}

.why-item p { font-size: 0.875rem; color: var(--gray); }

/* ---- AREAS GRID ---- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
}

.area-tag {
  padding: 8px 18px;
  background: var(--teal-pale);
  color: var(--teal-dark);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--teal-mid);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-card { max-width: 480px; }
  .why-img-badge { right: 16px; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .why-img { height: 360px; }
  .why-img-badge { right: 16px; bottom: 16px; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 2.4rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-trust { flex-direction: column; gap: 12px; }
}

/* ============================================================
   SA PARTNER BANNER — Hero section
   ============================================================ */
.sa-partner-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 14px 20px;
  margin-top: 8px;
  margin-bottom: 4px;
  max-width: 520px;
  transition: background 0.3s ease;
}

.sa-partner-banner:hover {
  background: rgba(255, 255, 255, 0.15);
}

.sa-partner-flag {
  font-size: 1.9rem;
  flex-shrink: 0;
  line-height: 1;
}

.sa-partner-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.sa-partner-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.sa-partner-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.btn-sa-partner {
  background: var(--white);
  color: var(--teal-dark);
  border: 2px solid var(--white);
  padding: 9px 18px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.btn-sa-partner:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
  .sa-partner-banner {
    flex-wrap: wrap;
    gap: 10px;
  }
  .btn-sa-partner {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   SA PARTNER BANNER — Mobile Fix
   ============================================================ */

/* On mobile the banner should stack cleanly */
@media (max-width: 768px) {
  .sa-partner-banner {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 10px 12px;
    padding: 16px 18px;
    margin-top: 16px;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 14px;
    align-items: center;
  }

  .sa-partner-flag {
    font-size: 2rem;
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    align-self: center;
  }

  .sa-partner-text {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
  }

  .sa-partner-label {
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    display: block;
    color: #fff;
    font-weight: 800;
  }

  .sa-partner-sub {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
    margin-top: 2px;
    display: block;
  }

  .btn-sa-partner {
    grid-row: 2 / 3;
    grid-column: 1 / 3;
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 11px 18px;
    font-size: 0.88rem;
    background: #fff;
    color: var(--teal-dark);
    border: 2px solid #fff;
    border-radius: 50px;
    font-weight: 800;
  }

  .btn-sa-partner:hover {
    background: var(--teal-light);
    border-color: var(--teal-light);
    color: #fff;
  }

  /* Hero text full width on mobile */
  .hero-content {
    grid-template-columns: 1fr !important;
    padding-top: 20px !important;
    padding-bottom: 60px !important;
  }

  .hero-title {
    font-size: 2.2rem !important;
  }

  .hero-card {
    display: none !important;
  }
}
