/* فونت‌ها */
@font-face {
  font-family: 'BMitra';
  src: url('../fonts/BMITRA.woff2') format('woff2'),
       url('../fonts/BMITRA.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BMitra';
  src: url('../fonts/BMITRABD.woff2') format('woff2'),
       url('../fonts/BMITRABD.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* رنگ‌ها */
:root {
  --bg-main: #050505;          /* مشکی مات کامل */
  --bg-card: rgba(15, 15, 15, 0.96);
  --rose-gold: #b76e79;        /* رزگلد مات */
  --rose-gold-soft: #c58690;
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --border-soft: #27272f;
}

/* پایه */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'BMitra', Tahoma, sans-serif;
  background: radial-gradient(circle at top, #111 0, #050505 45%, #000 100%);
  color: var(--text-main);
  line-height: 1.9;
  animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* کانتینر عمومی */
.container {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
}

/* هدر */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(183, 110, 121, 0.35);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--rose-gold);
}

header a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(183, 110, 121, 0.4);
  transition: 0.2s ease;
}

header a:hover {
  background: rgba(183, 110, 121, 0.12);
}

/* بخش هرو */
.hero {
  padding: 60px 0 40px;
  text-align: center;
  background: radial-gradient(circle at top, #1a1a1a 0, #050505 55%);
  border-bottom: 1px solid var(--border-soft);
}

.hero h1 {
  margin: 0 0 10px;
  font-size: 34px;
  color: var(--rose-gold-soft);
  font-weight: 700;
}

.hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 18px;
}

/* گرید تماس / فرم */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin: 40px 0 60px;
  align-items: start;
}

/* کارت‌ها */
.card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(183, 110, 121, 0.03));
  border-radius: 22px;
  padding: 26px;
  border: 1px solid rgba(183, 110, 121, 0.35);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.75);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(183, 110, 121, 0.25);
}

.card h2 {
  margin: 0 0 18px;
  font-size: 24px;
  color: var(--text-main);
  font-weight: 700;
}

/* لیست تماس‌ها */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  background: radial-gradient(circle at top left, rgba(183, 110, 121, 0.12), rgba(5, 5, 5, 0.96));
  border-radius: 18px;
  padding: 16px 16px 18px;
  border: 1px solid rgba(183, 110, 121, 0.4);
}

.contact-label {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
  direction: ltr;
  unicode-bidi: isolate;
  font-family: Tahoma, sans-serif;
  letter-spacing: 1px;
}

/* دکمه واتساپ */
.item-actions {
  margin-bottom: 12px;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border: none;
  background: linear-gradient(135deg, #128c7e, #0b5e4a);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(18, 140, 126, 0.55);
  transition: 0.18s ease;
}

.btn-wa:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(18, 140, 126, 0.75);
}

/* QR */
.mini-qr {
  text-align: center;
  border-radius: 14px;
  padding: 12px;
  background: radial-gradient(circle at top, rgba(183, 110, 121, 0.16), rgba(5, 5, 5, 0.96));
  border: 1px solid rgba(183, 110, 121, 0.4);
}

.mini-qr img {
  width: 140px;
  max-width: 100%;
  border-radius: 10px;
  background: #050505;
  padding: 6px;
  border: 1px solid rgba(183, 110, 121, 0.5);
}

/* فرم */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input,
textarea,
select {
  width: 100%;
  padding: 11px 13px;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  background: rgba(10, 10, 10, 0.96);
  color: var(--text-main);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: 0.18s ease;
}

input::placeholder,
textarea::placeholder {
  color: #6b7280;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--rose-gold-soft);
  box-shadow: 0 0 0 1px rgba(183, 110, 121, 0.6);
}

/* دکمه اصلی فرم */
.btn-primary {
  width: 100%;
  padding: 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  background: linear-gradient(135deg, #b76e79, #a45a64);
  color