/* ===================================================================
   Dr. Iran Farhang Adib — Elegant Bilingual Website
   Design System & Stylesheet
   =================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand palette — sophisticated rose, gold & cream */
  --rose-900: #6B1F33;
  --rose-800: #8B2942;
  --rose-700: #9D3754;
  --rose-600: #B85569;
  --rose-500: #C97384;
  --rose-100: #F3DDE2;
  --rose-50:  #FBF1F3;

  --gold-700: #A8853E;
  --gold-600: #C9A961;
  --gold-500: #D8BE86;
  --gold-300: #EBDDC0;

  --cream:    #FAF6F0;
  --cream-2:  #F4ECE0;
  --cream-3:  #EDE1D1;
  --ink:      #2D2A28;
  --ink-soft: #5A524E;
  --muted:    #8A7F7A;
  --line:     #E7DCCF;
  --white:    #FFFFFF;

  --shadow-sm: 0 4px 14px rgba(107, 31, 51, 0.06);
  --shadow-md: 0 14px 40px rgba(107, 31, 51, 0.10);
  --shadow-lg: 0 30px 70px rgba(107, 31, 51, 0.16);

  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;

  --maxw: 1200px;
  --maxw-narrow: 880px;

  --ff-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --ff-sans: 'Jost', 'Montserrat', system-ui, -apple-system, sans-serif;

  --t-fast: 0.22s ease;
  --t: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Persian typography */
html[lang="fa"] {
  --ff-serif: 'Vazirmatn', 'Cormorant Garamond', serif;
  --ff-sans: 'Vazirmatn', system-ui, sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
html[lang="fa"] body { font-weight: 400; letter-spacing: 0; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--rose-900);
  margin: 0 0 0.5em;
  letter-spacing: 0.2px;
}
html[lang="fa"] h1,
html[lang="fa"] h2,
html[lang="fa"] h3,
html[lang="fa"] h4 { font-weight: 700; line-height: 1.35; }

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
p  { margin: 0 0 1.1em; }

::selection { background: var(--rose-800); color: var(--white); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--narrow .container { max-width: var(--maxw-narrow); }
.section--cream { background: var(--cream); }
.section--cream2 { background: var(--cream-2); }
.section--rose { background: linear-gradient(150deg, var(--rose-900), var(--rose-800)); color: var(--cream); }
.section--rose h1, .section--rose h2, .section--rose h3 { color: var(--white); }

.text-center { text-align: center; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); }

/* ---------- Eyebrow / Section heading ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 18px;
}
html[lang="fa"] .eyebrow { letter-spacing: 0.12em; text-transform: none; font-size: 0.9rem; }
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold-600);
  display: inline-block;
}
html[lang="fa"] .eyebrow { flex-direction: row; }
.section--rose .eyebrow { color: var(--gold-300); }
.section--rose .eyebrow::before { background: var(--gold-300); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 70px); }
.section-head.text-center { margin-inline: auto; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }
.section--rose .section-head p { color: rgba(255,255,255,0.82); }

/* ---------- Decorative divider (floral) ---------- */
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin: 18px 0;
}
.divider .line { height: 1px; width: 60px; background: var(--gold-500); opacity: 0.7; }
.divider svg { width: 26px; height: 26px; color: var(--gold-600); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 15px 32px;
  border-radius: 100px;
  transition: all var(--t);
  position: relative;
  cursor: pointer;
  white-space: nowrap;
}
html[lang="fa"] .btn { font-weight: 600; letter-spacing: 0; }
.btn--primary {
  background: linear-gradient(135deg, var(--rose-800), var(--rose-700));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(139, 41, 66, 0.28);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(139, 41, 66, 0.38);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-700));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(168, 133, 62, 0.28);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(168, 133, 62, 0.38); }
.btn--ghost {
  background: transparent;
  color: var(--rose-800);
  border: 1.5px solid var(--rose-800);
}
.btn--ghost:hover { background: var(--rose-800); color: var(--white); transform: translateY(-3px); }
.btn--light {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);
}
.btn--light:hover { background: var(--white); color: var(--rose-800); transform: translateY(-3px); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all var(--t);
  padding: 18px 0;
}
/* Mobile menu: hidden on desktop, shown only on mobile (max-width:760px) */
.mobile-menu { display: none; }
.site-header.scrolled {
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(107, 31, 51, 0.08);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand__mark {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-800), var(--rose-700));
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(139, 41, 66, 0.3);
  flex-shrink: 0;
}
.brand__text { line-height: 1.1; }
.brand__name {
  font-family: var(--ff-serif);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--rose-900);
  display: block;
}
html[lang="fa"] .brand__name { font-weight: 700; }
.brand__role {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-700);
}
html[lang="fa"] .brand__role { letter-spacing: 0; text-transform: none; font-size: 0.74rem; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.04em;
  position: relative;
  padding: 6px 0;
  transition: color var(--t-fast);
}
html[lang="fa"] .nav__links a { font-weight: 500; }
.nav__links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold-600);
  transition: width var(--t);
}
.nav__links a:hover, .nav__links a.active { color: var(--rose-800); }
.nav__links a:hover::after, .nav__links a.active::after { width: 22px; }

/* On pages with a dark page-hero, header text is light (until scrolled) */
body.has-page-hero:not(.header-scrolled) .brand__name { color: var(--white); }
body.has-page-hero:not(.header-scrolled) .brand__role { color: var(--gold-300); }
body.has-page-hero:not(.header-scrolled) .nav__links a { color: rgba(255,255,255,0.9); }
body.has-page-hero:not(.header-scrolled) .nav__links a:hover,
body.has-page-hero:not(.header-scrolled) .nav__links a.active { color: rgba(255,255,255,0.95); }
body.has-page-hero:not(.header-scrolled) .lang-toggle { color: var(--white); border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.1); }
body.has-page-hero:not(.header-scrolled) .lang-toggle:hover { background: var(--white); color: var(--rose-800); border-color: var(--white); }
body.has-page-hero:not(.header-scrolled) .theme-toggle { color: var(--white); border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.1); }
body.has-page-hero:not(.header-scrolled) .theme-toggle:hover { background: var(--white); color: var(--rose-800); border-color: var(--white); }
body.has-page-hero:not(.header-scrolled) .nav__actions .btn--primary { background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.5); backdrop-filter: blur(6px); }
body.has-page-hero:not(.header-scrolled) .nav__actions .btn--primary:hover { background: var(--white); color: var(--rose-800); }
body.has-page-hero:not(.header-scrolled) .nav__toggle span,
body.has-page-hero:not(.header-scrolled) .nav__toggle span::before,
body.has-page-hero:not(.header-scrolled) .nav__toggle span::after { background: var(--white); }

.nav__actions { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--gold-500);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--rose-800);
  transition: all var(--t-fast);
  background: rgba(255,255,255,0.4);
}
.lang-toggle:hover { background: var(--rose-800); color: var(--white); border-color: var(--rose-800); }
.lang-toggle svg { width: 15px; height: 15px; }

