.fargah-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
main {
  position: relative;
}

.fargah-header {
  --header-bg: color-mix(in srgb, var(--bg-primary) 88%, transparent);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.fargah-header--scrolled {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--accent-stone);
  box-shadow: var(--shadow-soft);
}

[data-theme="dark"] .fargah-header:not(.fargah-header--scrolled) {
  background: transparent;
}

[data-theme="dark"] .fargah-header--scrolled {
  background: var(--bg-surface);
}

.fargah-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 80px;
  gap: 20px;
}

.fargah-logo {
  background: transparent;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}


.fargah-logo__mark-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
}

.fargah-logo__full {
  background: transparent;
  width: auto;
  max-width: 240px;
  height: auto;
  max-height: 96px;
  object-fit: contain;
}

.fargah-logo--footer {
  display: inline-flex;
}

.fargah-logo__svg {
  flex-shrink: 0;
}

.fargah-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.fargah-logo__studio {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
}

.fargah-logo__fa {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.fargah-logo__mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-brass));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 800;
}

.fargah-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fargah-nav > li > a {
  position: relative;
  display: inline-block;
  padding: 8px 2px 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.fargah-nav > li > a::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 0;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.fargah-nav > li > a:hover,
.fargah-nav > li > a.active {
  color: var(--accent-gold-text);
}

.fargah-nav > li > a:hover::before,
.fargah-nav > li > a.active::before {
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .fargah-nav > li > a::before {
    transition: none;
  }
}

.fargah-header nav {
  justify-self: center;
}

.fargah-header__end,
.fargah-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.fargah-header__end {
  justify-self: end;
}

[dir="rtl"] .fargah-header__end {
  justify-self: start;
}

.fargah-header__divider {
  width: 1px;
  height: 28px;
  background: var(--accent-stone);
  margin-inline: 4px;
  flex-shrink: 0;
}

/* Buttons */
.btn-fargah {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
}

.btn-fargah--primary {
  background: var(--accent-gold);
  color: #FFFFFF;
}

.btn-fargah--primary:hover {
  background: var(--accent-gold-hover);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

[data-theme="dark"] .btn-fargah--primary {
  color: #0E0E0E;
}

.btn-fargah--outline {
  background: transparent;
  color: var(--accent-gold-text);
  border: 1px solid var(--accent-gold);
}

.btn-fargah--outline:hover {
  background: rgba(200, 169, 110, 0.08);
  color: var(--accent-gold-text);
  border-color: var(--accent-gold-hover);
}

.btn-fargah--dark {
  background: #1A1A1A;
  color: #FFFFFF;
  border: none;
}

.btn-fargah--dark:hover {
  background: #2A2A2A;
  color: #FFFFFF;
}

[data-theme="dark"] .btn-fargah--dark {
  background: var(--bg-elevated);
}

.btn-fargah--whatsapp {
  background: var(--whatsapp);
  color: #FFFFFF;
  border: none;
}

.btn-fargah--whatsapp:hover {
  background: #1fb855;
  color: #FFFFFF;
}

.btn-fargah--block { width: 100%; }

.btn-fargah--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--accent-stone);
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-fargah--ghost:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-fargah--hero-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-fargah--hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.btn-fargah:disabled,
.btn-fargah[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-fargah--primary:active:not(:disabled) {
  transform: scale(0.98);
}

/* Hero — split RTL layout */
.fargah-hero-split {
  background: var(--bg-hero);
  min-height: 760px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.fargah-hero-split__content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.fargah-hero-split__inner {
  max-width: 560px;
}

.fargah-hero-split__eyebrow {
  color: var(--accent-gold);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.fargah-hero-split__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.fargah-hero-split__subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.9;
}

.fargah-hero-split__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.fargah-hero-split__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 4px;
}

.fargah-hero-split__link:hover { color: var(--accent-gold-text); }

.fargah-hero-split__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fargah-hero-split__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--accent-stone);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--text-primary);
}

.fargah-hero-split__badge-icon { color: var(--accent-gold); }

.fargah-hero-split__visual {
  flex: 1;
  position: relative;
  min-height: 400px;
}

.fargah-hero-split__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.fargah-hero-split__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 250, 247, 0.88), rgba(251, 250, 247, 0.45), rgba(251, 250, 247, 0.05));
}

[dir="ltr"] .fargah-hero-split__gradient {
  background: linear-gradient(270deg, rgba(251, 250, 247, 0.88), rgba(251, 250, 247, 0.45), rgba(251, 250, 247, 0.05));
}

.fargah-hero-split__image--dark { display: none; }

[data-theme="dark"] .fargah-hero-split {
  background: #0A0A0A;
}

[data-theme="dark"] .fargah-hero-split__image--light { display: none; }
[data-theme="dark"] .fargah-hero-split__image--dark { display: block; }

