/* =========================================
   CONTACT PAGE
========================================= */
body.contact-page {
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
  font-family: "Shree714", 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 #000000;
}

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

.contact-body {
  padding: 24px 24px 32px 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 {
  font-family: "Shree714", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  letter-spacing: 0.5px;
}

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

  .contact-links a {
    font-size: 15px;
  }
}