:root {
  /* ── Accent: کرمی-شنی گرم و لوکس برای حس گردشگری و اقامت ── */
  --villa: #c49a6c;
  --villa-soft: color-mix(in srgb, var(--villa) 12%, transparent);
  --villa-soft-strong: color-mix(in srgb, var(--villa) 20%, transparent);

  /* ── خنثی/برند ── */
  --villa-navy: var(--btb-navy, #1b2a4a);
  --villa-brand: var(--btb-brand, #1b2a4a);
  --villa-silver: var(--brand-silver, #c9ccd4);
  --villa-surface: var(--btb-surface, #fff);
  --villa-border: var(--btb-border, #e6eaf2);
  --villa-muted: var(--btb-text-muted, #64748b);
  --villa-bg-soft: #fcfaf7; /* پس‌زمینه کرمی بسیار ملایم */

  /* ── شکل و فاصله ── */
  --villa-radius: var(--btb-radius, 16px);
  --villa-radius-sm: 10px;
  --villa-pad: var(--btb-section-pad, 80px);
  --villa-lh-title: var(--btb-lh-title, 1.5);
  --villa-lh-body: var(--btb-lh-body, 1.9);
  --villa-gap: clamp(16px, 2vw, 24px);

  /* ── سایه ── */
  --villa-shadow-sm: 0 10px 24px -16px rgba(196, 154, 108, 0.25);
  --villa-shadow-md: 0 18px 40px -18px rgba(27, 42, 74, 0.2);
}

/* ===== 1) هیرو طلایی: پس‌زمینهٔ سرمه‌ای + اکسنت طلایی ===== */
.hero-b2b--villa {
  position: relative;
  /* توکن‌ها را با --btb-* هماهنگ و fallback هگز گذاشتم تا حتی اگر متغیر
     تعریف نشده باشد، پس‌زمینه همیشه رندر شود (قبلاً --color-* بود) */
  padding: clamp(3rem, 7vw, 5.5rem) 0 0;
  overflow: visible;
}

/* اکسنت طلایی داخل تیتر (یک‌بار — تکرار حذف شد) */
.hero-b2b--villa .hero-b2b__title-accent {
  color: var(--villa);
  background: linear-gradient(
    transparent 62%,
    color-mix(in srgb, var(--villa-silver) 30%, transparent) 62%
  );
}

.hero-b2b--villa .stat-item__icon {
  color: var(--villa);
}

/* تیتر اصلی هیرو */
.hero-b2b__title {
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.35;
  color: inherit;
  margin-bottom: 1rem;
}

@media (max-width: 575px) {
  .hero-b2b__title {
    font-size: 1.5rem;
    line-height: 1.4;
    text-align: center;
  }
}

.u-text-villa {
  color: var(--villa);
}
.service-card--villa {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
/* ===== 2) کارت‌های خدمات: آیکون طلایی ===== */
.service-card--villa .service-card__icon {
  color: var(--villa);
  background: var(--villa-soft);
}

.service-card--villa .service-card__icon i::before {
  font-size: 26px;
  width: 26px;
  height: 26px;
  line-height: 26px;
}
/* ===== 3) گام‌های همکاری ===== */
.villa-steps {
  padding: var(--btb-section-pad, 80px) 0;
  background: var(--btb-bg-soft, #f6f8fb);
}

.villa-steps__list {
  --villa-steps-line: color-mix(
    in srgb,
    var(--btb-navy, #1b2a4a) 14%,
    transparent
  );

  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.villa-steps__list--four {
  grid-template-columns: repeat(4, 1fr);
}

.villa-steps__list::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 12%;
  left: 12%;
  height: 2px;
  background: repeating-linear-gradient(
    to left,
    var(--villa-steps-line) 0 8px,
    transparent 8px 16px
  );
  z-index: 0;
}

.villa-steps__item {
  position: relative;
  z-index: 1;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--btb-surface, #fff);
  border: 1px solid var(--btb-border, #e6eaf2);
  border-radius: var(--btb-radius, 16px);
  padding: 32px 20px 28px;
  opacity: 0;
  transform: translateY(24px);
}

.villa-steps__item.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.35s ease;
}

.villa-steps__item.is-visible:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--villa-brand) 35%, transparent);
  box-shadow: 0 18px 40px -18px rgba(27, 42, 74, 0.25);
}

.villa-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 10px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--btb-navy, #1b2a4a);
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--villa) 28%, #fff),
    color-mix(in srgb, var(--villa) 55%, #fff)
  );
  transition: transform 0.3s ease;
}

.villa-steps__item:hover .villa-steps__num {
  transform: scale(1.08);
  background: var(--villa-brand);
  color: #fff;
}

.villa-steps__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--btb-navy, #1b2a4a);
  line-height: var(--btb-lh-title, 1.5);
}

.villa-steps__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: var(--btb-lh-body, 1.9);
  color: var(--btb-text-muted, #64748b);
}

@media (prefers-reduced-motion: reduce) {
  .villa-steps__item,
  .villa-steps__item.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== 4) CTA پایانی ===== */
.villa-cta {
  --villa-cta-pad-block: clamp(3rem, 6vw, 5rem);
  --villa-cta-box-pad: clamp(2rem, 4vw, 3.5rem);
  --villa-cta-radius: 20px;

  padding-block: var(--villa-cta-pad-block);
}

.villa-cta__box {
  margin-inline: auto;
  background-color: #fff;
  padding: var(--villa-cta-box-pad, 40px); /* خط شکستهٔ var(--g…) اصلاح شد */
  text-align: center;
  border-radius: var(--villa-cta-radius);
  box-shadow: 0 18px 40px rgba(27, 42, 74, 0.18);
}

.villa-cta__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.4;
}

.villa-cta__desc {
  margin: 0 auto 2rem;
  max-width: 60ch;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 2;
}

.villa-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.villa-cta__actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===== 5) ریسپانسیو سراسری ===== */
@media (max-width: 991px) {
  .villa-steps__list,
  .villa-steps__list--four {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .villa-steps__list::before {
    display: none;
  }
}

@media (max-width: 575px) {
  .villa-steps__list,
  .villa-steps__list--four {
    grid-template-columns: 1fr;
  }

  .villa-steps__item {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 14px;
    text-align: right;
    padding: 20px 16px;
  }

  .villa-steps__num {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
    grid-row: 1 / 3;
    align-self: center;
    font-size: 1.15rem;
  }

  .villa-cta__box {
    padding-inline: clamp(1.25rem, 6vw, 2rem);
  }

  .villa-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .villa-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.why-b2b,
.villa-value,
.villa-solutions,
.villa-solution-details,
.villa-audience,
.villa-capabilities,
.villa-partners,
.villa-faq,
.villa-lead {
  padding: var(--villa-pad) 0;
  overflow-anchor: none;
}

.villa-value,
.villa-solution-details,
.villa-faq {
  background: var(--villa-bg-soft);
}

.btb-section-head,
.btb-services__head {
  margin-inline: auto;
  margin-bottom: clamp(28px, 4vw, 48px);
  text-align: center;
}
.btb-section-head__title,
.btb-services__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.6vw, 2.125rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--villa-navy);
}

.btb-section-head__desc,
.btb-services__desc {
  margin: 0;
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  line-height: var(--villa-lh-body);
  color: var(--villa-muted);
}

.why-b2b__grid,
.btb-services__grid,
.villa-audience__grid,
.villa-value__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--villa-gap);
}

