/* ===== TizVision — contact.css (صفحه تماس با ما) ===== */

/* Contact info cards: 4 tidy columns */
.contact-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-grid .buy-feature p { line-height: 2.1; }
.contact-grid .buy-feature a { color: var(--gold-soft); }
.contact-grid .buy-feature a:hover { text-decoration: underline; }

/* Social / messengers */
.social-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.02);
  border-radius: 999px;
  padding: 10px 20px;
  min-height: 44px;
  color: var(--text-2);
  font-size: 13.5px;
  transition: border-color .15s ease, color .15s ease;
}
.social-link:hover { border-color: var(--gold); color: var(--gold-soft); }
.social-link svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* Office card with symbolic map */
.office-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.map-placeholder {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(340px 220px at 55% 42%, rgba(240,164,40,0.13), transparent 70%),
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    var(--bg-soft);
  background-size: auto, 36px 36px, 36px 36px, auto;
  border-inline-end: 1px solid var(--border);
}
.map-pin {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-tint);
  border: 1px solid rgba(240,164,40,0.5);
  box-shadow: 0 0 0 14px rgba(240,164,40,0.06), 0 0 0 28px rgba(240,164,40,0.03);
}
.map-pin svg { width: 30px; height: 30px; fill: none; stroke: var(--gold); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.map-note {
  position: absolute;
  bottom: 14px;
  inset-inline-start: 16px;
  font-size: 12px;
  color: var(--text-2);
  background: rgba(21,21,31,0.6);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 12px;
}
.office-info { padding: 32px clamp(20px, 3vw, 36px); }
.office-info h3 { font-size: 17px; font-weight: 800; margin-bottom: 16px; }
.office-info ul { display: grid; gap: 12px; margin-bottom: 24px; }
.office-info li { color: var(--text-2); font-size: 14px; line-height: 2; }
.office-info li > span:first-child { color: var(--text); font-weight: 700; }
.office-info li a { color: var(--gold-soft); }
.office-info li a:hover { text-decoration: underline; }

@media (max-width: 860px) {
  .office-card { grid-template-columns: 1fr; }
  .map-placeholder { min-height: 220px; border-inline-end: none; border-bottom: 1px solid var(--border); }
}