/* Mobile toggle */
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--rose-800);
  transform: translate(-50%, -50%);
  transition: all var(--t);
}
.nav__toggle span::before { transform: translate(-50%, -7px); }
.nav__toggle span::after { transform: translate(-50%, 7px); }
.nav__toggle.open span { background: transparent; }
.nav__toggle.open span::before { transform: translate(-50%, 0) rotate(45deg); }
.nav__toggle.open span::after { transform: translate(-50%, 0) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(250,246,240,0.97) 0%, rgba(250,246,240,0.82) 38%, rgba(250,246,240,0.25) 70%, rgba(250,246,240,0.1) 100%);
}
html[dir="rtl"] .hero__bg::after {
  background:
    linear-gradient(255deg, rgba(250,246,240,0.97) 0%, rgba(250,246,240,0.82) 38%, rgba(250,246,240,0.25) 70%, rgba(250,246,240,0.1) 100%);
}
/* Animated soft gradient glow behind hero content for depth */
.hero__glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 760px;
  max-height: 760px;
  top: 15%;
  inset-inline-start: -10%;
  background: radial-gradient(circle, rgba(201,169,97,0.18), rgba(201,73,132,0.10) 45%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  animation: heroGlow 14s ease-in-out infinite alternate;
  pointer-events: none;
}
html[dir="rtl"] .hero__glow { inset-inline-start: auto; inset-inline-end: -10%; }
@keyframes heroGlow {
  0% { transform: translate(0,0) scale(1); opacity: 0.85; }
  50% { transform: translate(6%, 4%) scale(1.08); opacity: 1; }
  100% { transform: translate(-4%, -3%) scale(1.02); opacity: 0.9; }
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  width: 100%;
}
.hero__content { max-width: 620px; }
.hero__title {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  margin-bottom: 0.3em;
}
.hero__title .accent { color: var(--gold-700); font-style: italic; }
html[lang="fa"] .hero__title .accent { font-style: normal; }
.hero__subtitle {
  font-family: var(--ff-serif);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: var(--rose-700);
  font-weight: 500;
  margin-bottom: 24px;
}
html[lang="fa"] .hero__subtitle { font-weight: 600; }
.hero__desc { font-size: 1.08rem; color: var(--ink-soft); margin-bottom: 36px; max-width: 520px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hero__meta-item .num {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--rose-800);
  display: block;
  line-height: 1;
}
html[lang="fa"] .hero__meta-item .num { font-weight: 700; }
.hero__meta-item .lbl { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em; }

.hero__visual {
  position: relative;
}
.hero__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--t); }
.hero__photo:hover img { transform: scale(1.04); }
.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(107,31,51,0.32));
  pointer-events: none;
}
/* Subtle shimmering ring around hero photo */
.hero__photo::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  background: conic-gradient(from 0deg, transparent, var(--gold-500), transparent, var(--rose-500), transparent);
  opacity: 0.35;
  z-index: -1;
  animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero__badge {
  position: absolute;
  bottom: -22px;
  inset-inline-end: -18px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}
.hero__badge-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--rose-50);
  color: var(--rose-800);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero__badge-icon svg { width: 24px; height: 24px; }
.hero__badge-text strong { display: block; font-family: var(--ff-serif); color: var(--rose-900); font-size: 1.05rem; }
.hero__badge-text span { font-size: 0.78rem; color: var(--muted); }
.hero__deco {
  position: absolute;
  top: -30px;
  inset-inline-start: -30px;
  width: 120px; height: 120px;
  border: 1.5px solid var(--gold-500);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.5;
}

/* ---------- Stats bar ---------- */
.stats-bar {
  background: linear-gradient(135deg, var(--rose-900), var(--rose-800));
  color: var(--cream);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
/* Fine floral/linen texture overlay */
.stats-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  position: relative;
}
.stat {
  position: relative;
  padding: 6px 10px;
}
/* Elegant gold separator between stats */
.stat + .stat::before {
  content: "";
  position: absolute;
  inset-inline-start: -12px;
  top: 12%; bottom: 12%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-500), transparent);
  opacity: 0.5;
}
.stat .num {
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 600;
  color: var(--gold-500);
  display: block;
  line-height: 1;
  text-shadow: 0 2px 24px rgba(201,169,97,0.35);
}
html[lang="fa"] .stat .num { font-weight: 700; }
.stat .lbl { font-size: 0.88rem; letter-spacing: 0.06em; margin-top: 12px; opacity: 0.92; text-transform: uppercase; }
html[lang="fa"] .stat .lbl { text-transform: none; letter-spacing: 0; }

/* ---------- About preview / feature split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.split__media-frame {
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1.5px solid var(--gold-500);
  border-radius: var(--radius-lg);
  z-index: -1;
}
html[dir="rtl"] .split__media-frame { inset: 20px 20px -20px -20px; }
.split__content p { color: var(--ink-soft); }
.split__list { margin: 24px 0 32px; display: grid; gap: 14px; }
.split__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--ink);
}
.split__list .tick {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--rose-50);
  color: var(--rose-800);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.split__list .tick svg { width: 14px; height: 14px; }
.split__list strong { color: var(--rose-900); font-weight: 600; }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: all var(--t);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rose-700), var(--gold-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
html[dir="rtl"] .service-card::before { transform-origin: right; }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rose-100);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--rose-50), var(--cream-2));
  color: var(--rose-800);
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: all var(--t);
}
.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--rose-800), var(--rose-700));
  color: var(--white);
  transform: rotate(-6deg) scale(1.05);
}
.service-card__icon svg { width: 30px; height: 30px; }
.service-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.service-card p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 0; flex-grow: 1; }
.service-card__num {
  position: absolute;
  top: 22px;
  inset-inline-end: 26px;
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  color: var(--gold-300);
  font-weight: 600;
  line-height: 1;
  opacity: 0.7;
  transition: all var(--t);
}
.service-card:hover .service-card__num { color: var(--rose-500); opacity: 1; transform: scale(1.08); }
html[lang="fa"] .service-card__num { font-weight: 700; }

/* ---------- Values / Feature cards ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}
.value-card {
  text-align: center;
  padding: 40px 26px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  transition: all var(--t);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card__icon {
  width: 70px; height: 70px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--white);
  display: grid; place-items: center;
}
.value-card__icon svg { width: 32px; height: 32px; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value-card p { color: var(--ink-soft); font-size: 0.94rem; margin: 0; }

/* ---------- Detailed service list (services page) ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 28px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.service-detail:last-child { border-bottom: none; }
.service-detail__num {
  font-family: var(--ff-serif);
  font-size: 2.6rem;
  color: var(--gold-600);
  font-weight: 600;
  line-height: 1;
}
html[lang="fa"] .service-detail__num { font-weight: 700; }
.service-detail h3 { font-size: 1.6rem; margin-bottom: 12px; }
.service-detail p { color: var(--ink-soft); margin-bottom: 16px; }
.service-detail__tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--rose-50);
  color: var(--rose-800);
  font-weight: 500;
}

/* ---------- Quote / Testimonial ---------- */
.quote-block {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 20px;
}
.quote-block .mark {
  font-family: var(--ff-serif);
  font-size: 6rem;
  color: var(--gold-500);
  line-height: 0.6;
  opacity: 0.5;
  display: block;
  margin-bottom: 10px;
}
.quote-block blockquote {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--white);
  margin: 0 0 24px;
  line-height: 1.4;
  font-weight: 400;
}
html[lang="fa"] .quote-block blockquote { font-style: normal; font-weight: 600; }
.quote-block cite {
  display: block;
  font-style: normal;
  color: var(--gold-300);
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 3/4;
  cursor: zoom-in;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--t); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(107,31,51,0.45));
  opacity: 0;
  transition: opacity var(--t);
}
.gallery__item:hover::after { opacity: 1; }
/* Zoom icon badge on gallery hover */
.gallery__item .zoom-badge {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  color: var(--rose-800);
  display: grid; place-items: center;
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--t);
  z-index: 2;
}
.gallery__item:hover .zoom-badge { opacity: 1; transform: scale(1); }
.gallery__item .zoom-badge svg { width: 20px; height: 20px; }