.why-card__icon,
.service-card__icon,
.villa-audience__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: var(--villa-radius-sm);
  color: var(--villa-navy);
  background: color-mix(in srgb, var(--villa-navy) 8%, transparent);
}

.why-card__title,
.service-card__title,
.villa-audience__title,
.villa-value__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: var(--villa-lh-title);
  color: var(--villa-navy);
}

.why-card__desc,
.service-card__desc,
.villa-audience__desc,
.villa-value__desc {
  margin: 0;
  font-size: 0.9375rem !important;
  text-align: center;
  line-height: var(--villa-lh-body);
  color: var(--villa-muted);
}

.villa-solution-details__list {
  display: grid;
  gap: clamp(16px, 2vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.villa-solution-detail {
  position: relative;
  scroll-margin-top: 96px;
  padding: clamp(22px, 2.6vw, 32px);
  padding-inline-start: clamp(26px, 3vw, 40px);
  background: var(--villa-surface);
  border: 1px solid var(--villa-border);
  border-radius: var(--villa-radius);
}

.villa-solution-detail::before {
  content: "";
  position: absolute;
  inset-block: clamp(22px, 2.6vw, 32px);
  inset-inline-start: 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(
    to bottom,
    var(--villa),
    color-mix(in srgb, var(--villa) 30%, var(--villa-surface))
  );
}

.villa-solution-detail__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.05rem, 1.9vw, 1.25rem);
  font-weight: 700;
  color: var(--villa-navy);
}

