/* contacts page - scoped */

.contacts-page {
  --primary: #1a73e8;
  --primary-dark: #1357b7;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #f5f7fb;
  --card: #ffffff;
  --border: #e5e7eb;
  --success: #10b981;
  --danger: #ef4444;

  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  font-family: "Vazirmatn", "IRANSans", sans-serif;
}

/* ریست محدود به همین صفحه */
.contacts-page *,
.contacts-page *::before,
.contacts-page *::after {
  box-sizing: border-box;
}

.contacts-page a {
  color: inherit;
  text-decoration: none;
}

/* layout */
.contacts-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}

.contacts-hero {
  background: linear-gradient(135deg, #eef5ff, #ffffff);
  padding: 48px 0 28px;
  border-bottom: 1px solid var(--border);
}

.contacts-hero h1 {
  margin: 0 0 10px;
  font-size: 32px;
}

.contacts-hero p {
  margin: 0;
  color: var(--muted);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  padding: 32px 0 48px;
}

.contacts-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .04);
}

/* فرم */
.contacts-form-group {
  margin-bottom: 14px;
}

.contacts-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.contacts-input,
.contacts-textarea,
.contacts-select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
}

.contacts-textarea {
  min-height: 120px;
  resize: vertical;
}

.contacts-input:focus,
.contacts-textarea:focus,
.contacts-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, .12);
}

.contacts-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contacts-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
}

.contacts-btn:hover {
  background: var(--primary-dark);
}

/* اطلاعات تماس */
.contacts-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.contacts-info-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px;
  border: 1px dashed var(--border);
  border-radius: 12px;
  background: #f9fafb;
}

.contacts-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8f0ff;
  color: var(--primary);
  font-weight: 700;
}

.contacts-muted {
  color: var(--muted);
  font-size: 14px;
}

/* نقشه */
.contacts-map {
  border: 0;
  width: 100%;
  height: 240px;
  border-radius: 14px;
  filter: grayscale(20%);
}

/* ریسپانسیو */
@media (max-width: 992px) {
  .contacts-grid { grid-template-columns: 1fr; }
  .contacts-form-row { grid-template-columns: 1fr; }
}
