/* Chraibi Dental Clinic — Premium luxe dark/gold styles */
:root {
  --bg: #ffffff;
  --bg-2: #f8f6f1;
  --bg-3: #f1ede4;
  --surface: #ffffff;
  --surface-2: #faf8f3;
  --line: rgba(201,169,97,0.28);
  --line-2: rgba(15,23,42,0.08);
  --text: #0f172a;
  --text-2: #475569;
  --text-3: #94a3b8;
  --accent: #C9A961;
  --accent-2: #B8954A;
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1280px;
  --shadow: 0 20px 60px -20px rgba(15,23,42,0.12);
  --serif: 'Inter', 'Helvetica Neue', Helvetica, Arial, system-ui, sans-serif;
  --sans: 'Inter', 'Helvetica Neue', Helvetica, Arial, system-ui, -apple-system, sans-serif;
  --arabic: 'Tajawal', 'Inter', 'Helvetica Neue', Helvetica, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
[lang="ar"], html[dir="rtl"] body { font-family: var(--arabic); }

/* Phone numbers always LTR (standard international format) */
.phone-num,
a[href^="tel:"],
a[href^="https://wa.me"] {
  unicode-bidi: embed;
  direction: ltr;
}

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

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section--dark { background: var(--bg-2); }
.section--accent {
  background: linear-gradient(135deg, var(--accent) 0%, #b8954e 100%);
  color: #fff;
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
}

/* ─────────── Typography ─────────── */
.h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 12px 0 20px;
  text-wrap: balance;
}
[lang="ar"] .h2, html[dir="rtl"] .h2 { font-family: var(--arabic); font-weight: 700; }
.h2--light { color: #fff; }

.lead {
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.6;
  color: var(--text-2);
  max-width: 60ch;
  text-wrap: pretty;
}
.lead--light { color: rgba(255,255,255,0.92); }
.body { color: var(--text-2); margin: 16px 0; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.kicker__line { display: inline-block; width: 28px; height: 1px; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag {
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-2);
  background: rgba(201,169,97,0.05);
}

/* ─────────── Buttons ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--accent);
  color: #ffffff;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(201,169,97,0.5); }
.btn--ghost {
  background: rgba(15,23,42,0.04);
  color: var(--text);
  border-color: var(--line-2);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.12); }
.btn--full { width: 100%; justify-content: center; padding: 16px 24px; }

/* ─────────── Header / Nav ─────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-2);
  transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.header.is-scrolled { padding: 12px 0; background: rgba(255,255,255,0.98); box-shadow: 0 4px 24px -12px rgba(15,23,42,0.12); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav { display: flex; gap: 28px; align-items: center; }
.nav a {
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav a:hover { color: var(--accent); }

.header__right { display: flex; align-items: center; gap: 16px; }

.lang-switch {
  display: flex;
  gap: 2px;
  padding: 4px;
  background: rgba(15,23,42,0.04);
  border: 1px solid var(--line-2);
  border-radius: 999px;
}
.lang-switch button {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-3);
  border-radius: 999px;
  text-transform: uppercase;
  transition: all 0.2s;
}
.lang-switch button.is-active { background: var(--accent); color: #ffffff; }
.lang-switch button:hover:not(.is-active) { color: var(--text); }

.menu-btn { display: none; padding: 8px; }
.menu-btn span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; transition: 0.25s; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo__img { height: 44px; width: auto; display: block; filter: invert(1) brightness(0.15) contrast(1.4); }
.header.is-scrolled .logo__img { height: 38px; transition: height 0.25s; }
.footer .logo__img { height: 48px; filter: brightness(0) invert(1); }
@media (max-width: 540px) { .logo__img { height: 36px; } }

@media (max-width: 1024px) {
  .nav { display: none; position: fixed; top: 64px; left: 0; right: 0; flex-direction: column; gap: 0; padding: 24px; background: #ffffff; border-bottom: 1px solid var(--line-2); box-shadow: 0 12px 24px -16px rgba(15,23,42,0.18); }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line-2); width: 100%; }
  .menu-btn { display: block; }
  .header__cta { display: none; }
}

/* ─────────── Hero ─────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 96px;
  overflow: hidden;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease, transform 8s ease;
  transform: scale(1.05);
}
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(10,14,20,0.78) 0%, rgba(10,14,20,0.62) 50%, rgba(10,14,20,0.82) 100%),
    radial-gradient(circle at top right, rgba(201,169,97,0.15), transparent 50%);
}

.hero__inner { position: relative; z-index: 2; padding: 40px 24px 80px; width: 100%; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 18px;
  background: rgba(201,169,97,0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}
.hero__eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; }
.hero__since { color: var(--text-3); }

.hero__textframe { display: none; }
.hero__textframe.is-active { display: block; animation: fadeUp 0.8s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

.hero__title {
  font-family: var(--serif);
  font-size: clamp(38px, 6.5vw, 80px);
  line-height: 1.0;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  max-width: 18ch;
  text-wrap: balance;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45), 0 1px 4px rgba(0,0,0,0.5);
}
[lang="ar"] .hero__title { font-family: var(--arabic); font-weight: 700; }

.hero__sub {
  font-size: clamp(18px, 1.8vw, 22px);
  color: rgba(255,255,255,0.92);
  max-width: 50ch;
  margin: 0 0 40px;
  line-height: 1.5;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero__dots { display: flex; gap: 8px; }
.hero__dot {
  width: 32px; height: 3px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  transition: all 0.3s;
}
.hero__dot.is-active { background: var(--accent); width: 48px; }

/* ─────────── Stats ─────────── */
.stats { padding: 60px 0; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); background: var(--bg-2); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat { text-align: center; padding: 16px; }
.stat__n {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat__l { color: var(--text-2); font-size: 14px; margin-top: 8px; max-width: 22ch; margin-inline: auto; }
@media (max-width: 768px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ─────────── About ─────────── */
.about__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; }
.about__badge {
  position: absolute; bottom: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow);
}
html[dir="ltr"] .about__badge { right: -24px; }
html[dir="rtl"] .about__badge { left: -24px; }
.about__badge strong { font-family: var(--serif); font-size: 22px; color: var(--accent); }
.about__badge span { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); }

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__badge { right: 16px !important; left: auto !important; bottom: 16px; }
}

/* ─────────── Pillars ─────────── */
.pillars__head { text-align: center; margin-bottom: 56px; }
.pillars__head .h2 { max-width: 24ch; margin-inline: auto; }
.pillars__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pillar {
  padding: 32px 28px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
.pillar:hover { border-color: var(--line); transform: translateY(-4px); }
.pillar__icon {
  width: 56px; height: 56px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  background: rgba(201,169,97,0.06);
}
.pillar__t { font-family: var(--serif); font-size: 22px; font-weight: 500; margin: 0 0 10px; }
.pillar__d { color: var(--text-2); font-size: 14px; margin: 0; line-height: 1.6; }
@media (max-width: 900px) { .pillars__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pillars__grid { grid-template-columns: 1fr; } }

/* ─────────── Doctor ─────────── */
.doctor__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.doctor__media img { border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; }
.doctor__role { font-size: 14px; letter-spacing: 0.04em; margin: 0 0 24px; font-weight: 600; }
.creds { list-style: none; padding: 0; margin: 24px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.creds li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-2); }
@media (max-width: 900px) { .doctor__grid { grid-template-columns: 1fr; gap: 40px; } .creds { grid-template-columns: 1fr; } }

/* ─────────── Services ─────────── */
.services .services__head .h2--light { color: var(--text); }
.services .services__head .lead--light { color: var(--text-2); }
.services__head { text-align: center; margin-bottom: 56px; max-width: 720px; margin-inline: auto; }
.services__head .lead { margin-inline: auto; }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden; }
.svc {
  padding: 36px 28px;
  background: var(--bg-2);
  position: relative;
  transition: all 0.3s ease;
  min-height: 240px;
}
.svc:hover { background: var(--bg-3); }
.svc__icon { margin-bottom: 20px; }
.svc__t { font-family: var(--serif); font-size: 22px; font-weight: 500; margin: 0 0 10px; color: var(--text); }
.svc__d { font-size: 14px; color: var(--text-2); margin: 0; line-height: 1.6; }
.svc__num { position: absolute; top: 24px; font-family: var(--serif); font-size: 14px; color: var(--accent); opacity: 0.5; }
html[dir="ltr"] .svc__num { right: 24px; }
html[dir="rtl"] .svc__num { left: 24px; }
@media (max-width: 1100px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services__grid { grid-template-columns: 1fr; } }

