.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--deep);
  color: white;
  padding: 0.75rem 1.5rem;
  z-index: 9999;
  font-size: 0.9rem;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}
:root {
  --cream: #f7f3ee;
  --warm-white: #fdfaf7;
  --sage: #557a65;
  --sage-light: #c4d2c5;
  --terracotta: #96664b;
  --deep: #2c3130;
  --mid: #5a5f5e;
  --gold: #bfa07a;
  --border: rgba(122, 158, 140, 0.25);
}
html {
  overflow-x: hidden;
  font-size: 17px;
}
body {
  overflow-x: hidden;
  max-width: 100vw;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
section[id],
div[id] {
  scroll-margin-top: 80px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Jost", sans-serif;
  background: var(--warm-white);
  color: var(--deep);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}
address {
  font-style: normal;
}
:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 2px;
}
html[dir="rtl"],
html[dir="rtl"] body {
  overflow-x: hidden;
  max-width: 100vw;
  font-family: "Vazirmatn", "Jost", sans-serif;
}
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] .hero-title,
html[dir="rtl"] .section-label {
  font-family: "Vazirmatn", "Cormorant Garamond", serif;
}
html[dir="rtl"] .hero-tag::before,
html[dir="rtl"] .section-label::before {
  display: none;
}
html[dir="rtl"] .hero-tag::after,
html[dir="rtl"] .section-label::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 0.5rem;
}
html[dir="rtl"] .service-list li {
  padding-left: 0;
  padding-right: 1rem;
}
html[dir="rtl"] .service-list li::before {
  left: auto;
  right: 0;
}
html[dir="rtl"] .booking-steps li {
  flex-direction: row-reverse;
  text-align: right;
}
html[dir="rtl"] .contact-item {
  flex-direction: row-reverse;
  text-align: right;
}
html[dir="rtl"] .social-links {
  flex-direction: row-reverse;
}
html[dir="rtl"] .footer-top {
  flex-direction: row-reverse;
}
html[dir="rtl"] .trust-bar {
  flex-direction: row-reverse;
}
html[dir="rtl"] .modalities {
  flex-direction: row-reverse;
}
@media (min-width: 769px) {
  html[dir="rtl"] nav {
    flex-direction: row-reverse;
  }
  html[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
  }
  html[dir="rtl"] .hero-actions {
    flex-direction: row-reverse;
  }
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.3rem 0.5rem;
  cursor: pointer;
  transition: all 0.25s ease;
}
.lang-toggle:hover {
  border-color: var(--sage);
}
.lang-btn {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: 14px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  background: none;
  font-family: "Jost", sans-serif;
}
.lang-btn.active {
  background: var(--sage);
  color: white;
}
.lang-btn:not(.active) {
  color: var(--mid);
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4rem;
  background: rgba(253, 250, 247, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  gap: 1rem;
  inset-inline-start: 0;
  inset-inline-end: 0;
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--deep);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span {
  color: var(--sage);
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  text-decoration: none;
  color: var(--mid);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--terracotta);
}
.nav-links a.active-page {
  color: var(--deep);
  border-bottom: 1px solid var(--sage);
  padding-bottom: 1px;
}
.nav-cta {
  background: var(--sage) !important;
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: 3px;
  transition: background 0.25s;
}
.nav-cta:hover {
  background: var(--deep) !important;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--deep);
  padding: 0.9rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 2px solid var(--sage);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.18);
  padding-bottom: calc(0.9rem + env(safe-area-inset-bottom));
}
.sticky-bar.visible {
  transform: translateY(0);
}
:root {
  --sticky-bar-h: 0px;
}
body.has-sticky-bar {
  padding-bottom: calc(var(--sticky-bar-h) + env(safe-area-inset-bottom));
}
.sticky-bar-close {
  position: absolute;
  top: 0.45rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.sticky-bar-close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}