/* ---------- Credentials / Timeline ---------- */
.timeline { position: relative; padding-inline-start: 30px; }
.timeline::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-500), var(--rose-100));
}
.timeline__item { position: relative; padding-bottom: 34px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: "";
  position: absolute;
  inset-inline-start: -39px;
  top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold-600);
  box-shadow: 0 0 0 4px var(--cream);
}
.timeline__year {
  font-family: var(--ff-serif);
  font-weight: 600;
  color: var(--gold-700);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 4px;
}
html[lang="fa"] .timeline__year { font-weight: 700; }
.timeline__item h4 { color: var(--rose-900); margin-bottom: 6px; font-size: 1.15rem; }
.timeline__item p { color: var(--ink-soft); margin: 0; font-size: 0.96rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}
.contact-info { display: grid; gap: 22px; }
.contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.contact-card__icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--rose-800), var(--rose-700));
  color: var(--white);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-card__icon svg { width: 24px; height: 24px; }
.contact-card h4 { margin: 0 0 6px; font-size: 1.1rem; color: var(--rose-900); }
.contact-card p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }
.contact-card a { color: var(--rose-800); font-weight: 500; transition: color var(--t-fast); }
.contact-card a:hover { color: var(--gold-700); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--rose-900);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
html[lang="fa"] .form-group label { font-weight: 600; }
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--ink);
  transition: all var(--t-fast);
}
.form-control:focus {
  outline: none;
  border-color: var(--rose-500);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--rose-50);
}
textarea.form-control { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 12px; text-align: center; }
.form-success {
  display: none;
  background: var(--rose-50);
  border: 1px solid var(--rose-100);
  color: var(--rose-800);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  font-size: 0.92rem;
  align-items: center;
  gap: 10px;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

.map-wrap {
  margin-top: 50px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  height: 420px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.2) sepia(0.08); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--rose-900), var(--rose-800));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 70px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band::before, .cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,97,0.25), transparent 70%);
}
.cta-band::before { width: 320px; height: 320px; top: -120px; inset-inline-start: -100px; }
.cta-band::after { width: 280px; height: 280px; bottom: -120px; inset-inline-end: -80px; }
.cta-band h2 { color: var(--white); position: relative; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.85); position: relative; max-width: 560px; margin: 0 auto 30px; }
.cta-band .btn-row { position: relative; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Social ---------- */
.social-row { display: flex; gap: 14px; }
.social {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--rose-800);
  display: grid; place-items: center;
  transition: all var(--t);
  border: 1px solid var(--line);
}
.social:hover { background: var(--rose-800); color: var(--white); transform: translateY(-4px); }
.social svg { width: 20px; height: 20px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  margin-top: auto;
}
.footer-main { padding: 70px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.footer-col p { font-size: 0.92rem; color: rgba(255,255,255,0.6); }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  transition: color var(--t-fast);
}
.footer-col ul a:hover { color: var(--gold-500); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand .brand__name { color: var(--white); }
.footer-brand .brand__role { color: var(--gold-500); }
.footer-contact-item {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 14px; font-size: 0.92rem;
}
.footer-contact-item svg { width: 18px; height: 18px; color: var(--gold-500); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: var(--gold-500); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 180px 0 80px;
  background: linear-gradient(150deg, var(--rose-900), var(--rose-800));
  color: var(--white);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/pattern.jpg");
  background-size: 300px;
  opacity: 0.06;
  mix-blend-mode: overlay;
}
.page-hero__inner { position: relative; text-align: center; max-width: 760px; margin: 0 auto; }
.page-hero h1 { color: var(--white); margin-bottom: 18px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.12rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex; justify-content: center; gap: 8px;
  font-size: 0.84rem; color: rgba(255,255,255,0.6);
  margin-bottom: 22px; letter-spacing: 0.06em;
}
.breadcrumb a { color: var(--gold-500); }
.breadcrumb span { opacity: 0.5; }

/* ---------- FAQ Accordion ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--t);
  border-inline-start: 3px solid transparent;
}
.faq-item:hover { border-color: var(--rose-100); box-shadow: var(--shadow-sm); }
.faq-item.open {
  background: var(--cream);
  border-color: var(--rose-200, var(--rose-100));
  border-inline-start: 3px solid var(--rose-800);
  box-shadow: var(--shadow-md);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  text-align: start;
  font-family: var(--ff-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 500;
  color: var(--rose-900);
  line-height: 1.4;
  transition: color var(--t-fast);
}
html[lang="fa"] .faq-question { font-weight: 600; }
.faq-question:hover { color: var(--rose-700); }
.faq-item.open .faq-question { color: var(--rose-800); }
.faq-question__icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--gold-500);
  background: var(--white);
  display: grid; place-items: center;
  position: relative;
  transition: all var(--t);
}
/* Custom arrow (chevron) that rotates when open */
.faq-question__icon svg {
  width: 16px; height: 16px;
  color: var(--rose-800);
  transition: transform var(--t);
}
/* RTL: mirror the chevron so it points naturally for right-to-left readers */
html[dir="rtl"] .faq-question__icon svg { transform: scaleX(-1); }
.faq-item.open .faq-question__icon {
  background: var(--rose-800);
  border-color: var(--rose-800);
}
.faq-item.open .faq-question__icon svg {
  color: var(--white);
  transform: rotate(180deg);
}
html[dir="rtl"] .faq-item.open .faq-question__icon svg { transform: scaleX(-1) rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t), padding var(--t);
  padding: 0 26px;
}
.faq-item.open .faq-answer { max-height: 460px; padding: 0 26px 24px; }
.faq-answer p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  position: relative;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 14px;
  inset-inline-end: 24px;
  font-family: var(--ff-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--rose-100);
  font-weight: 600;
}
html[lang="fa"] .testimonial-card::before { content: "\00AB"; }
.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--gold-600);
}
.testimonial-card__stars svg { width: 18px; height: 18px; }
.testimonial-card__text {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
html[lang="fa"] .testimonial-card__text { font-style: normal; font-weight: 500; }
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testimonial-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-700), var(--gold-600));
  color: var(--white);
  display: grid; place-items: center;
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
}
html[lang="fa"] .testimonial-card__avatar { font-weight: 700; }
.testimonial-card__name { font-weight: 600; color: var(--rose-900); display: block; font-size: 0.98rem; }
.testimonial-card__role { font-size: 0.82rem; color: var(--muted); }

/* ---------- Trust / Marquee strip ---------- */
.trust-strip {
  background: var(--cream-2);
  padding: 22px 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
}
.trust-track {
  display: flex;
  gap: 56px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  width: max-content;
}
.trust-strip:hover .trust-track { animation-play-state: paused; }
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rose-800);
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
html[lang="fa"] .trust-item { font-weight: 600; }
.trust-item svg { width: 22px; height: 22px; color: var(--gold-600); flex-shrink: 0; }
.trust-item .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-500); }
@keyframes marquee { to { transform: translateX(-50%); } }
html[dir="rtl"] .trust-track { animation-direction: reverse; }

