/* Shkian — general appointment choice (با نسخه / بدون نسخه) */

.shk-nobat-choice {
  --font: "Vazirmatn", system-ui, sans-serif;
  --ink: #0f172a;
  --muted: #475569;
  --soft: #64748b;
  --teal: #0d9488;
  --teal-bright: #14b8a6;
  --teal-deep: #0f766e;
  --sky: #0369a1;
  --line: rgba(15, 23, 42, 0.08);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --card-radius: 1.5rem;
  position: relative;
  isolation: isolate;
  font-family: var(--font);
  color: var(--ink);
  direction: rtl;
  box-sizing: border-box;
  width: 100%;
  min-height: auto;
  display: block;
  padding: clamp(2rem, 5.5vh, 3.75rem) 1.25rem clamp(3.25rem, 8vh, 5rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 85% 65% at 92% 8%, rgba(20, 184, 166, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 55% at 4% 88%, rgba(3, 105, 161, 0.12), transparent 52%),
    linear-gradient(165deg, #f7fffe 0%, #f1f5f9 46%, #eef8f6 100%);
}

.shk-nobat-choice *,
.shk-nobat-choice *::before,
.shk-nobat-choice *::after {
  box-sizing: border-box;
}

.shk-nobat-choice__glow {
  position: absolute;
  inset: auto;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.42;
  pointer-events: none;
  z-index: 0;
}

.shk-nobat-choice__glow--a {
  top: -10rem;
  left: -7rem;
  background: rgba(20, 184, 166, 0.38);
}

.shk-nobat-choice__glow--b {
  bottom: -12rem;
  right: -5rem;
  background: rgba(3, 105, 161, 0.24);
}

.shk-nobat-choice__grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 75%);
}

.shk-nobat-choice__inner {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  margin-inline: auto;
}

.shk-nobat-choice__head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto clamp(1.75rem, 4vh, 2.75rem);
  animation: shk-nobat-rise 0.7s var(--ease) both;
}

.shk-nobat-choice__eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--teal-deep);
  background: rgba(13, 148, 136, 0.12);
  border: 1px solid rgba(13, 148, 136, 0.14);
}

.shk-nobat-choice__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.28;
  color: var(--ink);
}

.shk-nobat-choice__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
}

.shk-nobat-choice__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.1rem, 2.6vw, 1.65rem);
  align-items: stretch;
}

.shk-nobat-choice__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100%;
  padding: 0;
  border-radius: var(--card-radius);
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-decoration: none;
  color: inherit;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 14px 40px rgba(15, 23, 42, 0.07);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease);
  animation: shk-nobat-rise 0.8s var(--ease) both;
  outline: none;
  overflow: hidden;
}

.shk-nobat-choice__card--with {
  animation-delay: 0.1s;
}

.shk-nobat-choice__card--without {
  animation-delay: 0.18s;
}

.shk-nobat-choice__card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  opacity: 0.95;
}

.shk-nobat-choice__card--with::after {
  background: linear-gradient(90deg, var(--teal-bright), var(--teal-deep));
}

.shk-nobat-choice__card--without::after {
  background: linear-gradient(90deg, #38bdf8, var(--sky));
}

.shk-nobat-choice__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(20, 184, 166, 0.5),
    rgba(255, 255, 255, 0.12) 42%,
    rgba(3, 105, 161, 0.28)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.shk-nobat-choice__card:hover,
.shk-nobat-choice__card:focus-visible {
  transform: translateY(-7px);
  border-color: rgba(13, 148, 136, 0.22);
  background: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 26px 56px rgba(13, 148, 136, 0.16);
}

.shk-nobat-choice__card:hover::before,
.shk-nobat-choice__card:focus-visible::before {
  opacity: 1;
}

.shk-nobat-choice__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(20, 184, 166, 0.16), transparent 55%),
    linear-gradient(160deg, #f0fdfa 0%, #eef6ff 100%);
}

.shk-nobat-choice__card--without .shk-nobat-choice__media {
  background:
    radial-gradient(circle at 70% 35%, rgba(14, 165, 233, 0.16), transparent 55%),
    linear-gradient(160deg, #f0f9ff 0%, #ecfeff 100%);
}

.shk-nobat-choice__media-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 0.45s var(--ease);
}

.shk-nobat-choice__card:hover .shk-nobat-choice__media-img,
.shk-nobat-choice__card:focus-visible .shk-nobat-choice__media-img {
  transform: scale(1.06);
}

.shk-nobat-choice__badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal-deep);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(13, 148, 136, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.shk-nobat-choice__badge--soft {
  color: var(--sky);
  border-color: rgba(3, 105, 161, 0.14);
}

.shk-nobat-choice__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
  padding: 1.15rem 1.25rem 0.35rem;
}

.shk-nobat-choice__card-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--soft);
}

.shk-nobat-choice__card-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.3;
  color: var(--ink);
}

.shk-nobat-choice__card-desc {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--muted);
}

.shk-nobat-choice__points {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.shk-nobat-choice__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #334155;
}

.shk-nobat-choice__points svg {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.shk-nobat-choice__card--with .shk-nobat-choice__points svg {
  color: var(--teal);
}

.shk-nobat-choice__card--without .shk-nobat-choice__points svg {
  color: var(--sky);
}

.shk-nobat-choice__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0.85rem 1.15rem 1.15rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.shk-nobat-choice__cta svg {
  width: 1.15rem;
  height: 1.15rem;
  transition: transform 0.3s var(--ease);
}

.shk-nobat-choice__card--with .shk-nobat-choice__cta {
  color: #fff;
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-deep));
  box-shadow: 0 10px 22px rgba(13, 148, 136, 0.28);
}