@media (max-width: 640px) {
  .sticky-bar {
    padding: 0.75rem 1rem;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
    gap: 0.6rem;
    flex-direction: column;
    align-items: stretch;
  }
  .sticky-bar-text {
    text-align: center;
    font-size: 0.82rem;
  }
  .sticky-bar-actions {
    width: 100%;
    flex-direction: column;
    gap: 0.55rem;
    align-items: stretch;
  }
  .sticky-bar-phone {
    text-align: center;
    font-size: 0.82rem;
    opacity: 0.9;
  }
  .sticky-bar-btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
  }
  .sticky-bar-close {
    top: 0.4rem;
    right: 0.6rem;
  }
}
.sticky-bar-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}
.sticky-bar-text strong {
  color: white;
}
.sticky-bar-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.sticky-bar-phone {
  color: var(--sage-light);
  font-size: 0.85rem;
  text-decoration: none;
}
.sticky-bar-btn {
  background: var(--sage);
  color: white;
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.25s;
  white-space: nowrap;
}
.sticky-bar-btn:hover {
  background: var(--terracotta);
}
.accepting-banner {
  background: var(--sage);
  color: white;
  text-align: center;
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 80px;
  position: relative;
  z-index: 90;
  line-height: 1.6;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
}
.page-hero {
  padding: 7rem 6rem 5rem;
  background: var(--deep);
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(122, 158, 140, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.page-hero .section-label {
  color: var(--sage-light);
  margin-bottom: 1.5rem;
}
.page-hero .section-label::before {
  background: var(--sage-light);
}
.page-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 300;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--sage-light);
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  line-height: 1.9;
}
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--sage);
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--deep);
  line-height: 1.1;
}
.section-header h2 em {
  font-style: italic;
  color: var(--sage);
}
.section-header .section-label {
  justify-content: center;
  color: var(--terracotta);
}
.section-header .section-label::before {
  background: var(--terracotta);
}
.btn-primary {
  background: var(--deep);
  color: white;
  padding: 1rem 2.25rem;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  transition:
    background 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-block;
}
.btn-primary:hover {
  background: var(--sage);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(122, 158, 140, 0.25);
}
.btn-secondary {
  color: var(--mid);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--sage-light);
  padding-bottom: 2px;
  transition: color 0.25s;
}
.btn-secondary:hover {
  color: var(--terracotta);
}
.trust-bar {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 4rem;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--mid);
}
.trust-item strong {
  color: var(--deep);
  font-weight: 500;
}
#who {
  padding: 7rem 6rem;
  background: var(--warm-white);
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.who-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: 3px;
  border-top: 3px solid var(--sage);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.who-card:nth-child(2) {
  border-top-color: var(--terracotta);
}
.who-card:nth-child(3) {
  border-top-color: var(--gold);
}
.who-card:nth-child(4) {
  border-top-color: var(--deep);
}
.who-card:hover,
.who-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(44, 49, 48, 0.08);
}
.who-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}
.who-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 0.75rem;
}
.who-body {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.9;
}
#home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 106px);
  min-height: calc(100dvh - 106px);
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 6rem;
}
.hero-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-tag::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--terracotta);
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--deep);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--sage);
}
.hero-title-sub {
  display: block;
  margin-top: 1.1rem;
  font-family: "Jost", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  line-height: 1.5;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 460px;
  margin-bottom: 1.5rem;
  line-height: 1.9;
}
.hero-langs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.lang-badge {
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--deep);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: 3px;
  text-transform: uppercase;
}
.lang-badge.highlight {
  background: var(--sage);
  border-color: var(--sage);
  color: white;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.hero-right {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-right::before {
  content: "";
  position: absolute;
  width: min(480px, 90vw);
  height: min(480px, 90vw);
  border-radius: 50%;
  border: 1px solid var(--sage-light);
  opacity: 0.45;
}
.hero-right::after {
  content: "";
  position: absolute;
  width: min(360px, 70vw);
  height: min(360px, 70vw);
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.25;
}
.hero-photo-card {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: floatUp 0.9s ease both;
  padding: 2rem;
  max-width: 100%;
}
.hero-photo {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 6px solid white;
  box-shadow: 0 12px 50px rgba(44, 49, 48, 0.15);
  display: block;
  margin: 0 auto 1.4rem;
}
.hero-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 0.2rem;
}
.hero-creds {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-tags {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.tag {
  background: white;
  border: 1px solid var(--border);
  color: var(--mid);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
  text-transform: uppercase;
}
.hero-consult {
  font-size: 0.78rem;
  color: var(--terracotta);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.hero-badges {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.pt-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: #0a6e44;
  color: white;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border-radius: 3px;
  text-decoration: none;
  height: 32px;
  flex: 1;
  min-width: 0;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ig-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: linear-gradient(
    135deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: white;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 0.9rem;
  border-radius: 3px;
  text-decoration: none;
  height: 32px;
  flex: 1;
  min-width: 0;
  transition: opacity 0.25s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ig-badge:hover {
  opacity: 0.88;
}
@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.about-left {
  background: var(--deep);
  padding: 4rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
.about-left::before {
  content: "نور";
  position: absolute;
  font-family: "Cormorant Garamond", serif;
  font-size: 18rem;
  color: rgba(255, 255, 255, 0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.about-right {
  background: var(--cream);
  padding: 4rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.about-left .section-label {
  color: var(--sage-light);
}
.about-left .section-label::before {
  background: var(--sage-light);
}
.about-right .section-label {
  color: var(--terracotta);
}
.about-right .section-label::before {
  background: var(--terracotta);
}
.about-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.8rem;
}
.about-title em {
  font-style: italic;
  color: var(--sage-light);
}
.about-body {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.9;
  position: relative;
  z-index: 1;
}
.approach-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--deep);
  margin-bottom: 1.8rem;
  line-height: 1.1;
}
.approach-body {
  color: var(--mid);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}
.modalities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.modality-tag {
  background: white;
  border: 1px solid var(--border);
  color: var(--mid);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.9rem;
  border-radius: 3px;
  text-transform: uppercase;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
}
.service-card {
  background: var(--cream);
  padding: 3rem 2.5rem;
  border-radius: 3px;
  position: relative;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44, 49, 48, 0.08);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sage);
}
.service-card:nth-child(2)::before {
  background: var(--terracotta);
}
.service-card:nth-child(3)::before {
  background: var(--gold);
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: block;
}
.service-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 0.5rem;
}
.service-price {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.service-body {
  color: var(--mid);
  font-size: 0.97rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-list li {
  font-size: 0.8rem;
  color: var(--mid);
  padding-left: 1rem;
  position: relative;
  line-height: 1.75;
}
.service-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--sage);
}
.fees-banner {
  background: var(--deep);
  padding: 3rem 4rem;
  border-radius: 3px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 2rem;
}
.fee-item {
  text-align: center;
}
.fee-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: white;
  display: block;
}
.fee-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-light);
}
.fee-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
}
#faq {
  padding: 7rem 6rem;
  background: var(--cream);
}
.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: white;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.faq-question {
  padding: 1.4rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--deep);
  font-weight: 400;
}
.faq-question:hover {
  color: var(--sage);
}
.faq-icon {
  font-size: 1.2rem;
  color: var(--sage);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  padding: 0 2rem;
  font-size: 0.97rem;
  color: var(--mid);
  line-height: 1.9;
}
.faq-item.open .faq-answer {
  max-height: 1000px;
  padding: 0 2rem 1.5rem;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
#blog {
  padding: 7rem 6rem;
  background: var(--warm-white);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.blog-card {
  background: white;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  cursor: pointer;
}
.blog-card:hover,
.blog-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44, 49, 48, 0.08);
}
.blog-card-img {
  background: var(--cream);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid var(--border);
}
.blog-card-body {
  padding: 2rem;
}
.blog-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
.blog-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.blog-excerpt {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.blog-read {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  border-bottom: 1px solid var(--sage-light);
  padding-bottom: 1px;
}
.blog-card,
.blog-card:link,
.blog-card:visited,
.blog-card:hover,
.blog-card:active {
  text-decoration: none !important;
  -webkit-text-decoration: none !important;
  color: inherit;
}
.blog-card * {
  text-decoration: none !important;
  -webkit-text-decoration: none !important;
}
.blog-card:focus-visible {
  outline: 2px solid rgba(127, 156, 141, 0.55);
  outline-offset: 4px;
}
.blog-card {
  border-radius: 12px;
}
.blog-card-img {
  height: 190px;
}
.blog-card-body {
  padding: 1.75rem;
}
.blog-title {
  letter-spacing: 0.01em;
}
.blog-excerpt {
  color: rgba(44, 49, 48, 0.78);
}
.blog-read {
  margin-top: 1.25rem;
  font-weight: 600;
}
@media (max-width: 900px) {
  .blog-card-img {
    height: 160px;
  }
  .blog-card-body {
    padding: 1.35rem;
  }
}
.blog-card:hover .blog-title,
.blog-card:focus-visible .blog-title {
  text-decoration: underline !important;
  text-decoration-color: var(--sage) !important;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 6px;
}
.blog-card-img {
  position: relative;
  background: radial-gradient(
    120% 120% at 20% 20%,
    rgba(122, 158, 140, 0.22) 0%,
    rgba(247, 243, 238, 1) 55%,
    rgba(192, 139, 110, 0.12) 100%
  );
}
.blog-card:nth-child(2) .blog-card-img {
  background: radial-gradient(
    120% 120% at 80% 10%,
    rgba(192, 139, 110, 0.2) 0%,
    rgba(247, 243, 238, 1) 55%,
    rgba(122, 158, 140, 0.12) 100%
  );
}
.blog-card:nth-child(3) .blog-card-img {
  background: radial-gradient(
    120% 120% at 40% 20%,
    rgba(191, 160, 122, 0.2) 0%,
    rgba(247, 243, 238, 1) 55%,
    rgba(44, 49, 48, 0.06) 100%
  );
}
.blog-card-img svg {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 14px;
  box-shadow: 0 10px 26px rgba(44, 49, 48, 0.08);
}
.blog-tag {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(122, 158, 140, 0.1);
  border: 1px solid rgba(122, 158, 140, 0.18);
  width: fit-content;
}
.blog-read {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-bottom: none;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(122, 158, 140, 0.22);
  border-radius: 999px;
  background: rgba(247, 243, 238, 0.6);
}
.blog-card:hover .blog-read {
  background: rgba(122, 158, 140, 0.1);
  border-color: rgba(122, 158, 140, 0.35);
}
.blog-post-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 49, 48, 0.75);
  z-index: 200;
  overflow-y: auto;
  padding: 2rem;
}
.blog-post-overlay.open {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.blog-post-content {
  background: white;
  max-width: 720px;
  width: 100%;
  margin: 4rem auto;
  padding: 4rem;
  border-radius: 3px;
  position: relative;
}
.blog-post-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--mid);
}
.blog-post-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.blog-post-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--deep);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.blog-post-meta {
  font-size: 0.78rem;
  color: var(--mid);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.blog-post-body {
  font-size: 1.05rem;
  color: var(--mid);
  line-height: 1.9;
}
.blog-post-body h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--deep);
  margin: 2.5rem 0 1rem;
}
.blog-post-body h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--deep);
  margin: 2rem 0 0.75rem;
}
.blog-post-body p {
  margin-bottom: 1.25rem;
}
.blog-post-cta {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.blog-post-cta p {
  font-size: 0.9rem;
  color: var(--mid);
  margin-bottom: 1rem;
}
#contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#privacy {
  padding: 6rem;
  background: var(--warm-white);
  max-width: 900px;
  margin: 0 auto;
}
#privacy h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--deep);
  margin-bottom: 2rem;
}
#privacy h2 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--deep);
  margin: 1.5rem 0 0.5rem;
}
#privacy p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 0.75rem;
}
.article-nav {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-start;
}
footer {
  background: var(--deep);
  padding: 4rem 6rem;
  padding-bottom: 5rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: white;
}
.footer-logo span {
  color: var(--sage-light);
}
.footer-tagline {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}
.footer-col h3 {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col ul a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  transition: color 0.25s;
}
.footer-col ul a:hover {
  color: white;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.72);
}
.footer-disclaimer {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 500px;
  line-height: 1.75;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep);
  border-radius: 3px;
  transition: all 0.25s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--warm-white);
  z-index: 98;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  padding: 90px 24px calc(16px + env(safe-area-inset-bottom));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  text-decoration: none;
  color: var(--deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 300;
  padding: 7px 0;
  letter-spacing: 0.03em;
  transition: color 0.25s;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-menu a:first-child {
  border-top: 1px solid var(--border);
}
.mobile-menu a:hover {
  color: var(--sage);
}
.mobile-menu .mobile-book {
  margin-top: 10px;
  background: var(--sage);
  color: white !important;
  padding: 12px 40px;
  border-radius: 3px;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  width: auto;
  font-weight: 400;
  flex-shrink: 0;
}
.mobile-menu .mobile-book:hover {
  background: var(--deep) !important;
}
.mobile-menu-lang {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  width: 100%;
}
.about-page-left {
  background: var(--deep);
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.about-page-left::before {
  content: "نور";
  position: absolute;
  font-family: "Cormorant Garamond", serif;
  font-size: 18rem;
  color: rgba(255, 255, 255, 0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.about-page-right {
  background: var(--cream);
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.credentials-section {
  padding: 6rem 6rem;
  background: var(--warm-white);
}
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.credential-card {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 3px;
  border-left: 3px solid var(--sage);
}
.credential-card:nth-child(2) {
  border-left-color: var(--terracotta);
}
.credential-card:nth-child(3) {
  border-left-color: var(--gold);
}
.credential-card:nth-child(4) {
  border-left-color: var(--deep);
}
.credential-card:nth-child(5) {
  border-left-color: var(--sage);
}
.credential-card:nth-child(6) {
  border-left-color: var(--terracotta);
}
.credential-card:nth-child(7) {
  border-left-color: var(--gold);
}
.credential-card:nth-child(8) {
  border-left-color: var(--deep);
}
.credential-card:nth-child(9) {
  border-left-color: var(--sage);
}
.credential-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}
.credential-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--deep);
  line-height: 1.4;
}
@media (max-width: 1024px) {
  #home {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  #home .hero-left {
    padding: 2.5rem 2rem !important;
  }
  #home .hero-right {
    min-height: 320px !important;
  }
  nav {
    padding: 1.2rem 2rem;
  }
  .nav-links {
    gap: 1rem;
  }
  .nav-links li.hide-md {
    display: none;
  }
  .trust-bar {
    padding: 1.2rem 2rem;
    gap: 1.5rem;
  }
  #who,
  #services,
  #faq,
  #blog,
  .who-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid,
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .credentials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sticky-bar {
    padding: 0.9rem 2rem;
  }
  .hero-left {
    padding: 3.5rem 2.5rem;
  }
  .hero-photo {
    width: 200px;
    height: 200px;
  }
  .hero-photo-card {
    padding: 1.5rem;
  }
  .hero-title {
    font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  }
  .about-left,
  .about-right {
    padding: 4rem 3rem;
  }
  .about-page-left,
  .about-page-right {
    padding: 4rem 3rem;
  }
  .contact-left,
  .contact-right {
    padding: 4rem 3rem;
  }
  .credentials-section {
    padding: 5rem 2rem;
  }
  .page-hero {
    padding: 6rem 2rem 4rem;
  }
}
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative;
  }
  nav {
    padding: 0.9rem 1.2rem !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
  }
  .nav-links {
    display: none !important;
  }
  .hamburger {
    display: flex !important;
    flex-shrink: 0 !important;
  }
  .nav-logo {
    flex-shrink: 1 !important;
    min-width: 0 !important;
  }
  .nav-right {
    flex-shrink: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.5rem !important;
  }
  .lang-toggle {
    flex-shrink: 0 !important;
  }
  html[dir="rtl"] nav {
    flex-direction: row !important;
  }
  html[dir="rtl"] .nav-right {
    flex-direction: row !important;
  }
  .accepting-banner {
    margin-top: 64px !important;
    font-size: 10px !important;
    padding: 12px 16px !important;
    white-space: normal !important;
    text-align: center !important;
    width: 100% !important;
    line-height: 1.7 !important;
    overflow: visible !important;
    letter-spacing: 0.05em !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    z-index: 90 !important;
  }
  #home {
    display: flex !important;
    flex-direction: column !important;
    min-height: auto !important;
    width: 100% !important;
    overflow: hidden !important;
  }
  .hero-left {
    padding: 2.5rem 1.5rem !important;
    width: 100% !important;
    order: 1;
  }
  .hero-right {
    min-height: 340px !important;
    padding: 2rem 1.5rem !important;
    width: 100% !important;
    order: 2;
    overflow: hidden !important;
  }
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem) !important;
  }
  .hero-actions {
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
  }
  .hero-actions a {
    width: 100%;
    text-align: center;
  }
  .hero-langs {
    flex-wrap: wrap !important;
  }
  .hero-photo {
    width: 160px !important;
    height: 160px !important;
  }
  .hero-photo-card {
    padding: 1.5rem 1rem !important;
    max-width: 100% !important;
  }
  .hero-badges {
    flex-direction: column !important;
    gap: 0.5rem !important;
    width: 100%;
  }
  .hero-badges a {
    width: 100%;
    text-align: center;
  }
  .hero-tags {
    flex-wrap: wrap !important;
    justify-content: center;
  }
  html[dir="rtl"] #home {
    flex-direction: column !important;
    direction: rtl;
  }
  html[dir="rtl"] .hero-left {
    text-align: right;
  }
  html[dir="rtl"] .hero-tag {
    flex-direction: row-reverse;
  }
  html[dir="rtl"] .hero-langs {
    justify-content: flex-end;
  }
  html[dir="rtl"] .hero-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  #about,
  #contact,
  .about-page-grid {
    grid-template-columns: 1fr !important;
  }
  .who-grid,
  .services-grid,
  .blog-grid,
  .credentials-grid {
    grid-template-columns: 1fr !important;
  }
  .footer-top {
    flex-direction: column !important;
    gap: 2rem;
  }
  .about-left,
  .about-right,
  .contact-left,
  .contact-right {
    padding: 3rem 1.5rem !important;
  }
  .about-page-left,
  .about-page-right {
    padding: 3rem 1.5rem !important;
  }
  #who,
  #services,
  #faq,
  #blog,
  .credentials-section {
    padding: 4rem 1.5rem !important;
  }
  .page-hero {
    padding: 5rem 1.5rem 3rem !important;
  }
  footer {
    padding: 3rem 1.5rem 5rem !important;
  }
  #privacy {
    padding: 4rem 1.5rem !important;
  }
  .fees-banner {
    padding: 2rem 1.5rem !important;
    flex-direction: column !important;
  }
  .fee-divider {
    width: 60px !important;
    height: 1px !important;
  }
  .blog-post-content {
    padding: 2rem 1.5rem !important;
    margin: 0.5rem !important;
  }
  .sticky-bar {
    flex-direction: column !important;
    gap: 0.75rem;
    padding: 1rem;
    text-align: center;
  }
  .trust-bar {
    padding: 1rem !important;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .mobile-menu-lang {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
  }
  .mobile-menu-lang .lang-btn {
    font-size: 0.85rem;
    padding: 0.5rem 1.5rem;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--mid);
    cursor: pointer;
    font-family: "Jost", sans-serif;
  }
  .mobile-menu-lang .lang-btn.active {
    background: var(--sage);
    color: white;
    border-color: var(--sage);
  }
}
#trust {
  padding: 7rem 6rem;
  background: var(--deep);
  position: relative;
  overflow: hidden;
  text-align: center;
}
#trust::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(122, 158, 140, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
#trust .section-label {
  color: var(--sage-light);
  justify-content: center;
}
#trust .section-label::before {
  background: var(--sage-light);
}
.trust-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 300;
  color: white;
  line-height: 1.15;
  max-width: 900px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.trust-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  padding: 2.2rem;
  text-align: left;
}
.trust-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  color: white;
  margin-bottom: 0.9rem;
  line-height: 1.3;
}
.trust-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.85;
  font-size: 0.98rem;
}
@media (max-width: 980px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
  #trust {
    padding: 5.5rem 1.8rem;
  }
  .trust-card {
    padding: 2rem;
  }
}
.article-nav {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}
.article-nav .btn-secondary {
  text-decoration: none !important;
}
.hero-actions .btn-primary {
  background: var(--sage) !important;
  color: white !important;
}
.hero-actions .btn-primary:hover {
  background: var(--deep) !important;
}
.insurance-section {
  background: var(--warm-white) !important;
  padding: 7rem 6rem;
}
.insurance-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
@media (max-width: 720px) {
  .insurance-grid {
    grid-template-columns: 1fr;
  }
}
.insurance-grid .service-card {
  background: var(--cream) !important;
  border-left: none !important;
  padding: 3rem 2.5rem !important;
}
.insurance-grid .service-card::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 3px !important;
  background: var(--sage) !important;
}
.insurance-grid .service-card:nth-child(2)::before {
  background: var(--terracotta) !important;
}
.insurance-grid .service-title {
  font-family: "Cormorant Garamond", serif !important;
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  color: var(--deep) !important;
  margin-bottom: 0.5rem !important;
}
.insurance-grid .service-body {
  font-size: 0.97rem !important;
  color: var(--mid) !important;
  line-height: 1.9 !important;
  margin-bottom: 1.5rem !important;
}
section.who-next-step {
  background: var(--deep) !important;
  padding: 7rem 6rem !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
  display: block !important;
}
section.who-next-step::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(122, 158, 140, 0.12) 0%,
    transparent 70%
  ) !important;
  pointer-events: none !important;
}
section.who-next-step > * {
  position: relative !important;
  z-index: 1 !important;
}
section.who-next-step .section-label {
  color: var(--sage-light) !important;
  justify-content: center !important;
  margin-bottom: 1.5rem !important;
}
section.who-next-step .section-label::before {
  background: var(--sage-light) !important;
}
section.who-next-step h2 {
  font-family: "Cormorant Garamond", serif !important;
  font-size: clamp(2rem, 3.5vw, 3.2rem) !important;
  font-weight: 300 !important;
  color: white !important;
  line-height: 1.1 !important;
  margin-bottom: 1rem !important;
}
section.who-next-step p {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 1rem !important;
  max-width: 480px !important;
  margin: 0 auto 2rem !important;
  line-height: 1.9 !important;
}
section.who-next-step > a {
  display: inline-block !important;
  background: var(--sage) !important;
  color: white !important;
  padding: 0.95rem 2.5rem !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border-radius: 3px !important;
  transition: background 0.25s !important;
}
section.who-next-step > a:hover {
  background: white !important;
  color: var(--deep) !important;
}
section.who-next-step p a {
  display: inline !important;
  background: none !important;
  padding: 0 !important;
  font-size: inherit !important;
  letter-spacing: inherit !important;
  text-transform: none !important;
  border-radius: 0 !important;
}
@media (max-width: 768px) {
  section.who-next-step {
    padding: 4rem 1.5rem !important;
  }
}
.article-section {
  background: var(--warm-white);
  padding: 5rem 0;
}
.article-section .blog-post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}
.article-section .blog-post-cta {
  max-width: 760px;
  margin: 3rem auto 0;
  padding: 2rem 2rem 0;
  border-top: 1px solid var(--border);
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 1.25rem !important;
}
.article-section .blog-post-cta p {
  font-size: 1rem;
  color: var(--mid);
  max-width: 460px;
  line-height: 1.85;
  margin: 0;
}
.article-section .blog-post-cta a {
  display: inline-block !important;
  background: var(--sage) !important;
  color: white !important;
  padding: 0.95rem 2.5rem !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border-radius: 3px !important;
  transition:
    background 0.25s,
    transform 0.2s !important;
}
.article-section .blog-post-cta a:hover {
  background: var(--deep) !important;
  transform: translateY(-1px) !important;
}
.article-section .article-nav {
  max-width: 760px;
  margin: 2rem auto 0;
  padding: 2rem 2rem 0;
  border-top: 1px solid var(--border);
  display: flex !important;
  justify-content: flex-start !important;
}
.article-section .article-nav .btn-secondary {
  text-decoration: none !important;
}
@media (max-width: 768px) {
  .article-section {
    padding: 3rem 0 !important;
  }
  .article-section .blog-post-body,
  .article-section .blog-post-cta,
  .article-section .article-nav {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}
#contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 74px);
  min-height: calc(100dvh - 74px);
  height: auto;
  max-height: none;
}
.contact-left {
  background: var(--warm-white);
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: visible;
}
.contact-right {
  background: var(--sage);
  padding: 3rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: visible;
}
.contact-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--deep);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 38px;
  height: 38px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item-icon svg {
  width: 16px;
  height: 16px;
}
.contact-item-text {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.7;
}
.contact-item-text strong {
  display: block;
  color: var(--deep);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.contact-item-text a {
  color: var(--mid);
  text-decoration: none;
}
.contact-item-text a:hover {
  color: var(--terracotta);
}
.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--mid);
  text-decoration: none;
  letter-spacing: 0.03em;
}
.social-link:hover {
  color: var(--sage);
}
.booking-card {
  background: white;
  padding: 2.5rem;
  border-radius: 3px;
  width: 100%;
  max-width: 400px;
}
.booking-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.booking-card > p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.booking-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
  padding: 0;
}
.booking-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.6;
}
.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--deep);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 500;
}
.btn-booking {
  display: block;
  width: 100%;
  background: var(--deep);
  color: white;
  text-align: center;
  padding: 1rem;
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  margin-bottom: 1rem;
  transition:
    background 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-booking:hover {
  background: var(--sage);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(122, 158, 140, 0.25);
}
.booking-note {
  font-size: 0.82rem;
  color: var(--mid);
  text-align: center;
  letter-spacing: 0.05em;
}
@media (max-width: 1100px) {
  .contact-left {
    padding: 4rem 3.5rem;
  }
  .contact-right {
    padding: 4rem 3rem;
  }
}
@media (max-width: 768px) {
  #contact {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .contact-left {
    padding: 3.5rem 1.75rem;
    justify-content: flex-start;
  }
  .contact-right {
    padding: 3rem 1.75rem;
  }
  .contact-title {
    font-size: clamp(2rem, 7vw, 2.8rem);
    margin-bottom: 2rem;
  }
  .booking-card {
    max-width: 100%;
    padding: 2rem;
  }
}
.blog-post-body a {
  color: var(--sage);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.blog-post-body a:hover {
  color: var(--terracotta);
}
.insurance-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .insurance-cards-grid {
    grid-template-columns: 1fr;
  }
  .insurance-info-section {
    padding: 3.5rem 1.5rem !important;
  }
  .services-cta-section {
    padding: 3.5rem 1.5rem !important;
  }
}
#article > div {
  font-size: 1.05rem !important;
  line-height: 1.9 !important;
  color: var(--mid) !important;
}
@media (max-width: 600px) {
  #article > div {
    padding: 0 1.25rem !important;
  }
}
#article h2,
#article h3 {
  font-family: "Cormorant Garamond", serif !important;
  font-weight: 400 !important;
  color: var(--deep) !important;
  line-height: 1.2 !important;
  margin-top: 3rem !important;
  margin-bottom: 1rem !important;
}
#article h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem) !important;
  font-style: italic !important;
  border-left: 2px solid var(--sage);
  padding-left: 1.2rem;
}
#article h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem) !important;
  font-style: normal !important;
  color: var(--deep) !important;
}
#article > div > p:first-child {
  font-family: "Cormorant Garamond", serif !important;
  font-size: 1.25rem !important;
  line-height: 1.85 !important;
  color: var(--deep) !important;
  font-style: italic !important;
  padding-bottom: 1.5rem !important;
  border-bottom: 1px solid rgba(122, 158, 140, 0.25) !important;
  margin-bottom: 1.75rem !important;
}
html[dir="rtl"] #article h2 {
  border-left: none;
  border-right: 2px solid var(--sage);
  padding-left: 0;
  padding-right: 1.2rem;
}
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-booking:focus-visible,
.nav-cta:focus-visible,
.sticky-bar-btn:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}
.faq-question:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: -2px;
}
.hamburger:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}
.lang-btn:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 2px;
}
a.lang-btn {
  text-decoration: none;
  display: inline-block;
}
.nav-links a:focus-visible {
  outline: 2px solid rgba(127, 156, 141, 0.55);
  outline-offset: 3px;
}
@media (max-width: 768px) {
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  [style*="padding:6rem 6rem"],
  [style*="padding: 6rem 6rem"] {
    padding: 4rem 1.5rem !important;
  }
  [style*="padding:7rem 6rem"],
  [style*="padding: 7rem 6rem"] {
    padding: 4rem 1.5rem !important;
  }
  [style*="padding:5rem 2rem"] {
    padding: 3rem 1.5rem !important;
  }
}
@media print {
  .sticky-bar,
  .hamburger,
  .mobile-menu,
  .nav-right,
  .accepting-banner,
  .lang-toggle {
    display: none !important;
  }
  nav {
    position: static !important;
    border-bottom: 1px solid #ccc !important;
    background: white !important;
    backdrop-filter: none !important;
  }
  footer {
    background: #f5f5f5 !important;
    color: #333 !important;
    padding: 2rem !important;
  }
  .footer-col ul a,
  .footer-copy,
  .footer-disclaimer,
  .footer-tagline {
    color: #555 !important;
  }
  body {
    font-size: 12pt !important;
    line-height: 1.6 !important;
    color: #000 !important;
  }
  a {
    color: #000 !important;
    text-decoration: underline !important;
  }
  .hero-right::before,
  .hero-right::after {
    display: none !important;
  }
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
}

