/* Premium Iranian medical RTL — Jacquet / Doccure class */
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #0B4F6C;
  --primary-soft: rgba(11, 79, 108, 0.08);
  --secondary: #1A8A9D;
  --accent: #C4A35A;
  --dark: #0A2540;
  --text: #1A2B3C;
  --muted: #5B6B7C;
  --line: rgba(10, 37, 64, 0.08);
  --bg: #F3F7F9;
  --bg-alt: #EAF2F5;
  --card: #FFFFFF;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 10px 40px rgba(10, 37, 64, 0.08);
  --shadow-sm: 0 4px 16px rgba(10, 37, 64, 0.06);
  --header-h: 72px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.theme-dark {
  --bg: #071521;
  --bg-alt: #0C2130;
  --card: #102636;
  --text: #E8F1F5;
  --muted: #9BB0BE;
  --line: rgba(255, 255, 255, 0.08);
  --dark: #020B12;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Vazirmatn', Tahoma, sans-serif;
  direction: rtl;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.fb-icon {
  display: inline-flex;
  width: 1.25em;
  height: 1.25em;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex-shrink: 0;
}
.fb-icon svg { width: 100%; height: 100%; display: block; }

/* ─── Buttons (design system) ─── */
.btn-primary,
.btn-outline,
.btn-ghost,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(11, 79, 108, 0.28);
}
.btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26, 138, 157, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary-soft);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.22); }

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.theme-dark .site-header { background: rgba(7, 21, 33, 0.92); }
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.logo span {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--secondary);
}
.nav {
  display: flex;
  gap: 1.75rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
}
.nav a,
.nav-link {
  position: relative;
  transition: color 0.2s;
  color: inherit;
}
.nav a:hover,
.nav-link:hover { color: var(--primary); }
.nav a::after,
.nav-link::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.25s var(--ease);
}
.nav a:hover::after,
.nav-link:hover::after { width: 100%; }
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--primary);
  flex-shrink: 0;
}
.nav-toggle .fb-icon { width: 22px; height: 22px; }
.header-cta {
  min-height: 42px;
  padding: 0.55rem 1.2rem;
  background: var(--primary);
  color: #fff !important;
  font-size: 0.85rem;
  box-shadow: none;
}
.header-cta:hover { background: var(--secondary); }

@media (max-width: 860px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .header-inner { padding-inline: 1rem; }
}
body.nav-open { overflow: hidden; }
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100dvh;
  background: #fff;
  z-index: 200;
  box-shadow: -12px 0 40px rgba(10, 37, 64, 0.18);
  padding: 1.25rem 1.1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateX(0);
  animation: drawerIn 0.35s var(--ease);
}
.nav-drawer[hidden] { display: none !important; }
@keyframes drawerIn {
  from { transform: translateX(100%); opacity: 0.6; }
  to { transform: translateX(0); opacity: 1; }
}
.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
  color: var(--dark);
}
.nav-close {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--primary);
  display: grid;
  place-items: center;
}
.nav-mobile {
  flex-direction: column;
  gap: 0.25rem;
  align-items: stretch;
}
.nav-mobile .nav-link {
  padding: 0.85rem 0.65rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
}
.nav-mobile .nav-link:hover {
  background: var(--primary-soft);
}
.nav-mobile .nav-link::after { display: none; }
.nav-drawer-cta { width: 100%; margin-top: auto; }
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 37, 64, 0.45);
  z-index: 150;
  backdrop-filter: blur(2px);
}
.nav-backdrop[hidden] { display: none !important; }

/* ─── Trust strip ─── */
.trust-strip {
  background: var(--card);
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 1rem;
}
.trust-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  justify-content: center;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--bg-alt);
}
.trust-chip .fb-icon { width: 1rem; height: 1rem; color: var(--secondary); }

