/* =========================================
   CONTACT PAGE
========================================= */
body.contact-page {
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
  font-family: 'Noto Sans Arabic', sans-serif;
  color: #000000;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Nav overrides — black text, pink active */
body.contact-page .name {
  color: #000000;
}

body.contact-page .menu a {
  color: #000000;
}

body.contact-page .menu a.active {
  color: #ff3eb5;
}

/* Hide footer icons on contact page — links already in box */
body.contact-page .footer {
  display: none;
}

/* Centered box layout */
.contact-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 60px 20px;
}

.contact-box {
  width: 100%;
  max-width: 710px;
  border: 1.5px solid #ff3eb5;
}

.contact-header {
  padding: 16px 24px;
  border-bottom: 1.5px solid #ff3eb5;
  font-family: 'Noto Sans Arabic', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  text-align: center;
}

.contact-body {
  padding: 24px 24px 16px 24px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-links a,
.contact-links a:link {
  font-family: 'Noto Sans Arabic', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #191919;
  text-decoration: none;
  letter-spacing: -0.01em;
}

/* =========================================
   RESPONSIVE — MOBILE
========================================= */
@media (max-width: 600px) {
  .contact-main {
    padding: 80px 18px 60px;
    align-items: flex-start;
    padding-top: 100px;
  }

  .contact-box {
    width: 100%;
  }

  .contact-header {
    font-size: 13px;
    padding: 12px 16px;
  }

  .contact-body {
    min-height: 200px;
    padding: 16px 16px 24px 16px;
  }

  .contact-links a,
  .contact-links a:link {
    font-size: 14px;
  }
}