.page-hero [style*="color:var(--deep)"],
.page-hero [style*="color: var(--deep)"] {
  color: white !important;
}
.page-hero [style*="color:var(--mid)"],
.page-hero [style*="color: var(--mid)"] {
  color: rgba(255, 255, 255, 0.65) !important;
}
.about-page-left [style*="color:var(--deep)"],
.about-page-left [style*="color: var(--deep)"] {
  color: white !important;
}
.about-page-left [style*="color:var(--mid)"],
.about-page-left [style*="color: var(--mid)"] {
  color: rgba(255, 255, 255, 0.65) !important;
}
#trust [style*="color:var(--deep)"],
#trust [style*="color: var(--deep)"] {
  color: white !important;
}
#trust [style*="color:var(--mid)"],
#trust [style*="color: var(--mid)"] {
  color: rgba(255, 255, 255, 0.65) !important;
}
.page-hero .btn-secondary {
  color: rgba(255, 255, 255, 0.72) !important;
  border-bottom-color: rgba(255, 255, 255, 0.3) !important;
}
.page-hero .btn-secondary:hover {
  color: white !important;
}

.page-hero--with-photo {
  position: relative;
}
.page-hero--with-photo .page-hero-inner {
  max-width: 50%;
}
.page-hero-photo {
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.page-hero-img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(122, 158, 140, 0.3);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 12px rgba(122, 158, 140, 0.08);
}
@media (max-width: 900px) {
  .page-hero--with-photo {
    text-align: center;
    padding-bottom: 0 !important;
  }
  .page-hero--with-photo .page-hero-inner {
    max-width: 100%;
    padding-bottom: 22rem;
  }
  .page-hero--with-photo .page-hero-inner p {
    margin-left: auto;
    margin-right: auto;
  }
  .page-hero-photo {
    top: auto;
    bottom: 2rem;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .page-hero-img {
    width: 240px;
    height: 240px;
  }
}
@media (max-width: 600px) {
  .page-hero--with-photo .page-hero-inner {
    padding-bottom: 18rem;
  }
  .page-hero-img {
    width: 200px;
    height: 200px;
  }
}
html[dir="rtl"] .page-hero-photo {
  left: 25%;
  transform: translate(-50%, -50%);
}
@media (max-width: 900px) {
  html[dir="rtl"] .page-hero-photo {
    left: 50%;
    transform: translate(-50%, 0);
  }
}
html[dir="rtl"] .faq-icon {
  margin-left: 0;
  margin-right: 1rem;
}
html[dir="rtl"] .credential-card {
  border-left: none;
  border-right: 3px solid var(--sage);
}
html[dir="rtl"] .trust-card {
  text-align: right;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media print {
  .who-card,
  #about,
  .about-page-grid,
  #contact {
    grid-template-columns: 1fr !important;
  }
  section[style*="background:var(--deep)"] {
    background: #f5f5f5 !important;
    color: #000 !important;
  }
  section[style*="background:var(--deep)"] * {
    color: #000 !important;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 98;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, bottom 0.4s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
body.has-sticky-bar .whatsapp-float {
  bottom: calc(var(--sticky-bar-h) + 1rem + env(safe-area-inset-bottom));
}
@media (max-width: 640px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 1rem;
    right: 1rem;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}
@media print {
  .whatsapp-float {
    display: none !important;
  }
}