/* ─────────── Smile gallery (Before/After) ─────────── */
.smile__head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.smile__head .lead { margin-inline: auto; }
.smile__main { max-width: 900px; margin: 0 auto; }
.ba {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16/10;
}
.ba__img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__after { position: absolute; inset: 0; }
.ba__after .ba__img { width: 100%; height: 100%; object-fit: cover; }
.ba__handle {
  position: absolute; top: 0; bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 3;
}
.ba__knob {
  position: absolute; top: 50%; left: 50%;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid;
  display: flex; align-items: center; justify-content: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  color: var(--bg);
}
.ba__label {
  position: absolute; top: 16px;
  padding: 6px 14px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  color: #fff;
  z-index: 2;
}
.ba__label--before { left: 16px; }
.ba__label--after { right: 16px; }
html[dir="rtl"] .ba__label--before { left: auto; right: 16px; }
html[dir="rtl"] .ba__label--after { right: auto; left: 16px; }

.smile__thumbs { display: flex; gap: 12px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.smile__thumb {
  width: 80px; height: 60px;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0.5;
  transition: all 0.25s;
  padding: 0;
}
.smile__thumb img { width: 100%; height: 100%; object-fit: cover; }
.smile__thumb.is-active { opacity: 1; }
.smile__thumb:hover { opacity: 1; }

/* ─────────── Clinic gallery ─────────── */
.cgallery__head { text-align: center; margin-bottom: 48px; }
.cgallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.cgallery__cell { overflow: hidden; border-radius: var(--radius-sm); position: relative; }
.cgallery__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.cgallery__cell:hover img { transform: scale(1.06); }
.cgallery__cell--0 { grid-column: span 2; grid-row: span 2; }
.cgallery__cell--3 { grid-row: span 2; }
@media (max-width: 900px) {
  .cgallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .cgallery__cell--0 { grid-column: span 2; }
  .cgallery__cell--3 { grid-row: auto; }
}

/* ─────────── Hygiene ─────────── */
.hygiene__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.hygiene__items { display: grid; gap: 20px; }
.hyg {
  display: flex; gap: 20px;
  padding: 24px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s;
}
.hyg:hover { border-color: var(--line); }
.hyg__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(201,169,97,0.08);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
}
.hyg__t { font-family: var(--serif); font-size: 20px; margin: 0 0 6px; font-weight: 500; }
.hyg__d { color: var(--text-2); font-size: 14px; margin: 0; line-height: 1.6; }
@media (max-width: 900px) { .hygiene__grid { grid-template-columns: 1fr; gap: 40px; } }