/* ---------- Pill / highlight badges ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--rose-50), var(--cream-2));
  border: 1px solid var(--rose-100);
  color: var(--rose-800);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
html[lang="fa"] .pill { font-weight: 600; }
.pill svg { width: 15px; height: 15px; color: var(--gold-700); }

/* ---------- Section number watermark ---------- */
.section--numbered { position: relative; }
.section__watermark {
  position: absolute;
  top: 30px;
  inset-inline-end: 4%;
  font-family: var(--ff-serif);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 600;
  color: var(--cream-3);
  line-height: 1;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
html[lang="fa"] .section__watermark { font-weight: 700; }
.section--numbered .container { position: relative; z-index: 1; }

/* ---------- Section dividers (organic wave / curve) ---------- */
.divider-wave {
  position: relative;
  line-height: 0;
  pointer-events: none;
  margin-top: -1px;
}
.divider-wave svg { width: 100%; height: 50px; display: block; }
.divider-wave--flip svg { transform: scaleY(-1); }
.divider-wave path { fill: var(--cream); }
.divider-wave--cream2 path { fill: var(--cream-2); }
.divider-wave--rose path { fill: var(--rose-900); }
@media (max-width: 760px) { .divider-wave svg { height: 30px; } }

/* ---------- Gradient text utility ---------- */
.text-gradient {
  background: linear-gradient(120deg, var(--rose-800), var(--gold-600));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Sticky mobile appointment bar ---------- */
.appoint-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 95;
  display: none;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(107,31,51,0.12);
  padding: 10px 14px env(safe-area-inset-bottom, 10px);
  gap: 10px;
}
.appoint-bar__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 10px;
  border-radius: 100px;
  font-family: var(--ff-sans);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--t-fast);
}
html[lang="fa"] .appoint-bar__btn { font-weight: 700; }
.appoint-bar__btn svg { width: 17px; height: 17px; }
.appoint-bar__btn--call { background: var(--white); color: var(--rose-800); border: 1.5px solid var(--rose-800); }
.appoint-bar__btn--call:hover { background: var(--rose-50); }
.appoint-bar__btn--book { background: linear-gradient(135deg, var(--rose-800), var(--rose-700)); color: var(--white); }
.appoint-bar__btn--book:hover { transform: translateY(-1px); }
.appoint-bar__btn--wa { background: #25D366; color: var(--white); flex: 0 0 52px; padding: 13px 0; }
.appoint-bar__btn--wa:hover { background: #1fb357; }
@media (max-width: 760px) {
  .appoint-bar { display: flex; }
  /* lift floating buttons above the bar */
  .to-top, .float-wa { bottom: 78px !important; }
  body { padding-bottom: 72px; }
}

/* ---------- Dark theme ---------- */
html[data-theme="dark"] {
  --cream: #1a1416;
  --cream-2: #211a1d;
  --cream-3: #2a2125;
  --ink: #f0e9e3;
  --ink-soft: #c9bcb4;
  --muted: #998a83;
  --line: #3a2e33;
  --white: rgba(255,255,255,0.95);
  --rose-50: #2e1f25;
  --rose-100: #3a2730;
  --shadow-sm: 0 4px 14px rgba(0,0,0,0.4);
  --shadow-md: 0 14px 40px rgba(0,0,0,0.5);
  --shadow-lg: 0 30px 70px rgba(0,0,0,0.6);
}
html[data-theme="dark"] .hero__bg::after {
  background: linear-gradient(105deg, rgba(26,20,22,0.97) 0%, rgba(26,20,22,0.85) 38%, rgba(26,20,22,0.4) 70%, rgba(26,20,22,0.2) 100%);
}
html[dir="rtl"][data-theme="dark"] .hero__bg::after {
  background: linear-gradient(255deg, rgba(26,20,22,0.97) 0%, rgba(26,20,22,0.85) 38%, rgba(26,20,22,0.4) 70%, rgba(26,20,22,0.2) 100%);
}
html[data-theme="dark"] .site-header { background: rgba(26,20,22,0.85); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
html[data-theme="dark"] .site-header.scrolled { background: rgba(26,20,22,0.95); }
html[data-theme="dark"] .lang-toggle { background: rgba(255,255,255,0.06); border-color: var(--line); }
html[data-theme="dark"] .form-control { background: var(--cream-2); }
html[data-theme="dark"] .mobile-menu { background: var(--cream); }
html[data-theme="dark"] .divider-wave path { fill: var(--cream-2); }
html[data-theme="dark"] .btn--ghost { color: var(--gold-500); border-color: var(--gold-500); }
html[data-theme="dark"] .btn--ghost:hover { background: var(--gold-600); color: var(--ink); border-color: var(--gold-600); }
html[data-theme="dark"] .lang-toggle { color: var(--gold-500); }
html[data-theme="dark"] .lang-toggle:hover { background: var(--gold-600); color: var(--ink); border-color: var(--gold-600); }
html[data-theme="dark"] .nav__links a { color: var(--ink); }
html[data-theme="dark"] .brand__name { color: var(--ink); }
html[data-theme="dark"] .hero__badge { background: var(--cream-2); }
html[data-theme="dark"] .hero__badge-text strong { color: var(--ink); }

/* Theme toggle button */
.theme-toggle {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream-2);
  border: 1.5px solid var(--gold-500);
  color: var(--rose-800);
  display: grid; place-items: center;
  transition: all var(--t);
  flex-shrink: 0;
}
.theme-toggle:hover { background: var(--rose-800); color: var(--white); border-color: var(--rose-800); transform: rotate(15deg); }
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle .icon-moon { display: none; }
html[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: block; }
@media (max-width: 760px) { .nav__actions .theme-toggle { display: none; } .mobile-menu .theme-toggle { display: grid; margin-top: 20px; } }

/* ---------- Page transition fade-in ----------
   NOTE: opacity-only on body so we don't create a transform that
   would break position:fixed descendants (sticky bar, float buttons). */
@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.page-in { animation: pageIn 0.5s ease both; }

/* ---------- Custom scrollbar (desktop) ---------- */
@media (min-width: 900px) {
  ::-webkit-scrollbar { width: 12px; }
  ::-webkit-scrollbar-track { background: var(--cream-2); }
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--rose-500), var(--rose-700));
    border-radius: 100px;
    border: 3px solid var(--cream-2);
  }
  ::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--rose-600), var(--rose-800)); }
}

/* ---------- Focus-visible accessibility ---------- */
:focus-visible {
  outline: 2.5px solid var(--gold-600);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 4px; }

/* ---------- Image tilt hover on split media ---------- */
.split__media { overflow: visible; }
.split__media img { transition: transform 0.8s var(--t); }
.split__media:hover img { transform: scale(1.03); }

