/* ========== PAGE 4 – CONTACT ========== */
.page-4 {
  background: #f4b740;
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-wrapper {
  width: 100%;
  padding: 20px;
}

.contact-card {
  max-width: 900px;
  min-height: 500px;

  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 36px;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card h2 {
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: 700;
  color: #111;
}

.contact-text {
  opacity: 0.7;
  font-size: 18px;
}

/* ========== CONTACT LINKS ========== */
.contact-links {
  margin-top: 50px;
  font-size: 18px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-links a {
  text-decoration: none;
  font-weight: 600;
  color: #111;
  transition: opacity 0.2s ease;
}

.contact-links a:hover {
  opacity: 0.7;
}

/* DIVIDER */
.contact-divider {
  width: 220px;
  height: 1px;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  margin: 8px 0;
}

/* SOCIAL ICON ROW */
.social-media-links {
  display: flex;
  gap: 32px;
  justify-content: center;
}

.social-link-row {
  font-size: 30px;
  color: #111;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-link-row:hover {
  transform: translateY(-2px);
  opacity: 0.75;
}

/* ========== FOOTER ========== */
.site-footer {
  text-align: center;
  padding: 16px;
  font-size: 14px;
  opacity: 0.7;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1000px) {
  .contact-card {
    min-height: auto;
    padding: 28px 20px;
  }

  .contact-card h2 {
    font-size: 36px;
  }

  .contact-text {
    font-size: 16px;
  }

  .social-link-row {
    font-size: 26px;
  }
}