.villa-solution-detail__desc {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: var(--villa-lh-body);
  color: var(--villa-muted);
}

.villa-solution-detail__list {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.villa-solution-detail__list-item {
  position: relative;
  padding-inline-start: 1.25rem;
  font-size: 0.875rem;
  line-height: var(--villa-lh-body);
  color: var(--villa-navy);
}

.villa-solution-detail__list-item::before {
  content: "";
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--villa);
  transform: translateY(-50%);
}

.villa-value__row {
  display: grid;
  grid-template-columns: minmax(auto, 480px) 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}

.villa-value__visual {
  position: relative;
}

.villa-value__img {
  width: 100%;
  height: auto;
  border-radius: var(--villa-radius);
}

@media (max-width: 991px) {
  .villa-value__row {
    grid-template-columns: 1fr;
  }

  .villa-value__visual {
    max-width: 480px;
    margin-inline: auto;
  }
}

.villa-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--villa-gap);
}

.villa-capabilities__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  background: var(--villa-surface);
  border: 1px solid var(--villa-border);
  border-radius: var(--villa-radius);
}

.villa-capabilities__title {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--villa-navy);
}

.villa-capabilities__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: var(--villa-lh-body);
  color: var(--villa-muted);
}

.villa-partners__wrapper {
  padding: 2rem 0;
  border-block: 1px solid var(--villa-border);
}

.villa-partners .partners-slider img,
.villa-partners .partners-grid img {
  opacity: 0.65;
  transition: opacity 0.3s ease;
  filter: grayscale(100%);
}

.villa-partners .partners-slider img:hover,
.villa-partners .partners-grid img:hover {
  opacity: 1;
  filter: none;
}

.villa-faq__list {
  max-width: 800px;
  margin-inline: auto;
  display: grid;
  gap: 0.75rem;
}

.villa-faq__item {
  background: var(--villa-surface);
  border: 1px solid var(--villa-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.villa-faq__item:hover {
  border-color: color-mix(in srgb, var(--villa) 35%, transparent);
}

.villa-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border: none;
  background: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--villa-navy);
  text-align: right;
  cursor: pointer;
}

.villa-faq__trigger::after {
  content: "\ea78";
  font-family: remixicon;
  font-size: 1.1rem;
  color: var(--villa-muted);
  transition: transform 0.3s ease;
}

.villa-faq__item.is-active .villa-faq__trigger::after {
  transform: rotate(180deg);
}

.villa-faq__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.villa-faq__body {
  padding: 0 24px 20px;
  font-size: 0.875rem;
  line-height: var(--villa-lh-body);
  color: var(--villa-muted);
}

.villa-lead__card {
  max-width: 780px;
  margin-inline: auto;
  background: var(--villa-surface);
  border: 1px solid var(--villa-border);
  border-radius: var(--villa-radius);
  box-shadow: var(--villa-shadow-md);
  padding: clamp(24px, 4vw, 40px);
}

.villa-lead__form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.villa-lead__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.villa-lead__field–full {
  grid-column: 1 / -1;
}