/* ─── Full-bleed hero ─── */
.hero-bleed {
  position: relative;
  min-height: min(88vh, 720px);
  display: grid;
  align-items: stretch;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(10, 37, 64, 0.92) 0%, rgba(11, 79, 108, 0.78) 48%, rgba(26, 138, 157, 0.45) 100%),
    var(--hero-image, linear-gradient(135deg, #0B4F6C, #1A8A9D)) center/cover no-repeat;
}
.hero-bleed::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(196, 163, 90, 0.18), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(26, 138, 157, 0.25), transparent 35%);
  pointer-events: none;
}
.hero-bleed-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 5rem 1.5rem 4.5rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-bleed { min-height: auto; }
  .hero-bleed-inner { grid-template-columns: 1fr; padding: 3.5rem 1.25rem 3rem; }
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #F3E6C0;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.hero-kicker .fb-icon { width: 1rem; height: 1rem; color: var(--accent); }
.hero-bleed h1 {
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  line-height: 1.28;
  font-weight: 800;
  margin-bottom: 1rem;
  max-width: 16ch;
  animation: riseIn 0.7s var(--ease) both;
}
.hero-bleed .sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 38ch;
  margin-bottom: 1.75rem;
  animation: riseIn 0.7s var(--ease) 0.08s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: riseIn 0.7s var(--ease) 0.14s both;
}
.hero-panel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.25rem;
  animation: riseIn 0.8s var(--ease) 0.18s both;
}
.hero-panel-title {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 1rem;
}
.hero-trust-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}
.hero-trust-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.hero-trust-list .fb-icon {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #F3E6C0;
  padding: 0.35rem;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* ─── Stats ─── */
.stats-bar {
  background: var(--dark);
  color: #fff;
  padding: 1.75rem 1.5rem;
  position: relative;
  z-index: 2;
}
.stats-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  text-align: center;
}
@media (max-width: 768px) { .stats-inner { grid-template-columns: repeat(2, 1fr); } }
.stat-num {
  font-size: 1.85rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 0.2rem;
}

/* ─── Sections ─── */
.section {
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 1.5rem);
  max-width: var(--container);
  margin: 0 auto;
}
.section-alt {
  background: var(--bg-alt);
  max-width: none;
  padding: 5rem 0;
}
.section-alt > .section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-head {
  text-align: center;
  margin-bottom: 2.75rem;
}
.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}
.section-head h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.05rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}
.theme-dark .section-head h2 { color: var(--text); }
.section-head p {
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  font-size: 0.98rem;
}
.section-head--line h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  margin: 0.75rem auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/* ─── Process steps ─── */
.section-process { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.process-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}
@media (max-width: 960px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process-grid { grid-template-columns: 1fr; } }
.process-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem 1.15rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.process-card::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
}
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.process-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--dark);
}
.process-card p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── Services ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(26, 138, 157, 0.25);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.service-icon .fb-icon,
.service-icon-svg {
  width: 26px;
  height: 26px;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: var(--dark);
}
.theme-dark .service-card h3 { color: var(--text); }
.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  min-height: 2.8em;
}
.service-card .price {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--line);
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.92rem;
}
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  transition: gap 0.2s var(--ease), color 0.2s;
}
.service-cta .fb-icon { width: 0.9rem; height: 0.9rem; }
.service-cta:hover { color: var(--secondary); gap: 0.55rem; }

/* ─── About ─── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) { .about-split { grid-template-columns: 1fr; } }
.about-img {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: #fff;
  color: var(--dark);
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
}
.about-badge strong {
  display: block;
  color: var(--primary);
  font-size: 1.2rem;
}
.about-text .eyebrow { margin-bottom: 0.5rem; color: var(--secondary); font-weight: 700; font-size: 0.8rem; }
.about-text h2 {
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.theme-dark .about-text h2 { color: var(--text); }
.about-text > p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
}
.credential-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin-top: 0.5rem;
}
.credential-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.credential-list .fb-icon {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--secondary);
  margin-top: 0.2rem;
}

/* ─── Gallery / Before-After ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-grid--pro .gallery-item:nth-child(3n+1) img { height: 260px; }
.gallery-grid--pro .gallery-item:nth-child(3n+2) img { height: 200px; }
.gallery-grid--pro .gallery-item:nth-child(3n) img { height: 240px; }
@media (max-width: 640px) {
  .gallery-grid--pro .gallery-item img { height: 220px !important; }
}
.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.5rem 0.9rem 0.85rem;
  background: linear-gradient(transparent, rgba(10, 37, 64, 0.85));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  margin-top: 1.5rem;
}
@media (max-width: 768px) { .ba-grid { grid-template-columns: 1fr; } }
.ba-card {
  background: var(--card);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ba-pair figure {
  position: relative;
  margin: 0;
}
.ba-pair img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.ba-pair figcaption {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  background: rgba(10, 37, 64, 0.78);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
}
.ba-meta {
  padding: 0.9rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
}

/* ─── Testimonials ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonials-track {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.35rem;
  margin: 0 -0.5rem;
  padding-inline: 0.5rem;
}
@media (min-width: 901px) {
  .testimonials-track { overflow: visible; margin: 0; padding: 0; }
}
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: none;
    display: flex;
    gap: 0.85rem;
    width: max-content;
    min-width: 100%;
  }
  .testimonial-card {
    flex: 0 0 min(88vw, 320px);
    scroll-snap-align: start;
  }
}
.testimonial-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.rating-stars {
  display: inline-flex;
  gap: 0.15rem;
  color: var(--accent);
}
.rating-stars .fb-icon { width: 0.95rem; height: 0.95rem; }
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--muted);
  flex: 1;
}
.testimonial-card .author-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.testimonial-card .author { font-weight: 700; font-size: 0.9rem; }
.testimonial-card .author-role { font-size: 0.75rem; color: var(--muted); }

/* ─── FAQ ─── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--card);
  border-radius: 12px;
  margin-bottom: 0.7rem;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(26, 138, 157, 0.35); }
.faq-q {
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q .faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 500;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--primary); color: #fff; }
.faq-a {
  padding: 0 1.25rem 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ─── CTA band ─── */