/* ---------- Service card icon arrow on hover ---------- */
.service-card .more-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--rose-700);
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--t);
}
html[dir="rtl"] .service-card .more-arrow { transform: translateX(8px); }
.service-card:hover .more-arrow { opacity: 1; transform: translateX(0); }
.service-card .more-arrow svg { width: 15px; height: 15px; transition: transform var(--t); }
.service-card:hover .more-arrow svg { transform: translateX(4px); }
html[dir="rtl"] .service-card:hover .more-arrow svg { transform: translateX(-4px) scaleX(-1); }

/* ---------- Decorative floating dots ---------- */
.deco-dots {
  position: absolute;
  width: 90px; height: 90px;
  background-image: radial-gradient(var(--gold-500) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* ---------- Lightbox (fullscreen image viewer) ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20,14,16,0.94);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t), visibility 0s var(--t);
}
.lightbox.open { opacity: 1; visibility: visible; transition: opacity var(--t), visibility 0s 0s; }
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
  transform: scale(0.92);
  transition: transform var(--t);
  object-fit: contain;
}
.lightbox.open .lightbox__img { transform: scale(1); }
.lightbox__close {
  position: absolute;
  top: 24px;
  inset-inline-end: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  display: grid; place-items: center;
  transition: all var(--t-fast);
}
.lightbox__close:hover { background: var(--rose-800); border-color: var(--rose-800); transform: rotate(90deg); }
.lightbox__close svg { width: 22px; height: 22px; }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
  display: grid; place-items: center;
  transition: all var(--t-fast);
}
.lightbox__nav:hover { background: var(--rose-800); border-color: var(--rose-800); }
.lightbox__nav svg { width: 24px; height: 24px; }
.lightbox__prev { inset-inline-start: 24px; }
.lightbox__next { inset-inline-end: 24px; }
.lightbox__counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  background: rgba(255,255,255,0.08);
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
}
@media (max-width: 600px) {
  .lightbox { padding: 20px; }
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__prev { inset-inline-start: 10px; }
  .lightbox__next { inset-inline-end: 10px; }
}

/* ---------- Scroll progress indicator ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--rose-700), var(--gold-500), var(--rose-500));
  z-index: 101;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(201,169,97,0.5);
}

/* ---------- Parallax hero ---------- */
.hero__bg img { will-change: transform; }
.hero.is-parallax .hero__bg img { transform: translate3d(0, var(--parallax, 0), 0) scale(1.08); }
@media (prefers-reduced-motion: reduce) { .hero.is-parallax .hero__bg img { transform: none; } }

/* ---------- Service card hover-reveal outcome stat ---------- */
.service-card__outcome {
  display: block;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold-700);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height var(--t), opacity var(--t), padding var(--t), margin var(--t);
  padding-top: 0;
  margin-top: 0;
  border-top-color: transparent;
}
html[lang="fa"] .service-card__outcome { font-style: normal; font-weight: 600; }
.service-card:hover .service-card__outcome {
  max-height: 60px;
  opacity: 1;
  padding-top: 14px;
  margin-top: 14px;
  border-top-color: var(--line);
}
.service-card__outcome svg { width: 14px; height: 14px; vertical-align: -2px; margin-inline-end: 4px; color: var(--rose-700); }

/* ---------- First-visit checklist ---------- */
.checklist {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.checklist::before {
  content: "";
  position: absolute;
  top: 0; inset-inline-start: 0;
  width: 5px; height: 100%;
  background: linear-gradient(180deg, var(--rose-700), var(--gold-600));
}
.checklist h3 { margin-bottom: 8px; }
.checklist > p { color: var(--ink-soft); margin-bottom: 24px; font-size: 0.98rem; }
.checklist__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}
.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink);
  transition: all var(--t-fast);
}
.checklist__item:hover { background: var(--rose-50); border-color: var(--rose-100); transform: translateX(3px); }
html[dir="rtl"] .checklist__item:hover { transform: translateX(-3px); }
.checklist__check {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--rose-700), var(--gold-600));
  color: var(--white);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.checklist__check svg { width: 13px; height: 13px; }
.checklist__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- Animated nav underline enhancement ---------- */
.nav__links a::after { transition: width var(--t), background var(--t); }
.nav__links a:hover::after { width: 100%; }

/* ---------- Decorative corner accents on sections ---------- */
.section--accent-corner { position: relative; }
.section--accent-corner::before, .section--accent-corner::after {
  content: "";
  position: absolute;
  width: 70px; height: 70px;
  border: 1.5px solid var(--gold-500);
  opacity: 0.25;
  pointer-events: none;
}
.section--accent-corner::before { top: 30px; inset-inline-start: 20px; border-right: none; border-bottom: none; border-top-left-radius: 18px; }
.section--accent-corner::after { bottom: 30px; inset-inline-end: 20px; border-left: none; border-top: none; border-bottom-right-radius: 18px; }

/* ---------- Magnetic glow on interactive cards ---------- */
.service-card, .value-card, .testimonial-card, .contact-card {
  position: relative;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(201,169,97,0.12), transparent 60%);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}
.service-card:hover::after { opacity: 1; }

/* ---------- Circular progress ring on back-to-top ---------- */
.to-top {
  overflow: visible;
}
.to-top__ring {
  position: absolute;
  inset: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  transform: rotate(-90deg);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t);
}
.to-top.show .to-top__ring { opacity: 1; }
.to-top__ring circle {
  fill: none;
  stroke: var(--gold-500);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  transition: stroke-dashoffset 0.15s linear;
  filter: drop-shadow(0 0 4px rgba(201,169,97,0.5));
}

/* ---------- Share button + toast ---------- */
.share-btn {
  position: fixed;
  bottom: 88px;
  inset-inline-end: 28px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--white);
  color: var(--rose-800);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--t);
  z-index: 90;
}
.share-btn.show { opacity: 1; visibility: visible; transform: translateY(0); }
.share-btn:hover { transform: translateY(-4px); background: var(--rose-800); color: var(--white); border-color: var(--rose-800); }
.share-btn svg { width: 21px; height: 21px; }

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--white);
  padding: 14px 26px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 210;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t);
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.toast svg { width: 18px; height: 18px; color: var(--gold-500); }
html[lang="fa"] .toast { font-weight: 600; }

/* ---------- Clinic tour gallery (home) ---------- */
.tour-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 18px;
}
.tour-grid .gallery__item { aspect-ratio: auto; height: 100%; }
.tour-grid .gallery__item:nth-child(1) { grid-row: 1 / 3; }
.tour-grid .gallery__item:nth-child(2) { grid-row: 1; }
.tour-grid .gallery__item:nth-child(3) { grid-row: 1; }
.tour-grid .gallery__item:nth-child(4) { grid-row: 2; }
.tour-grid .gallery__item:nth-child(5) { grid-row: 2; }
@media (max-width: 860px) {
  .tour-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .tour-grid .gallery__item { grid-row: auto !important; aspect-ratio: 4/3; }
  .tour-grid .gallery__item:nth-child(1) { grid-column: 1 / -1; aspect-ratio: 16/9; }
}
@media (max-width: 520px) {
  .tour-grid { grid-template-columns: 1fr; }
  .tour-grid .gallery__item:nth-child(1) { grid-column: auto; aspect-ratio: 4/3; }
}

/* ---------- Confetti celebration ---------- */
.confetti {
  position: fixed;
  top: -10px;
  width: 10px;
  height: 14px;
  z-index: 250;
  pointer-events: none;
  opacity: 0;
  animation: confettiFall 2.4s cubic-bezier(0.2, 0.6, 0.3, 1) forwards;
}
@keyframes confettiFall {
  0% { opacity: 1; transform: translateY(0) rotate(0deg); }
  100% { opacity: 0; transform: translateY(100vh) rotate(720deg); }
}

