/* Dream Lands — Contact section */
/* ===== Contact Section ===== */
.contact-section {
  background: #0d1a14;
  color: #fff;
  padding: 4rem 1.5rem;
  scroll-margin-top: 64px;
}

.contact-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-light);
  margin-bottom: .5rem;
}

.contact-subtitle {
  color: rgba(255, 255, 255, .65);
  font-size: .95rem;
  margin-bottom: 2rem;
}

.contact-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1rem;
  padding: 1.5rem 2.5rem;
  transition: background .2s, border-color .2s;
  text-decoration: none;
  color: #fff;
  min-width: 240px;
}

.contact-card:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--green-light);
}

.contact-card svg {
  color: var(--green-light);
}

.contact-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

.contact-value {
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 500px) {
  .contact-cards {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    width: 100%;
    max-width: 300px;
  }
}