/* ─────────── Testimonials ─────────── */
.tm__head { text-align: center; margin-bottom: 56px; }
.tm__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tcard {
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  margin: 0;
  transition: all 0.3s;
}
.tcard:hover { border-color: var(--line); transform: translateY(-4px); }
.tcard__q { font-family: var(--serif); font-size: 18px; line-height: 1.5; margin: 16px 0 24px; color: var(--text); border: none; padding: 0; font-weight: 400; }
[lang="ar"] .tcard__q { font-family: var(--arabic); }
.tcard__c { display: flex; align-items: center; gap: 12px; margin: 0; padding-top: 20px; border-top: 1px solid var(--line-2); }
.tcard__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  color: #ffffff;
  font-size: 18px;
}
.tcard__name { font-weight: 600; font-size: 14px; }
.tcard__stars { color: var(--accent); font-size: 13px; letter-spacing: 0.08em; }
@media (max-width: 900px) { .tm__grid { grid-template-columns: 1fr; } }

/* ─────────── FAQ ─────────── */
.faq__wrap { max-width: 880px; margin: 0 auto; }
.faq__head { text-align: center; margin-bottom: 48px; }
.faq__list details {
  border-bottom: 1px solid var(--line-2);
  padding: 24px 0;
}
.faq__list details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  gap: 16px;
}
[lang="ar"] .faq__list details summary { font-family: var(--arabic); font-weight: 600; }
.faq__list details summary::-webkit-details-marker { display: none; }
.faq__list details p { color: var(--text-2); margin: 16px 0 0; line-height: 1.7; }
.faq__icon { font-size: 28px; font-weight: 300; transition: transform 0.25s; }

/* ─────────── Forms (callback + appointment) ─────────── */
.callback__grid, .appt__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.callback__form, .appt__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.appt__form { background: var(--bg-2); border-color: var(--line-2); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: span 2; }
.field span { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--text); opacity: 1; }
.field input, .field select, .field textarea {
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.appt__form .field input, .appt__form .field select, .appt__form .field textarea {
  background: #ffffff;
  border-color: rgba(0,0,0,0.15);
  color: var(--text);
}
.appt__form .field span { color: var(--text); }
.callback__form .field span { color: rgba(255,255,255,0.95); }
.field input::placeholder, .field textarea::placeholder { color: rgba(0,0,0,0.4); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 20%, transparent); }
.field textarea { resize: vertical; }
.success {
  grid-column: span 2;
  padding: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex; align-items: center; gap: 12px;
  font-weight: 600;
}
.success--light { background: rgba(201,169,97,0.08); border: 1px solid; }
@media (max-width: 900px) {
  .callback__grid, .appt__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .callback__form, .appt__form { grid-template-columns: 1fr; padding: 24px; }
  .field--full { grid-column: auto; }
  .success { grid-column: auto; }
}