/* ---------- Symptom checker ---------- */
.symptom-checker {
  background: linear-gradient(135deg, var(--rose-900), var(--rose-800));
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.symptom-checker::before {
  content: "";
  position: absolute;
  top: -60px;
  inset-inline-end: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(201,169,97,0.2), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.symptom-checker__head { text-align: center; margin-bottom: 32px; position: relative; }
.symptom-checker__head .eyebrow { color: var(--gold-300); justify-content: center; }
.symptom-checker__head .eyebrow::before { background: var(--gold-300); }
.symptom-checker__head h2 { color: var(--white); }
.symptom-checker__head p { color: rgba(255,255,255,0.82); max-width: 540px; margin: 0 auto; }
.symptom-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
}
.symptom-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t);
  backdrop-filter: blur(6px);
}
html[lang="fa"] .symptom-chip { font-weight: 600; }
.symptom-chip svg { width: 17px; height: 17px; color: var(--gold-500); }
.symptom-chip:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--gold-500);
  transform: translateY(-3px);
}
.symptom-chip.active {
  background: var(--gold-600);
  border-color: var(--gold-600);
  color: var(--white);
}
.symptom-chip.active svg { color: var(--white); }
.symptom-result {
  text-align: center;
  padding: 24px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15);
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--t);
}
.symptom-result.show { opacity: 1; transform: translateY(0); }
.symptom-result__label { font-size: 0.82rem; color: var(--gold-300); letter-spacing: 0.08em; text-transform: uppercase; }
html[lang="fa"] .symptom-result__label { text-transform: none; letter-spacing: 0; }
.symptom-result__service { font-family: var(--ff-serif); font-size: clamp(1.2rem, 2.4vw, 1.5rem); color: var(--white); font-weight: 500; }
html[lang="fa"] .symptom-result__service { font-weight: 700; }
.symptom-result__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 100px;
  background: var(--gold-600);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 6px;
  transition: all var(--t);
}
.symptom-result__link:hover { background: var(--gold-500); transform: translateY(-2px); }
.symptom-result__link svg { width: 15px; height: 15px; }

/* ---------- Image fade-in on load ---------- */
img { opacity: 1; transition: opacity 0.6s ease; }
img[data-src], img.loading-hidden { opacity: 0; }
img.loaded { opacity: 1; }

/* ---------- Section number badge ---------- */
.section__num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-800), var(--gold-600));
  color: var(--white);
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(139,41,66,0.25);
}
html[lang="fa"] .section__num-badge { font-weight: 700; }

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 180;
  background: var(--ink);
  color: var(--cream);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.5s var(--t);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner__text { flex: 1; min-width: 260px; font-size: 0.9rem; line-height: 1.5; }
.cookie-banner__text strong { color: var(--gold-500); font-family: var(--ff-serif); }
html[lang="fa"] .cookie-banner__text strong { font-weight: 700; }
.cookie-banner__text a { color: var(--gold-500); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__btn {
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
}
html[lang="fa"] .cookie-banner__btn { font-weight: 700; }
.cookie-banner__btn--accept {
  background: linear-gradient(135deg, var(--rose-800), var(--rose-700));
  color: var(--white);
}
.cookie-banner__btn--accept:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(139,41,66,0.4); }
.cookie-banner__btn--decline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.cookie-banner__btn--decline:hover { background: rgba(255,255,255,0.1); border-color: var(--cream); }
.cookie-banner__close {
  position: absolute;
  top: 10px;
  inset-inline-end: 14px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--cream);
  display: none;
  place-items: center;
}
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-banner__actions { justify-content: center; }
}

/* ---------- Map loading skeleton ---------- */
.map-wrap { position: relative; background: var(--cream-2); }
.map-skeleton {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--rose-800);
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  background: linear-gradient(90deg, var(--cream-2) 0%, var(--cream-3) 50%, var(--cream-2) 100%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.8s ease-in-out infinite;
}
.map-skeleton svg { width: 28px; height: 28px; animation: mapPinBounce 1.2s ease-in-out infinite; }
.map-skeleton.hidden { display: none; }
@keyframes skeletonShimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
@keyframes mapPinBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ---------- Scrollspy (active nav on scroll) ---------- */
.nav__links a.active-scroll { color: var(--rose-800); }
.nav__links a.active-scroll::after { width: 100% !important; }

/* ---------- Refined blockquote (quote-block) ---------- */
.quote-block { position: relative; }
.quote-block blockquote {
  position: relative;
  padding: 20px 0;
}
.quote-block blockquote::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.quote-block blockquote::after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

/* ---------- Section decorative side ornament ---------- */
.section--ornament::before {
  content: "";
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  width: 3px;
  height: 80px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, transparent, var(--gold-500), transparent);
  opacity: 0.4;
}

/* ---------- Health tips / article cards ---------- */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
}
.tip-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: all var(--t);
  display: flex;
  flex-direction: column;
  position: relative;
}
.tip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--rose-100); }
.tip-card__media {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.tip-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--t); }
.tip-card:hover .tip-card__media img { transform: scale(1.06); }
.tip-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(107,31,51,0.3));
}
.tip-card__category {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  z-index: 2;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--rose-800);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(107,31,51,0.3);
}
html[lang="fa"] .tip-card__category { text-transform: none; letter-spacing: 0; font-weight: 700; }
.tip-card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex-grow: 1; }
.tip-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.tip-card__meta svg { width: 13px; height: 13px; }
.tip-card__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }
.tip-card h3 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.3; }
.tip-card p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 16px; flex-grow: 1; line-height: 1.65; }
.tip-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--rose-700);
  letter-spacing: 0.03em;
  transition: gap var(--t);
}
html[lang="fa"] .tip-card__link { font-weight: 700; }
.tip-card__link:hover { gap: 10px; color: var(--rose-800); }
.tip-card__link svg { width: 15px; height: 15px; }

/* ---------- Expandable service details ---------- */
.service-detail { cursor: pointer; }
.service-detail__expand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--rose-50);
  color: var(--rose-800);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--t-fast);
  border: 1px solid var(--rose-100);
}
html[lang="fa"] .service-detail__expand { font-weight: 700; }
.service-detail__expand svg { width: 15px; height: 15px; transition: transform var(--t); }
.service-detail.open .service-detail__expand { background: var(--rose-800); color: var(--white); border-color: var(--rose-800); }
.service-detail.open .service-detail__expand svg { transform: rotate(180deg); }
.service-detail__extra {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t), margin var(--t), opacity var(--t);
  opacity: 0;
  margin-top: 0;
}
.service-detail.open .service-detail__extra { max-height: 400px; margin-top: 18px; opacity: 1; }
.service-detail__extra ul { display: grid; gap: 8px; padding-inline-start: 20px; margin: 0; }
.service-detail__extra ul li { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.6; list-style: disc; }
.service-detail__extra ul li::marker { color: var(--gold-600); }

