.contact-hero {
  background: white;
  /* color: white; */
  padding: 120px 0 180px 0;
  position: relative;
  overflow: hidden;
  margin-top: 88px;
  z-index: 0;
}

.contact-hero .sub-label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.contact-hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--secondary-blue-dark);
}

.contact-hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 500px;
}

.hero-curve {
  position: absolute;
  bottom: -100px;
  left: -50px;
  min-width: 800px;
  width: 80%;
  height: 600px;
  background: #e7f3db;
  border-radius: 0 650px 0 0;
  z-index: -1;
}

.contact-details {
  padding: 80px 0;
  background: #fff;
}

.details-grid {
  max-width: 800px;
  margin: 0 auto;
}

.info-group {
  margin-bottom: 25px;
  font-size: 1.1rem;
  display: flex;
  gap: 10px;
}

.info-group strong {
  color: #333;
  min-width: 220px;
}

.info-group a,
.info-group span {
  color: #1a5c40; /* RUWAI Primary Green */
  text-decoration: none;
  transition: color 0.3s;
}

.info-group a:hover {
  text-decoration: underline;
  color: #2e7d32;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2.5rem;
  }
  .info-group {
    flex-direction: column;
    gap: 5px;
  }
  .info-group strong {
    min-width: auto;
  }
}