.villa-lead__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--villa-navy);
}

.villa-lead__input,
.villa-lead__select,
.villa-lead__textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--villa-border);
  border-radius: 8px;
  font-size: 0.9rem;
  background-color: var(--villa-surface);
  color: var(--villa-navy);
  outline: none;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.villa-lead__input:focus,
.villa-lead__select:focus,
.villa-lead__textarea:focus {
  border-color: var(--villa);
  box-shadow: 0 0 0 3px var(--villa-soft);
}

.villa-lead__textarea {
  min-height: 100px;
  resize: vertical;
}

.villa-lead__actions {
  grid-column: 1 / -1;
  margin-top: 1rem;
}

.villa-lead__btn {
  width: 100%;
  padding: 12px;
  background: var(--villa);
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.villa-lead__btn:hover {
  background: color-mix(in srgb, var(--villa) 85%, #000);
}

@media (max-width: 575px) {
  .villa-lead__form {
    grid-template-columns: 1fr;
  }
}

/* ===== شبکه راهکارها ===== */
.villa-solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: 48px;
}

/* کارت؛ چون <a> است، display و رنگ لینک باید صریح تنظیم شود */
.villa-solutions__grid .service-card {
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2.4vw, 28px);
  background: var(--btb-surface, #fff);
  border: 1px solid var(--btb-border, #e6eaf2);
  border-radius: var(--btb-radius, 16px);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.villa-solutions__grid .service-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--villa) 45%, transparent);
  box-shadow: 0 18px 40px -18px rgba(27, 42, 74, 0.25);
}

.villa-solutions__grid .service-card__icon {
  margin-bottom: 16px;
}

.villa-solutions__grid .service-card__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: var(--btb-lh-title, 1.5);
  color: var(--btb-navy, #1b2a4a);
}

.villa-solutions__grid .service-card__desc {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: var(--btb-lh-body, 1.9);
  color: var(--btb-text-muted, #64748b);
}

/* ریسپانسیو، هماهنگ با breakpointهای موجود فایل */
@media (max-width: 991px) {
  .villa-solutions__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 575px) {
  .villa-solutions__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== سربرگ مشترک سکشن‌ها ===== */
.btb-section-head .btb-services__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--villa);
  background: var(--villa-soft);
  border-radius: 999px;
}

.btb-section-head h2 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  font-weight: 700;
  line-height: var(--btb-lh-title, 1.5);
  color: var(--btb-navy, #1b2a4a);
}