.appt__channels { display: grid; gap: 12px; margin-top: 28px; }
.channel {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  transition: all 0.25s;
}
.channel:hover { border-color: var(--accent); transform: translateY(-2px); }
.channel svg { color: var(--accent); flex-shrink: 0; }
.channel__t { font-weight: 600; font-size: 14px; }
.channel__d { color: var(--text-2); font-size: 14px; margin-top: 2px; }

/* ─────────── Hours / Map ─────────── */
.hm__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.hm__row { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line-2); }
.hm__row:last-child { border-bottom: none; }
.hm__row--alert { border-top: 1px solid var(--line); padding-top: 24px; margin-top: 8px; }
.hm__icon { flex-shrink: 0; padding-top: 4px; }
.hm__l { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--text-3); margin-bottom: 6px; }
.hm__v { color: var(--text); font-size: 15px; line-height: 1.6; }
.hm__v a { color: var(--text); }
.hm__v a:hover { color: var(--accent); }
.hm__day { display: flex; justify-content: space-between; padding: 4px 0; gap: 24px; }
.hm__day--muted { color: var(--text-3); }
.hm__map { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 480px; border: 1px solid var(--line-2); }
.hm__map iframe { filter: invert(0.92) hue-rotate(180deg) saturate(0.4) contrast(0.85); }
.hm__maplink { position: absolute; bottom: 16px; left: 16px; padding: 10px 16px; background: var(--bg); border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 600; }
@media (max-width: 900px) { .hm__grid { grid-template-columns: 1fr; gap: 32px; } .hm__map { min-height: 360px; } }

/* ─────────── Footer ─────────── */
.footer { background: #060a10; padding: 80px 0 0; border-top: 1px solid var(--line-2); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 60px; }
.footer__brand p { color: var(--text-2); font-size: 14px; margin-top: 16px; max-width: 32ch; }
.footer h4 { font-family: var(--serif); font-size: 18px; font-weight: 500; margin: 0 0 20px; color: var(--accent); }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { color: var(--text-2); font-size: 14px; transition: color 0.2s; }
.footer ul a:hover { color: var(--accent); }
.footer__contact li { color: var(--text-2); font-size: 14px; line-height: 1.6; }
.footer__bar { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; color: #64748b; font-size: 13px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }

/* ─────────── WhatsApp FAB ─────────── */
.fab {
  position: fixed; bottom: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 90;
  transition: transform 0.25s;
  animation: pulse 2.5s infinite;
}
html[dir="ltr"] .fab { right: 24px; }
html[dir="rtl"] .fab { left: 24px; }
.fab:hover { transform: scale(1.08); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0); }
}

/* ─────────── Call FAB (left) ─────────── */
.fab--call {
  border: none;
  cursor: pointer;
  animation: none;
  background: #ffffff !important;
  color: var(--text);
  box-shadow: 0 8px 24px rgba(15,23,42,0.18) !important;
}
html[dir="ltr"] .fab--call { left: 24px; right: auto; }
html[dir="rtl"] .fab--call { right: 24px; left: auto; }
.fab--call.is-open {
  background: #ef4444 !important;
  color: #fff;
  box-shadow: 0 8px 24px rgba(239,68,68,0.45) !important;
}
.callcard {
  position: fixed;
  bottom: 96px;
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 26px 24px;
  box-shadow: 0 18px 50px -10px rgba(15,23,42,0.25), 0 4px 12px -4px rgba(15,23,42,0.08);
  z-index: 91;
  width: min(320px, calc(100vw - 48px));
  text-align: center;
  animation: callcard-in 0.22s cubic-bezier(.2,.9,.3,1.2);
}
html[dir="ltr"] .callcard { left: 24px; }
html[dir="rtl"] .callcard { right: 24px; }
@keyframes callcard-in {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.callcard__brand {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.callcard__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text-2);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.callcard__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #f1ede4;
  border-radius: 999px;
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  direction: ltr;
}
.callcard__btn:hover { background: #e8e2d3; transform: translateY(-1px); }

/* ─────────── RTL fixes ─────────── */
html[dir="rtl"] .hero__title,
html[dir="rtl"] .hero__sub { text-align: right; }
html[dir="rtl"] .ba__handle { transform: translateX(50%); }
html[dir="rtl"] .kicker__line { /* already inline-flex direction handled */ }

/* ─────────── Tweaks panel container fix ─────────── */
.tweaks-panel { z-index: 200 !important; }