/* ---------- Keyboard hint UI ---------- */
.kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 5px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  color: var(--rose-800);
  font-family: 'SF Mono', 'Monaco', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  box-shadow: 0 1px 0 var(--line);
}
html[data-theme="dark"] .kbd { background: var(--cream-3); border-color: var(--line); color: var(--gold-500); }
.keyboard-hints {
  position: fixed;
  bottom: 90px;
  inset-inline-end: 28px;
  z-index: 95;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--t);
  min-width: 200px;
}
.keyboard-hints.show { opacity: 1; visibility: visible; transform: translateY(0); }
.keyboard-hints__title { font-family: var(--ff-serif); font-size: 0.95rem; color: var(--rose-900); margin-bottom: 12px; font-weight: 600; }
html[lang="fa"] .keyboard-hints__title { font-weight: 700; }
.keyboard-hints__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 6px 0; font-size: 0.82rem; color: var(--ink-soft); }
.keyboard-hints__row + .keyboard-hints__row { border-top: 1px solid var(--line); }

/* ---------- FAQ search/filter ---------- */
.faq-search {
  max-width: 560px;
  margin: 0 auto 32px;
  position: relative;
}
.faq-search__input {
  width: 100%;
  padding: 16px 22px 16px 52px;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  background: var(--white);
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-fast);
}
html[dir="rtl"] .faq-search__input { padding: 16px 52px 16px 22px; }
.faq-search__input:focus {
  outline: none;
  border-color: var(--rose-500);
  box-shadow: 0 0 0 4px var(--rose-50);
}
.faq-search__input::placeholder { color: var(--muted); }
.faq-search__icon {
  position: absolute;
  top: 50%;
  inset-inline-start: 20px;
  transform: translateY(-50%);
  color: var(--rose-700);
  pointer-events: none;
}
.faq-search__icon svg { width: 20px; height: 20px; }
.faq-search__clear {
  position: absolute;
  top: 50%;
  inset-inline-end: 14px;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--rose-800);
  display: none;
  place-items: center;
  cursor: pointer;
  transition: all var(--t-fast);
}
.faq-search__clear:hover { background: var(--rose-800); color: var(--white); }
.faq-search__clear.show { display: grid; }
.faq-search__clear svg { width: 14px; height: 14px; }
.faq-empty {
  text-align: center;
  padding: 30px;
  color: var(--muted);
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  display: none;
}
.faq-empty.show { display: block; }
.faq-item.hidden-by-search { display: none; }

/* ---------- Related services cross-links ---------- */
.related-section {
  background: linear-gradient(135deg, var(--cream-2), var(--cream));
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 52px);
  border: 1px solid var(--line);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.related-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--rose-900);
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.related-link::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--rose-700), var(--gold-600));
  transform: scaleY(0);
  transform-origin: center;
  transition: transform var(--t);
}
.related-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-100);
}
.related-link:hover::before { transform: scaleY(1); }
.related-link__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--rose-50), var(--cream-2));
  color: var(--rose-800);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: all var(--t);
}
.related-link:hover .related-link__icon {
  background: linear-gradient(135deg, var(--rose-800), var(--rose-700));
  color: var(--white);
  transform: rotate(-5deg);
}
.related-link__icon svg { width: 20px; height: 20px; }
.related-link__text { display: flex; flex-direction: column; gap: 2px; }
.related-link__title { font-weight: 600; font-size: 0.92rem; color: var(--rose-900); }
html[lang="fa"] .related-link__title { font-weight: 700; }
.related-link__sub { font-size: 0.76rem; color: var(--muted); }

/* ---------- Animated step indicator (section headers) ---------- */
.step-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px 16px 6px 8px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.step-indicator__num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-800), var(--gold-600));
  color: var(--white);
  display: grid; place-items: center;
  font-family: var(--ff-serif);
  font-size: 0.85rem;
  font-weight: 600;
}
html[lang="fa"] .step-indicator__num { font-weight: 700; }
.step-indicator__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rose-800);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
html[lang="fa"] .step-indicator__label { text-transform: none; letter-spacing: 0; font-weight: 700; }

/* ---------- Animated underline on headings ---------- */
.section-head h2 {
  position: relative;
  display: inline-block;
}
.section-head.text-center h2 { display: inline-block; }
.section-head h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  inset-inline-start: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-700), var(--gold-600));
  border-radius: 2px;
  transition: width 0.8s var(--t) 0.2s;
}
.section-head.text-center h2::after { inset-inline-start: 50%; transform: translateX(-50%); }
.section-head.visible h2::after { width: 60px; }

/* ---------- Category filter tabs ---------- */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 100px;
  background: var(--white);
  border: 1.5px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t);
}
html[lang="fa"] .filter-tab { font-weight: 600; }
.filter-tab:hover { border-color: var(--rose-500); color: var(--rose-800); transform: translateY(-2px); }
.filter-tab.active {
  background: linear-gradient(135deg, var(--rose-800), var(--rose-700));
  border-color: var(--rose-800);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(139,41,66,0.25);
}
.filter-tab__count {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 100px;
  background: rgba(255,255,255,0.2);
  font-size: 0.72rem;
  font-weight: 600;
}
.filter-tab:not(.active) .filter-tab__count { background: var(--cream-2); color: var(--muted); }
.tip-card.hidden-by-filter,
.service-card.hidden-by-filter { display: none; }
.filter-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  display: none;
}
.filter-empty.show { display: block; }

/* ---------- Before & After disclaimer ---------- */
.disclaimer {
  background: linear-gradient(135deg, var(--cream-2), var(--cream));
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.disclaimer::before {
  content: "";
  position: absolute;
  top: 0; inset-inline-start: 0;
  width: 5px; height: 100%;
  background: linear-gradient(180deg, var(--gold-600), var(--rose-700));
}
.disclaimer__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--white);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.disclaimer__icon svg { width: 28px; height: 28px; }
.disclaimer h3 { margin-bottom: 14px; font-size: 1.4rem; }
.disclaimer p { color: var(--ink-soft); margin-bottom: 12px; line-height: 1.7; }
.disclaimer ul { display: grid; gap: 10px; margin-top: 16px; }
.disclaimer ul li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.6;
}
.disclaimer ul li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-600);
  margin-top: 9px;
  flex-shrink: 0;
}
.disclaimer__note {
  margin-top: 20px;
  padding: 14px 18px;
  background: var(--rose-50);
  border-radius: var(--radius-sm);
  border-inline-start: 3px solid var(--rose-700);
  font-size: 0.88rem;
  color: var(--rose-800);
  font-style: italic;
}
html[lang="fa"] .disclaimer__note { font-style: normal; font-weight: 500; }