[data-theme="dark"] .fargah-hero-split__title,
[data-theme="dark"] .fargah-hero-split__link { color: #FFFFFF; }

[data-theme="dark"] .fargah-hero-split__subtitle { color: #D8D1C4; }

[data-theme="dark"] .fargah-hero-split__badge {
  background: rgba(14, 14, 14, 0.55);
  border-color: var(--accent-gold);
  color: #F2EFE9;
}

[data-theme="dark"] .fargah-hero-split__gradient {
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.55), rgba(10, 10, 10, 0.08));
}

[dir="ltr"][data-theme="dark"] .fargah-hero-split__gradient {
  background: linear-gradient(270deg, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.55), rgba(10, 10, 10, 0.08));
}

@media (max-width: 992px) {
  .fargah-hero-split {
    flex-direction: column-reverse;
    min-height: auto;
  }
  .fargah-hero-split__visual { min-height: 320px; }
  .fargah-hero-split__content { padding: 48px 0 64px; }
}

/* Service cards */
.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--accent-stone);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.service-card__title {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.service-card__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-card__link {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Product / Project cards */
.editorial-card {
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-sanjab);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.editorial-card:hover,
.editorial-card:focus-within {
  border-color: color-mix(in srgb, var(--accent-gold) 55%, var(--border-sanjab));
  box-shadow: 0 8px 24px rgba(84, 65, 42, 0.1);
  transform: translateY(-3px);
}

.editorial-card__image {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.editorial-card__image img {
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.editorial-card:hover .editorial-card__image img,
.editorial-card:focus-within .editorial-card__image img {
  transform: scale(1.15);
}

.editorial-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.editorial-card__badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 4px 12px;
  border: 1px solid var(--accent-brass);
  border-radius: 99px;
  color: var(--accent-brass);
  margin-bottom: 12px;
  width: fit-content;
}

.editorial-card__title {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.editorial-card__meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.editorial-card__cta {
  margin-top: auto;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Trust stats */
.trust-stat {
  text-align: center;
  padding: 24px;
}

.trust-stat__value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.trust-stat__label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Why cards */
.why-card {
  padding: 28px;
  border-right: 2px solid var(--accent-gold);
  background: var(--bg-surface);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  height: 100%;
}

[dir="ltr"] .why-card {
  border-right: none;
  border-left: 2px solid var(--accent-gold);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.why-card__title {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.why-card__desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* Standards */
.standards-block {
  background: var(--bg-surface);
  border: 1px solid var(--accent-stone);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.standard-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bg-primary);
  border: 1px solid var(--accent-stone);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.standard-badge__icon {
  color: var(--accent-gold);
}

/* Gallery masonry */
.executed-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.executed-gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.executed-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.executed-gallery__item:hover img {
  transform: scale(1.06);
}

.executed-gallery__item--wide {
  grid-column: span 2;
}

@media (max-width: 992px) {
  .executed-gallery { grid-template-columns: repeat(2, 1fr); }
  .executed-gallery__item--wide { grid-column: span 1; }
}

/* Consultation form */
.consultation-panel {
  background: var(--bg-surface);
  border: 1px solid var(--accent-stone);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.form-fargah .form-control {
  background: var(--bg-primary);
  border: 1px solid var(--accent-stone);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text-primary);
  width: 100%;
}

.form-fargah .form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-fargah label {
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
  font-size: 0.9rem;
}

/* FAQ */
.faq-item {
  border: 1px solid var(--accent-stone);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-surface);
}

.faq-item__question {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item__answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer */
.fargah-footer {
  background: #111111;
  border-top: 1px solid #2A2A2A;
  padding: 0 0 24px;
  color: #FFFFFF;
}

.fargah-footer__intro {
  padding: 36px 0 44px;
  text-align: center;
  border-bottom: 1px solid #2A2A2A;
  margin-bottom: 36px;
}

.fargah-footer__intro-divider {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  opacity: 0.75;
}

.fargah-footer__intro-logo {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 28px;
}

.fargah-footer__intro-logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.fargah-footer__intro-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.fargah-footer__intro-ornament {
  flex-shrink: 0;
  opacity: 0.7;
}

.fargah-footer__intro-ornament--flip {
  transform: scaleX(-1);
}

.fargah-footer__intro-title {
  margin: 0;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 600;
  color: #E8E2D6;
  line-height: 1.5;
}

.fargah-footer__intro-body {
  max-width: 920px;
  margin: 0 auto;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.75;
  color: #B8B0A3;
}

.fargah-footer__intro-body p {
  margin: 0 0 14px;
}

.fargah-footer__intro-body p:last-child {
  margin-bottom: 0;
}

.fargah-footer__intro-highlight {
  font-weight: 600;
  color: var(--accent-gold);
  font-size: 0.95rem;
}

.fargah-footer a:not(.btn-fargah) {
  color: #B8B0A3;
}

.fargah-footer a:not(.btn-fargah):hover {
  color: var(--accent-gold);
}

.fargah-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 28px 32px;
  align-items: start;
  margin-bottom: 28px;
  padding-top: 4px;
}

.fargah-footer__brand {
  min-width: 0;
}

.fargah-footer__logo {
  display: block;
  margin-bottom: 10px;
}

.fargah-footer__tagline {
  margin: 0 0 12px;
  font-size: clamp(0.62rem, 0.55rem + 0.35vw, 0.74rem);
  font-weight: 700;
  color: #D8D1C4;
  line-height: 1.3;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-social__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #3A3A3A;
  color: #D8D1C4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-social__btn:hover {
  color: #FFFFFF;
}

.footer-social__btn--whatsapp:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: #25D366;
  color: #25D366;
}

.footer-social__btn--telegram:hover {
  background: rgba(38, 165, 228, 0.15);
  border-color: #26A5E4;
  color: #26A5E4;
}

.footer-social__btn--instagram:hover {
  background: rgba(228, 64, 95, 0.15);
  border-color: #E4405F;
  color: #E4405F;
}

.fargah-footer__heading {
  color: #FFFFFF;
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0 0 12px;
}

.fargah-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.84rem;
  line-height: 1.85;
}

.fargah-footer__links li + li {
  margin-top: 2px;
}

.footer-offices {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.84rem;
  line-height: 1.5;
}

.footer-offices__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid #2A2A2A;
}

.footer-offices__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.footer-offices__city {
  font-weight: 600;
  color: var(--accent-gold);
  white-space: nowrap;
}

.footer-offices__hq {
  font-weight: 500;
  font-size: 0.72rem;
  color: #8A8278;
  margin-inline-start: 4px;
}

.footer-offices__phone {
  color: #B8B0A3;
  font-size: 0.8rem;
  white-space: nowrap;
  direction: ltr;
  unicode-bidi: isolate;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-offices__phone:hover {
  color: var(--accent-gold);
}

.fargah-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid #2A2A2A;
  text-align: center;
}

.fargah-footer__legal {
  margin: 0;
  max-width: 920px;
  font-size: 0.76rem;
  line-height: 1.7;
  color: #9A9288;
}

.fargah-footer__credit {
  margin: 0;
  font-size: 0.78rem;
  color: #8A8278;
  letter-spacing: 0.02em;
}

@media (max-width: 992px) {
  .fargah-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .fargah-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 576px) {
  .fargah-footer {
    padding: 0 0 20px;
  }

  .fargah-footer__intro {
    padding: 28px 0 32px;
    margin-bottom: 28px;
  }

  .fargah-footer__intro-title-wrap {
    gap: 10px;
  }

  .fargah-footer__intro-ornament {
    width: 48px;
    height: auto;
  }

  .fargah-footer__intro-body {
    font-size: 0.82rem;
    line-height: 1.7;
    text-align: justify;
  }

  .fargah-footer__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .fargah-footer__tagline {
    white-space: normal;
    max-width: 100%;
  }

  .fargah-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .fargah-nav { display: none; }
}

/* Back to top bar (above footer, sanjab-style) */
.back-to-top-bar {
  background: rgb(243, 240, 215);
  border-top: 1px solid #e6e0c8;
  padding: 28px 24px 32px;
  text-align: center;
}

[data-theme="dark"] .back-to-top-bar {
  background: #141210;
  border-top-color: #2a2520;
}

.back-to-top-bar__btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: none;
  background: transparent;
  color: #54412a;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 12px;
  transition: color 0.2s ease, transform 0.2s ease;
}

[data-theme="dark"] .back-to-top-bar__btn {
  color: #d8d1c4;
}

.back-to-top-bar__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #c8a96e;
  color: #8a6a2f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.55);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

[data-theme="dark"] .back-to-top-bar__icon {
  background: rgba(255, 255, 255, 0.04);
  color: #d6b46d;
}

.back-to-top-bar__btn:hover .back-to-top-bar__icon {
  background: #c8a96e;
  border-color: #c8a96e;
  color: #ffffff;
  transform: translateY(-2px);
}

.back-to-top-bar__btn:hover .back-to-top-bar__text {
  color: #8a6a2f;
}

[data-theme="dark"] .back-to-top-bar__btn:hover .back-to-top-bar__text {
  color: #d6b46d;
}

.back-to-top-bar__btn:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.representation-card {
  padding: 20px;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  border: 1px solid var(--accent-stone);
}

.representation-card__city {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent-gold);
}

.representation-card__detail {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.representation-card__phone {
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: none;
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

.representation-card__phone:hover {
  color: var(--accent-gold-text);
}

/* Section titles */
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 48px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}

/* Horizontal scroll categories mobile */
.category-scroll {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

@media (max-width: 1200px) {
  .category-scroll {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }
  .category-scroll > * {
    min-width: 200px;
    scroll-snap-align: start;
  }
}

/* Theme + locale toggles */
.theme-toggle,
.locale-toggle {
  background: none;
  border: 1px solid var(--accent-stone);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  text-decoration: none;
  flex-shrink: 0;
}

.theme-toggle:hover,
.locale-toggle:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  text-decoration: none;
}

/* Alert */
.alert-fargah {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid var(--accent-gold);
  color: var(--text-primary);
  margin-bottom: 24px;
}