/* ============================================================
   آتلیه کودک نینو — صفحه تماس با ما (contact-v1.css)
   تم: بژ روشن + سفید + مشکی (هماهنگ با tokens-v3)
   ============================================================ */

/* ===== هیرو ===== */
.contact-hero {
  position: relative;
  padding: 140px 24px 56px;
  background: linear-gradient(180deg, var(--beige-light) 0%, var(--white) 100%);
  text-align: center;
}
.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 10px;
}
.contact-hero p {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(0,0,0,.55);
  max-width: 620px;
  margin: 0 auto;
}

/* ===== بخش اصلی ===== */
.contact-main {
  padding: 20px 24px 100px;
  background: var(--white);
}

/* کارت معرفی آنلاین بودن */
.contact-online {
  max-width: 760px;
  margin: 0 auto 64px;
  background: var(--beige-light);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
}
.contact-online-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-online-icon svg { width: 30px; height: 30px; }
.contact-online h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 14px;
  line-height: 1.4;
}
.contact-online p {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: rgba(0,0,0,.7);
  line-height: 2.05;
  max-width: 560px;
  margin: 0 auto;
}

/* شبکه‌های اجتماعی */
.contact-socials-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 8px;
}
.contact-socials-sub {
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(0,0,0,.55);
  margin-bottom: 36px;
}
.contact-socials {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.contact-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 150px;
  padding: 28px 24px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.09);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.contact-social:hover {
  transform: translateY(-3px);
  border-color: rgba(0,0,0,.22);
  box-shadow: 0 14px 34px rgba(0,0,0,.07);
}
.contact-social .social-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--beige-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.contact-social:hover .social-icon {
  background: var(--black);
  color: var(--white);
}
.contact-social .social-icon svg { width: 26px; height: 26px; }
.contact-social .social-name {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--black);
}
.contact-social .social-value {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(0,0,0,.55);
  direction: ltr;
}

/* شماره تماس نمایشی */
.contact-phone-note {
  text-align: center;
  margin-top: 40px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(0,0,0,.6);
}
.contact-phone-note a {
  color: var(--black);
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,.25);
  transition: border-color .2s ease;
}
.contact-phone-note a:hover { border-color: var(--black); }

/* ===== موبایل ===== */
@media (max-width: 768px) {
  .contact-hero { padding: 115px 16px 44px; }
  .contact-hero h1 { font-size: 30px; }
  .contact-main { padding: 16px 16px 70px; }
  .contact-online { padding: 36px 22px; border-radius: 18px; }
  .contact-socials { gap: 14px; }
  .contact-social { min-width: 130px; padding: 14px 16px; border-radius: 16px; }
  .contact-social .social-icon { width: 48px; height: 48px; }
  .contact-social .social-icon svg { width: 22px; height: 22px; }
}