/* ---------- Appointment booking calendar UI ---------- */
.booking {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: "";
  position: absolute;
  top: 0; inset-inline-start: 0;
  width: 5px; height: 100%;
  background: linear-gradient(180deg, var(--rose-700), var(--gold-600));
}
.booking__head { margin-bottom: 28px; }
.booking__head h3 { margin-bottom: 8px; }
.booking__head p { color: var(--ink-soft); margin: 0; font-size: 0.96rem; }
.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 680px) { .booking__grid { grid-template-columns: 1fr; } }
.booking__field { display: flex; flex-direction: column; gap: 8px; }
.booking__field label { font-size: 0.84rem; font-weight: 600; color: var(--rose-900); }
html[lang="fa"] .booking__field label { font-weight: 700; }
.booking__field select, .booking__field input {
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: all var(--t-fast);
}
.booking__field select:focus, .booking__field input:focus {
  outline: none;
  border-color: var(--rose-500);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--rose-50);
}
.booking__time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}
.booking__slot {
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t-fast);
  text-align: center;
}
html[lang="fa"] .booking__slot { font-weight: 600; }
.booking__slot:hover { border-color: var(--rose-500); color: var(--rose-800); transform: translateY(-2px); }
.booking__slot.active {
  background: linear-gradient(135deg, var(--rose-800), var(--rose-700));
  border-color: var(--rose-800);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(139,41,66,0.3);
}
.booking__slot.disabled { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }
.booking__slot.disabled:hover { transform: none; border-color: var(--line); color: var(--muted); }
.booking__summary {
  padding: 16px 20px;
  background: var(--cream-2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  margin-bottom: 20px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}
.booking__summary svg { width: 20px; height: 20px; color: var(--rose-700); flex-shrink: 0; }
.booking__summary strong { color: var(--rose-900); font-weight: 600; }
html[lang="fa"] .booking__summary strong { font-weight: 700; }
.booking__note { font-size: 0.82rem; color: var(--muted); text-align: center; margin-top: 12px; }

/* ---------- Team section ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 26px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: all var(--t);
  text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--rose-100); }
.team-card__avatar {
  width: 96px; height: 96px;
  margin: 28px auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-700), var(--gold-600));
  color: var(--white);
  display: grid; place-items: center;
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(139,41,66,0.3);
  position: relative;
}
html[lang="fa"] .team-card__avatar { font-weight: 700; }
.team-card__avatar::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1.5px solid var(--gold-500);
  border-radius: 50%;
  opacity: 0.4;
}
.team-card__body { padding: 0 24px 28px; }
.team-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.team-card__role {
  display: block;
  font-size: 0.84rem;
  color: var(--gold-700);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
html[lang="fa"] .team-card__role { text-transform: none; letter-spacing: 0; font-weight: 700; }
.team-card p { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* ---------- Newsletter signup ---------- */
.newsletter {
  background: linear-gradient(135deg, var(--rose-900), var(--rose-800));
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.newsletter::before {
  content: "";
  position: absolute;
  top: -80px;
  inset-inline-end: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(201,169,97,0.2), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.newsletter::after {
  content: "";
  position: absolute;
  bottom: -60px;
  inset-inline-start: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(201,169,97,0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.newsletter__icon {
  width: 60px; height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--gold-500);
  display: grid; place-items: center;
  position: relative;
}
.newsletter__icon svg { width: 28px; height: 28px; }
.newsletter h3 { color: var(--white); margin-bottom: 12px; position: relative; }
.newsletter p { color: rgba(255,255,255,0.82); max-width: 480px; margin: 0 auto 28px; position: relative; font-size: 0.98rem; }
.newsletter__form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 520px) { .newsletter__form { flex-direction: column; } }
.newsletter__input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  backdrop-filter: blur(6px);
  transition: all var(--t-fast);
}
.newsletter__input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter__input:focus { outline: none; background: rgba(255,255,255,0.18); border-color: var(--gold-500); }
.newsletter__btn {
  padding: 14px 28px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-700));
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  border: none;
}
html[lang="fa"] .newsletter__btn { font-weight: 700; }
.newsletter__btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(201,169,97,0.4); }
.newsletter__success {
  margin-top: 16px;
  color: var(--gold-300);
  font-size: 0.92rem;
  font-weight: 500;
  display: none;
  position: relative;
}
html[lang="fa"] .newsletter__success { font-weight: 600; }
.newsletter__success.show { display: block; }
.newsletter__success svg { width: 18px; height: 18px; vertical-align: -4px; margin-inline-end: 6px; }

/* ---------- Print stylesheet (clean checklist printing) ---------- */
@media print {
  .site-header, .mobile-menu, .to-top, .float-wa, .share-btn, .appoint-bar,
  .scroll-progress, .nav__toggle, .section--rose, .cta-band,
  .site-footer, .hero, .stats-bar, .trust-strip, .map-wrap,
  .lightbox, .form-success, .cookie-banner, .confetti, [data-print] { display: none !important; }
  body { background: #fff !important; color: #000 !important; padding: 0 !important; }
  .section { padding: 20px 0 !important; }
  .checklist {
    box-shadow: none !important;
    border: 1px solid #999 !important;
    border-radius: 8px !important;
    padding: 24px !important;
    max-width: 100% !important;
  }
  .checklist::before { display: none !important; }
  .checklist__grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .checklist__item { background: #fff !important; border: 1px solid #ccc !important; break-inside: avoid; }
  .checklist__actions { display: none !important; }
  .section-head { margin-bottom: 20px !important; }
  h2, h3 { color: #000 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Reveal animation (progressive enhancement) ----------
   Content is visible by default. Only hidden when JS is available
   (the 'js' class is added by an inline head script), so that the
   site remains fully readable if JavaScript is disabled. */
.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--t), transform 0.8s var(--t);
}
.js .reveal.visible { opacity: 1; transform: translateY(0); }
.js .reveal[data-delay="1"] { transition-delay: 0.1s; }
.js .reveal[data-delay="2"] { transition-delay: 0.2s; }
.js .reveal[data-delay="3"] { transition-delay: 0.3s; }
.js .reveal[data-delay="4"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  bottom: 28px;
  inset-inline-end: 28px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-800), var(--rose-700));
  color: var(--white);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--t);
  z-index: 90;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-4px); }
.to-top svg { width: 22px; height: 22px; }

/* ---------- WhatsApp float ---------- */
.float-wa {
  position: fixed;
  bottom: 28px;
  inset-inline-start: 28px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: all var(--t);
  z-index: 90;
}
.float-wa:hover { transform: translateY(-4px) scale(1.05); }
.float-wa svg { width: 28px; height: 28px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 440px; margin: 0 auto; }
  .split, .split--reverse .split__media { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav__links, .nav__actions .lang-toggle { display: none; }
  .nav__toggle { display: block; }

  /* Mobile menu panel */
  .mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 99;
    padding: 100px 30px 40px;
    transform: translateX(100%);
    transition: transform var(--t), visibility 0s var(--t);
    overflow-y: auto;
    visibility: hidden;
  }
  html[dir="rtl"] .mobile-menu { transform: translateX(-100%); }
  .mobile-menu.open { transform: translateX(0); visibility: visible; transition: transform var(--t), visibility 0s 0s; }
  .mobile-menu a {
    display: block;
    font-family: var(--ff-serif);
    font-size: 1.6rem;
    color: var(--rose-900);
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu .lang-toggle { margin-top: 24px; display: inline-flex; }

  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero__meta { gap: 20px; }
  .hero__deco { top: -16px; inset-inline-start: -8px; width: 90px; height: 90px; }
  .split__media-frame { inset: 14px -10px -10px 14px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 12px; }
  .service-detail__num { font-size: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .to-top { bottom: 20px; inset-inline-end: 20px; width: 44px; height: 44px; }
  .float-wa { bottom: 20px; inset-inline-start: 20px; width: 48px; height: 48px; }
}

@media (max-width: 480px) {
  .hero__cta .btn { width: 100%; }
  .stats-grid { grid-template-columns: 1fr; }
  .container { padding-inline: 18px; }
}