.shk-nobat-choice__card--without .shk-nobat-choice__cta {
  color: #fff;
  background: linear-gradient(135deg, #0ea5e9, var(--sky));
  box-shadow: 0 10px 22px rgba(3, 105, 161, 0.22);
}

.shk-nobat-choice__card:hover .shk-nobat-choice__cta,
.shk-nobat-choice__card:focus-visible .shk-nobat-choice__cta {
  transform: translateY(-1px);
}

.shk-nobat-choice__card:hover .shk-nobat-choice__cta svg,
.shk-nobat-choice__card:focus-visible .shk-nobat-choice__cta svg {
  transform: translateX(-4px);
}

.shk-nobat-choice__section-head {
  text-align: center;
  max-width: 34rem;
  margin: 0 auto 1.5rem;
}

.shk-nobat-choice__section-title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.35;
  color: var(--ink);
}

.shk-nobat-choice__section-lead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--muted);
}

.shk-nobat-choice__steps {
  margin-top: clamp(2.75rem, 6vh, 3.75rem);
  padding: clamp(1.35rem, 2.5vw, 1.75rem);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.shk-nobat-choice__steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  counter-reset: none;
}

.shk-nobat-choice__step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.1rem 1rem 1.15rem;
  border-radius: 1.1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fffe 100%);
  border: 1px solid rgba(13, 148, 136, 0.1);
  min-height: 100%;
}

.shk-nobat-choice__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, var(--teal-bright), var(--teal-deep));
  box-shadow: 0 8px 18px rgba(13, 148, 136, 0.25);
}

.shk-nobat-choice__step-title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--ink);
}

.shk-nobat-choice__step-desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
}

.shk-nobat-choice__faq {
  margin-top: clamp(2.5rem, 5.5vh, 3.5rem);
}

.shk-nobat-choice__faq-list {
  display: grid;
  gap: 0.7rem;
  max-width: 44rem;
  margin-inline: auto;
}

.shk-nobat-choice__faq-item {
  border-radius: 1.05rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.shk-nobat-choice__faq-item[open] {
  border-color: rgba(13, 148, 136, 0.22);
  box-shadow: 0 12px 30px rgba(13, 148, 136, 0.08);
}

.shk-nobat-choice__faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  cursor: pointer;
  list-style: none;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--ink);
}

.shk-nobat-choice__faq-q::-webkit-details-marker {
  display: none;
}

.shk-nobat-choice__faq-q::marker {
  content: "";
}

.shk-nobat-choice__faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  flex-shrink: 0;
  color: var(--teal-deep);
  background: rgba(13, 148, 136, 0.1);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.shk-nobat-choice__faq-icon svg {
  width: 1rem;
  height: 1rem;
}

.shk-nobat-choice__faq-item[open] .shk-nobat-choice__faq-icon {
  transform: rotate(45deg);
  color: #fff;
  background: linear-gradient(145deg, var(--teal-bright), var(--teal-deep));
}

.shk-nobat-choice__faq-a {
  padding: 0 1.15rem 1.15rem;
}

.shk-nobat-choice__faq-a p {
  margin: 0;
  padding-top: 0.15rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 0.85rem;
  font-size: 0.94rem;
  line-height: 1.8;
  color: var(--muted);
}

@keyframes shk-nobat-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .shk-nobat-choice__steps-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .shk-nobat-choice {
    padding-top: 1.75rem;
  }

  .shk-nobat-choice__title {
    font-size: clamp(1.55rem, 7vw, 1.9rem);
  }

  .shk-nobat-choice__grid {
    grid-template-columns: 1fr;
  }

  .shk-nobat-choice__steps-list {
    grid-template-columns: 1fr;
  }

  .shk-nobat-choice__card:hover,
  .shk-nobat-choice__card:focus-visible {
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .shk-nobat-choice__head,
  .shk-nobat-choice__card {
    animation: none;
  }

  .shk-nobat-choice__card,
  .shk-nobat-choice__cta,
  .shk-nobat-choice__cta svg,
  .shk-nobat-choice__faq-icon {
    transition: none;
  }
}

/* Soften Ahura page chrome around this content — full-bleed, no title card */
body.shk-nobat-plain,
body.page-slug-nobat-ghalb {
  background: #f8fffe !important;
}

body.shk-nobat-plain #shk-nobat-plain-page,
body.shk-nobat-plain .shk-nobat-plain-page,
body.shk-nobat-plain .site-container,
body.shk-nobat-plain .post-box,
body.shk-nobat-plain .post-entry,
body.shk-nobat-plain .post-entry-custom,
body.shk-nobat-plain .ahura-page-single,
body.shk-nobat-plain .ahura-post-single,
body.shk-nobat-plain .mw_page_container,
body.shk-nobat-plain .wrapper,
body.shk-nobat-plain #content,
body.shk-nobat-plain .content,
body.page-slug-nobat-ghalb .post-box,
body.page-slug-nobat-ghalb .ahura-post-content,
body.page-slug-nobat-ghalb .entry-content,
body.page-slug-nobat-ghalb #content > .container {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  float: none !important;
  border-radius: 0 !important;
}

body.shk-nobat-plain .post-title,
body.shk-nobat-plain header.post-title,
body.shk-nobat-plain .breadcrumb,
body.shk-nobat-plain .bread-crumb,
body.shk-nobat-plain .ahura-breadcrumb,
body.shk-nobat-plain .ahura-breadcrumbs,
body.page-slug-nobat-ghalb .page-title,
body.page-slug-nobat-ghalb .ahura_page_title,
body.page-slug-nobat-ghalb .post-title,
body.page-slug-nobat-ghalb .breadcrumb,
body.page-slug-nobat-ghalb .ahura-breadcrumbs {
  display: none !important;
}
