/* Phase 22 — تم سایت عمومی (الهام‌گرفته از Bizfinity، برای کسب‌وکار
   مشاوره/آژانس). رنگ‌های برند مستقیم از خود لوگو نمونه‌برداری شدن. */

:root {
  --brand-green: #1f3b2f;
  --brand-green-dark: #16291f;
  --brand-green-light: #2d5443;
  --brand-cream: #f7f4ed;
  --brand-gold: #c9a227;
}

body {
  color: #2a2a2a;
  background: #ffffff;
}

/* ===== ناوبری ===== */
.site-navbar {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-navbar .navbar-brand img { height: 34px; }
.site-navbar .nav-link {
  color: #333 !important;
  font-weight: 500;
  padding: 8px 14px !important;
}
.site-navbar .nav-link.active { color: var(--brand-green) !important; font-weight: 700; }
.site-navbar .dropdown-menu { border: none; box-shadow: 0 8px 24px rgba(0,0,0,.1); }

/* ===== هیرو ===== */
.site-hero {
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-light) 100%);
  color: #fff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.site-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(201,162,39,.15), transparent 50%);
}
.site-hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
}
.site-hero p.lead {
  font-size: 19px;
  color: rgba(255,255,255,.85);
  max-width: 620px;
  margin: 0 auto 32px;
  position: relative;
}
.btn-brand {
  background: var(--brand-gold);
  color: #1a1a1a;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 8px;
  border: none;
}
.btn-brand:hover { background: #b8931f; color: #1a1a1a; }

.site-hero .btn-brand {
  background: var(--brand-gold);
  color: #1a1a1a;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 8px;
  border: none;
}
.site-hero .btn-brand:hover { background: #b8931f; color: #1a1a1a; }
.site-hero .btn-outline-light { border-radius: 8px; padding: 12px 32px; font-weight: 600; }

/* ===== آمار ===== */
.stats-strip {
  background: var(--brand-cream);
  padding: 36px 0;
}
.stats-strip .stat-number {
  font-size: 34px;
  font-weight: 800;
  color: var(--brand-green);
}
.stats-strip .stat-label { color: #666; font-size: 14px; }

/* ===== بخش‌های عمومی ===== */
.site-section { padding: 80px 0; }
.site-section-title {
  text-align: center;
  margin-bottom: 56px;
}
.site-section-title .eyebrow {
  color: var(--brand-gold);
  font-weight: 700;
  letter-spacing: .5px;
  font-size: 14px;
  text-transform: uppercase;
}
.site-section-title h2 {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  color: var(--brand-green-dark);
  margin-top: 8px;
}

.feature-card {
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 32px 26px;
  height: 100%;
  transition: transform .15s ease, box-shadow .15s ease;
  background: #fff;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(31,59,47,.10);
}
.feature-card .feature-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: var(--brand-cream);
  color: var(--brand-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: #666; font-size: 15px; margin: 0; }

/* ===== CTA ===== */
.cta-band {
  background: var(--brand-green-dark);
  color: #fff;
  padding: 60px 0;
  text-align: center;
  border-radius: 20px;
  margin: 0 auto;
}
.cta-band h2 { font-weight: 800; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.8); margin-bottom: 28px; }

/* ===== فوتر ===== */
.site-footer {
  background: var(--brand-green-dark);
  color: rgba(255,255,255,.7);
  padding: 56px 0 24px;
  margin-top: 80px;
}
.site-footer h5 { color: #fff; font-weight: 700; margin-bottom: 18px; }
.site-footer a { color: rgba(255,255,255,.65); text-decoration: none; }
.site-footer a:hover { color: var(--brand-gold); }
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 36px;
  padding-top: 20px;
  font-size: 14px;
  text-align: center;
  color: rgba(255,255,255,.5);
}

/* موبایل */
@media (max-width: 767px) {
  .site-hero { padding: 56px 0; }
  .site-section { padding: 52px 0; }
}