.btb-section-head p {
  margin: 0;
  font-size: 1rem;
  line-height: var(--btb-lh-body, 1.9);
  color: var(--btb-text-muted, #64748b);
}

/* ===== سکشن ارزش پیشنهادی ===== */
.villa-value {
  padding: var(--btb-section-pad, 80px) 0;
  background: var(--btb-bg-soft, #f6f8fb);
}

.villa-value__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.villa-value__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--btb-surface, #fff);
  border: 1px solid var(--btb-border, #e6eaf2);
  border-radius: var(--btb-radius, 16px);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: var(--btb-lh-body, 1.9);
  color: var(--btb-navy, #1b2a4a);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.villa-value__item:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--villa) 45%, transparent);
  box-shadow: 0 18px 40px -18px rgba(27, 42, 74, 0.25);
}

.villa-value__item i {
  flex-shrink: 0;
  font-size: 22px;
  color: var(--villa);
}

/* ریسپانسیو، هماهنگ با breakpointهای فایل */
@media (max-width: 991px) {
  .villa-value__list {
    margin-top: 32px;
  }
}

.villa-solutions__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--villa);
  background: var(--villa-soft);
  border: 1px solid color-mix(in srgb, var(--villa) 30%, transparent);
  border-radius: 50%;
}

.villa-solutions__note {
  margin-top: 28px;
  font-size: 0.8125rem;
  line-height: var(--villa-lh-body);
  color: var(--villa-muted);
  text-align: center;
}

/* ---------- Capabilities: زیرساخت اجرایی ---------- */
.villa-capabilities {
  padding: var(--btb-section-pad, 80px) 0;
  background: var(--btb-bg-soft, #f7f9fc);
}

.villa-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.villa-capabilities__item {
  padding: 32px 24px 28px;
  text-align: center;
  background: var(--btb-surface, #fff);
  border: 1px solid var(--btb-border, #e6eaf2);
  border-radius: var(--btb-radius, 16px);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.villa-capabilities__item:hover {
  transform: translateY(-6px);
  border-color: color-mix(
    in srgb,
    var(--villa) 40%,
    var(--btb-border, #e6eaf2)
  );
  box-shadow: 0 18px 40px -18px rgba(27, 42, 74, 0.25);
}

.villa-capabilities__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  color: var(--villa);
  background: var(--villa-soft);
  border-radius: 14px;
}

.villa-capabilities__icon i::before {
  font-size: 26px;
  width: 26px;
  height: 26px;
  line-height: 26px;
}

.villa-capabilities__item h3 {
  margin: 0 0 10px;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: var(--btb-lh-title, 1.5);
  color: var(--btb-navy, #1b2a4a);
}

.villa-capabilities__item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: var(--btb-lh-body, 1.9);
  color: var(--btb-text-muted, #5b6b85);
}

/* ریسپانسیو — هم‌راستا با breakpointهای villa-steps */
@media (max-width: 991px) {
  .villa-capabilities__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 575px) {
  .villa-capabilities__grid {
    grid-template-columns: 1fr;
  }
}

.villa-capabilities__item.is-visible {
  opacity: 1;
}

.villa .service-card::before {
  border-color: var(--villa);
  background: linear-gradient(
    270deg,
    var(--villa),
    color-mix(in srgb, var(--villa) 40%, var(--villa-soft))
  );
  z-index: 999;
}

.villa .service-card:hover .service-card__icon {
  background: var(--villa);
  color: #fff;
}
.villa .service-card:hover .villa-steps__num {
  background: var(--villa);
  color: #fff;
}

.villa .villa-steps__list .service-card::before {
  display: none;
}
.villa i {
  line-height: 1;
}

/* ===== FAQ — قابل استفاده در کل سایت ===== */
.villa-faq {
  padding: var(--btb-section-pad, 80px) 0;
  padding-bottom: 0;
  background: var(--btb-bg-soft, #f7f9fc);
}

.villa-faq__list {
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.villa-faq__item {
  background: #fff;
  border: 1px solid var(--btb-border, #e6eaf2);
  border-radius: var(--btb-radius, 16px);
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.villa-faq__item[open] {
  border-color: color-mix(in srgb, var(--villa) 45%, transparent);
  box-shadow: 0 18px 40px -18px rgba(27, 42, 74, 0.18);
  transition:
    border-color 0.35s ease,
    box-shadow 0.45s ease;
}

/* سوال */
.villa-faq__item summary {
  list-style: none; /* حذف مثلث پیش‌فرض در Firefox */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 700;
  color: var(--btb-navy, #1b2a4a);
  line-height: var(--btb-lh-title, 1.7);
}

.villa-faq__item summary::-webkit-details-marker {
  display: none; /* حذف مثلث پیش‌فرض در Chrome/Safari */
}

/* آیکن + طلایی بدون نیاز به فونت آیکن */
.villa-faq__item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  color: var(--villa);
  background:
    linear-gradient(currentColor 0 0) center / 12px 2px no-repeat,
    linear-gradient(currentColor 0 0) center / 2px 12px no-repeat,
    var(--villa-soft, rgba(201, 162, 39, 0.12));
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.villa-faq__item[open] summary::after {
  transform: rotate(135deg); /* «+» با چرخش به «×» مایل تبدیل می‌شود */
}

/* پاسخ */
.villa-faq__answer {
  padding: 4px 24px 22px;
  color: var(--btb-muted, #5b6b84);
  font-size: 15px;
  line-height: var(--btb-lh-body, 1.9);
}

.villa-faq__item[open] .villa-faq__answer {
  animation: villa-faq-fade 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes villa-faq-fade {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.995);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 575px) {
  .villa-faq__item summary {
    padding: 16px 18px;
  }
  .villa-faq__answer {
    padding: 2px 18px 18px;
  }
}

/* =========================================================
   VISUAL BREAK
========================================================= */
.villa-break {
  position: relative;
  padding: clamp(48px, 6vw, 72px) 0;
  background: linear-gradient(
    135deg,
    var(--brand-navy, #172033) 0%,
    var(--brand-blue, #334e68) 60%,
    var(--brand-navy, #172033) 100%
  );
  overflow: hidden;
  isolation: isolate;
}

/* هاله طلایی تزئینی؛ فقط CSS، بدون تصویر */
.villa-break__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      420px 220px at 12% 50%,
      rgba(var(--theme-color-rgb, 20, 125, 126), 0.22),
      transparent 70%
    ),
    radial-gradient(
      360px 200px at 88% 20%,
      rgba(var(--theme-color-rgb, 20, 125, 126), 0.12),
      transparent 70%
    );
  pointer-events: none;
}

.villa-break__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--villa-gap);
  flex-wrap: wrap;
}

.villa-break__title {
  color: var(--surface-card, #fff);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: var(--villa-lh-title);
  margin-bottom: 8px;
}

.villa-break__desc {
  color: color-mix(in srgb, var(--brand-silver, #a7b0bc) 85%, #fff);
  line-height: var(--villa-lh-body);
  max-width: 560px;
  margin-bottom: 0;
}

.villa-break__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--brand-teal, #147d7e);
  color: #fff;
  font-weight: 700;
  border-radius: var(--villa-radius-sm);
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.villa-break__cta:hover {
  color: #fff;
  background: color-mix(in srgb, var(--brand-teal, #147d7e) 88%, #000);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -18px rgba(23, 32, 51, 0.45);
}

@media (max-width: 991px) {
  .villa-break__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

@media (max-width: 575px) {
  .villa-break {
    padding: 40px 0;
  }

  .villa-break__cta {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   Trust Bar — scoped to .villa-partners--bar only
   Placed after the shared .villa-partners img rules (509-519)
   so the scoped overrides win on source order.
========================================================= */
.villa-partners--bar {
  --bar-logo-h: clamp(1.75rem, 1.4rem + 1.2vw, 2.5rem);
  --bar-gap: clamp(0.75rem, 0.5rem + 1vw, 1.5rem);
  --bar-overlap: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);

  /* overrides the shared `padding: var(--villa-pad) 0` from line 294 */
  padding-block: calc(var(--bar-overlap) + clamp(2rem, 1.5rem + 2vw, 3.5rem))
    clamp(2rem, 1.5rem + 2vw, 3.5rem);
  /* background: var(--villa-bg-soft, #f6f8fb); */
}

.villa-partners--bar .partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.villa-partners--bar .villa-partners__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  /* min-inline-size: clamp(7rem, 6rem + 6vw, 10rem); */
  padding: 0.875rem 1.5rem;
  background: var(--villa-surface, #fff);
  border: 1px solid var(--villa-border, #e6eaf2);
  border-radius: var(--villa-radius-sm, 10px);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
  transition:
    transform 0.18s cubic-bezier(0.33, 1, 0.68, 1),
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.villa-partners--bar .villa-partners__pill:hover {
  transform: translateY(-6px);
  box-shadow: var(--villa-shadow-sm);
}

/* logo sizing — without this the pills stretch to the raw image
   width and flex-wrap pushes each one onto its own row */
.villa-partners--bar .villa-partners__pill img {
  display: block;
  height: var(--bar-logo-h);
  width: auto;
  max-width: 100%;
  opacity: 0.82;
  filter: grayscale(30%);
  transition:
    opacity 0.25s ease,
    filter 0.25s ease;
}

/* overrides .villa-partners .partners-grid img (opacity .65 / grayscale 100%) */
.villa-partners--bar .villa-partners__pill:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

.villa-partners--bar .villa-partners__label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--villa-muted, #64748b);
  padding: 0.875rem 1.5rem;
}

.villa-partners--bar .villa-partners__label--count {
  font-weight: 600;
  color: var(--villa-muted, #64748b);
}

.villa-partners--bar.js-reveal .villa-partners__pill {
  opacity: 0;
}

.villa-partners--bar.js-reveal .villa-partners__pill.is-visible {
  opacity: 1;
  animation: pill-reveal 0.5s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: var(--reveal-delay, 0ms);
}

@keyframes pill-reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .villa-partners--bar .villa-partners__pill,
  .villa-partners--bar.js-reveal .villa-partners__pill {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== Trust bar responsive (additive, overrides base theme) ===== */

/* ابزار پایه: مطمئن می‌شویم گرید در هر سایزی wrap و مرکز می‌ماند */
.villa-partners--bar .partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--bar-gap, clamp(0.5rem, 0.3rem + 1vw, 1.25rem));
}

/* pillها هیچ‌وقت نباید overflow ایجاد کنند */
.villa-partners--bar .villa-partners__pill {
  min-inline-size: 0; /* حذف حداقل عرض تحمیلی تم پایه */
  flex: 0 1 auto;
  max-inline-size: 100%;
}

.villa-partners--bar .villa-partners__pill img {
  display: block !important; /* در برابر display:none تم پایه */
  height: var(--bar-logo-h, clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem));
  width: auto;
  max-width: 100%;
}

/* بین ۷۷۱ تا ۱۰۰۰px: فشرده‌شدن را با کاهش padding/gap و عرض pill حل کن */
@media (max-width: 1000px) and (min-width: 771px) {
  .villa-partners--bar .villa-partners__pill {
    padding: 0.5rem 0.875rem;
  }
  .villa-partners--bar {
    --bar-gap: 0.625rem;
    --bar-logo-h: clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
  }
}

/* زیر ۷۷۰px: به‌زور دوباره visible و ریز‌چین کن */
@media (max-width: 770px) {
  .villa-partners--bar,
  .villa-partners--bar .partners-grid,
  .villa-partners--bar .villa-partners__pill {
    display: flex !important; /* اگر تم پایه display:none زده باشد */
  }
  .villa-partners--bar .partners-grid {
    gap: 0.5rem;
  }
  .villa-partners--bar .villa-partners__pill {
    padding: 0.5rem 0.75rem;
  }
  .villa-partners--bar .villa-partners__pill img {
    height: clamp(1.4rem, 4.5vw, 1.9rem);
  }
  /* لیبل‌ها زیر لوگوها به خط بعد بروند تا جا باز شود */
  .villa-partners--bar .villa-partners__label {
    flex-basis: 100%;
    text-align: center;
  }
}

/* ===== موبایل/لمسی: لوگوها بدون hover همیشه واضح ===== */
@media (hover: none), (pointer: coarse) {
  .villa-partners .partners-slider img,
  .villa-partners .partners-grid img {
    opacity: 1;
    filter: none;
  }
}

/* ===== سایز کوچک: فاصلهٔ بیشتر از بالا + لوگوهای کمتر و بزرگ‌تر ===== */
@media (max-width: 770px) {
  .villa-partners--bar {
    /* جای بیشتر برای overlap تا «همکاری با» زیر hero گم نشود */
    --bar-overlap: clamp(3.25rem, 2.25rem + 6vw, 5rem);
    padding-block-start: calc(
      var(--bar-overlap) + clamp(3rem, 2rem + 4vw, 4.5rem)
    );
  }

  /* لیبل روی خط خودش، مرکزچین و با کمی فاصله از لوگوها */
  .villa-partners--bar .villa-partners__label {
    flex-basis: 100%;
    text-align: center;
    margin-block-end: 0.375rem;
  }

  /* فقط ۴ لوگوی اول بماند — بقیه در موبایل حذف شوند */
  .villa-partners--bar
    .partners-grid
    > :nth-child(n + 5 of .villa-partners__pill) {
    display: none;
  }

  /* لوگوهای باقی‌مانده بزرگ‌تر و pillها جادارتر */
  .villa-partners--bar {
    --bar-gap: 0.75rem;
  }
  .villa-partners--bar .villa-partners__pill {
    padding: 0.625rem 1rem;
  }
  .villa-partners--bar .villa-partners__pill img {
    height: clamp(2rem, 7vw, 2.5rem);
  }
}

/* ===== هرور بیتوبی: ردیف آمار — ضد تککارتشدن در موبایل ===== */
.hero-b2b__stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: start;
}

.stat-item {
  min-inline-size: 0; /* کلید: جلوی بازشدن ستون توسط عدد بلند را میگیرد */
  min-width: 0;
  max-width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ۲ ستون از تبلت به پایین — نه تک ستون */
@media (max-width: 991px) {
  .hero-b2b__stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.75rem;
  }
}

/* حسابی خیلی کوچک هم همچنان ۲ ستون بماند */
@media (max-width: 390px) {
  .hero-b2b__stats-row {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
  }
  .stat-item__icon svg {
    width: 22px;
    height: 22px;
  }
  .stat-item {
    padding-inline: 0.25rem;
  }
  .stat-item strong {
    font-size: clamp(1rem, 5vw, 1.25rem);
  }
  .stat-item__icon {
    margin-block-end: 0.375rem;
  }
}

/* ===== شبکه راهکارها ===== */
.villa-solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  justify-content: stretch;
  width: 100%;
}

@media (max-width: 1024px) {
  .villa-solutions__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .villa-solutions__grid {
    grid-template-columns: 1fr;
  }
}

/* کارت؛ چون <a> است، display و رنگ لینک باید صریح تنظیم شود */
.villa-solutions__grid .service-card {
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2.4vw, 28px);
  background: var(--btb-surface, #fff);
  border: 1px solid var(--btb-border, #e6eaf2);
  border-radius: var(--btb-radius, 16px);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.villa-solutions__grid .service-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--villa) 45%, transparent);
  box-shadow: 0 18px 40px -18px
    color-mix(in srgb, var(--villa-navy) 25%, transparent);
}

.villa-solutions__grid .service-card__icon {
  margin-bottom: 16px;
}

.villa-solutions__grid .service-card__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: var(--btb-lh-title, 1.5);
  color: var(--btb-navy, #1b2a4a);
}

.villa-solutions__grid .service-card__desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: var(--btb-lh-body, 1.9);
  color: var(--btb-text-muted, #64748b);
}

/* ریسپانسیو، هماهنگ با breakpointهای موجود فایل */
@media (max-width: 991px) {
  .villa-solutions__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 575px) {
  .villa-solutions__grid {
    grid-template-columns: 1fr;
  }
}

.villa-solutions__grid .service-card--villa {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  padding-bottom: 10px;
}

.service-card__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.service-card--villa:hover .service-card__media img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 20px 24px 24px;
}

.service-card__text {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--btb-text-muted, #6b7280);
}

/* کارت CTA بدون تصویر */
.service-card--more {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 40px 24px;
  background: var(--btb-surface-soft, #f9fafb);
  border: 1px dashed var(--btb-border, #e5e7eb);
}

.service-card__more-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  font-size: 22px;
  color: var(--btb-primary, #b8860b);
}

.service-card__list {
  margin-top: 14px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card__list li {
  position: relative;
  padding-right: 20px;
  font-size: 14px;
  line-height: 1.7;
  text-align: start;
  color: var(--btb-text-muted, #6b7280);
}

.service-card__list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--btb-primary, #b8860b);
}

.service-card__title,
.service-card__location {
  text-align: right;
}

.service-card--villa + .villas {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.service-card--more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-card--more .service-card__desc {
  flex-grow: unset;
}

.villas {
  padding: 0;
  padding-bottom: 10px;
}

.why-b2b__grid .service-card .service-card--villa {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.villas .service-card__desc{
  text-align: right;
}