.cta-band {
  margin: 1rem 1.5rem 2rem;
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 20%, rgba(196, 163, 90, 0.22), transparent 35%),
    linear-gradient(120deg, var(--primary) 0%, #0D6B7C 55%, var(--secondary) 100%);
  color: #fff;
  text-align: center;
  padding: 3.5rem 1.5rem;
  box-shadow: var(--shadow);
}
.cta-band h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.65rem;
}
.cta-band p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
  max-width: 42ch;
  margin-inline: auto;
}
.cta-band .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.cta-band .btn-primary:hover {
  background: #F3E6C0;
  color: var(--dark);
}

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.6rem 1.25rem;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.contact-card .icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.9rem;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
}
.contact-card .icon .fb-icon { width: 24px; height: 24px; }
.contact-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.contact-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ─── Blog ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease);
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.blog-card .body { padding: 1.15rem; }
.blog-card .tag {
  font-size: 0.75rem;
  color: var(--secondary);
  font-weight: 700;
}
.blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0.4rem 0;
}
.blog-card p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ─── Footer ─── */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 2.75rem 1.5rem;
  text-align: center;
  font-size: 0.88rem;
}
.site-footer strong { color: #fff; }
.site-footer--rich {
  text-align: right;
  padding: 3rem 1.5rem 1.5rem;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
.footer-brand strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
.footer-grid h4 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  margin-bottom: 0.45rem;
}
.footer-contact .fb-icon { width: 1.1rem; height: 1.1rem; color: var(--accent); flex-shrink: 0; margin-top: 0.15rem; }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.8rem;
}

/* ─── Chat ─── */
.chat-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(11, 79, 108, 0.35);
  z-index: 1000;
  border: none;
  transition: transform 0.25s var(--ease), background 0.25s;
}
.chat-widget:hover {
  transform: translateY(-3px);
  background: var(--secondary);
}
.chat-widget .fb-icon { width: 24px; height: 24px; }

/* Editor canvas reuse */
.landing-canvas-root {
  background: var(--bg);
  color: var(--text);
  font-family: 'Vazirmatn', Tahoma, sans-serif;
  direction: rtl;
}
.landing-canvas-root .section { padding: 2rem 1.25rem; }
.landing-canvas-root .hero-bleed { min-height: 360px; }
.landing-canvas-root .hero-bleed-inner { padding: 2.5rem 1.25rem; }
.landing-canvas-root .hero-bleed h1 { font-size: 1.75rem; max-width: none; }
.landing-canvas-root .stats-bar { padding: 1.1rem; }
.landing-canvas-root .stat-num { font-size: 1.35rem; }
.landing-canvas-root .cta-band { margin: 0.5rem; padding: 2rem 1rem; }
.landing-canvas-root .trust-strip { display: none; }
.landing-canvas-root .section-process { padding: 1.5rem 1rem; }
.landing-canvas-root .process-grid { grid-template-columns: 1fr 1fr; }
.landing-canvas-root .site-footer--rich { display: none; }

@media (prefers-reduced-motion: reduce) {
  .hero-bleed h1, .hero-bleed .sub, .hero-actions, .hero-panel,
  .nav-drawer { animation: none !important; }
  .service-card:hover, .btn-primary:hover, .gallery-item:hover img { transform: none; }
}
