/* =============================================================================
   OVAL DENTAL CLINICS — Main Stylesheet
   Brand: Gold #A57C5B / White #FFFFFF / Black #0D0D0D
   Fonts: Thmanyah Serif (AR) | Cormorant Garamond + Inter (EN)
   ============================================================================= */

/* ─── Font Faces ─────────────────────────────────────────────────────────── */
/* Thmanyah Serif Display — Arabic headings */
@font-face {
  font-family: 'ThmanyahDisplay';
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/thmanyahserifdisplay-Light.otf') format('opentype');
}

@font-face {
  font-family: 'ThmanyahDisplay';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/thmanyahserifdisplay-Regular.otf') format('opentype');
}

@font-face {
  font-family: 'ThmanyahDisplay';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/thmanyahserifdisplay-Medium.otf') format('opentype');
}

@font-face {
  font-family: 'ThmanyahDisplay';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/thmanyahserifdisplay-Bold.otf') format('opentype');
}

@font-face {
  font-family: 'ThmanyahDisplay';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/thmanyahserifdisplay-Bold.otf') format('opentype');
}

@font-face {
  font-family: 'ThmanyahDisplay';
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/thmanyahserifdisplay-Black.otf') format('opentype');
}

/* Thmanyah Serif Text — Arabic body */
@font-face {
  font-family: 'ThmanyahText';
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/thmanyahseriftext-Light.otf') format('opentype');
}

@font-face {
  font-family: 'ThmanyahText';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/thmanyahseriftext-Regular.otf') format('opentype');
}

@font-face {
  font-family: 'ThmanyahText';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/thmanyahseriftext-Medium.otf') format('opentype');
}

@font-face {
  font-family: 'ThmanyahText';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/thmanyahseriftext-Bold.otf') format('opentype');
}

@font-face {
  font-family: 'ThmanyahText';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/thmanyahseriftext-Bold.otf') format('opentype');
}

@font-face {
  font-family: 'ThmanyahText';
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/thmanyahseriftext-Black.otf') format('opentype');
}

/* ─── Design Tokens ─────────────────────────────────────────────────────── */
:root {
  /* Colors */
  --gold: #A57C5B;
  --gold-light: #C4986E;
  --gold-dark: #8B6548;
  --gold-subtle: rgba(165, 124, 91, 0.12);
  --white: #FFFFFF;
  --off: #F9F8F7;
  --light: #EDEBE8;
  --mid-gray: #888888;
  --dark-gray: #333333;
  --black: #0D0D0D;
  --ink: #0D0D0D;

  /* Typography */
  --font-ar-display: 'ThmanyahDisplay', 'Cairo', 'Segoe UI', sans-serif;
  --font-ar-text: 'ThmanyahText', 'Cairo', 'Segoe UI', sans-serif;
  --font-en-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-en-text: 'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Easing */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Z-index scale */
  --z-nav: 550;
  --z-modal: 900;
  --z-float: 800;
}

/* ─── Keyframes ─────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes riseUp {
  from {
    transform: translateY(28px);
  }

  to {
    transform: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mq-scroll {
  to {
    transform: translateX(-50%);
  }
}

@keyframes mq-scroll-rtl {
  to {
    transform: translateX(50%);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

@keyframes shimmer {
  0% {
    left: -75%;
  }

  100% {
    left: 140%;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ─── Base ───────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

/* Arabic page defaults */
html[lang="ar"] body {
  font-family: var(--font-ar-text);
  font-weight: 400;
  direction: rtl;
}

/* English page defaults */
html[lang="en"] body {
  font-family: var(--font-en-text);
  font-weight: 400;
  direction: ltr;
}

/* Global Heading Maps */
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] h5,
html[lang="ar"] h6 {
  font-family: var(--font-ar-display);
}

html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3,
html[lang="en"] h4,
html[lang="en"] h5,
html[lang="en"] h6 {
  font-family: var(--font-en-display);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

/* ─── Reveal Animations (Intersection Observer) ──────────────────────────── */
.rv,
.rv-left,
.rv-right,
.rv-scale {
  opacity: 0;
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.rv {
  transform: translateY(24px);
}

.rv-left {
  transform: translateX(-24px);
}

.rv-right {
  transform: translateX(24px);
}

.rv-scale {
  transform: scale(0.95);
}

.rv.in,
.rv-left.in,
.rv-right.in,
.rv-scale.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {

  .rv,
  .rv-left,
  .rv-right,
  .rv-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ─── Layout Utilities ───────────────────────────────────────────────────── */
.wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.wrap-wide {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.sec {
  padding: 7rem 0;
}

/* ─── Navigation ─────────────────────────────────────────────────────────── */
.oval-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(13, 13, 13, 0.07);
  transition: background 0.3s, box-shadow 0.3s;
}

.oval-nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 24px rgba(13, 13, 13, 0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 90px;
  width: auto;
}

.nav-logo-text {
  display: none;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.nav-center a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-gray);
  font-weight: 400;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}

html[lang="ar"] .nav-center a {
  font-family: var(--font-ar-text);
  letter-spacing: 0.04em;
}

html[lang="en"] .nav-center a {
  font-family: var(--font-en-text);
}

.nav-center a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

html[dir="rtl"] .nav-center a::after {
  transform-origin: left;
}

.nav-center a:hover {
  color: var(--black);
}

.nav-center a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

html[dir="rtl"] .nav-center a:hover::after {
  transform-origin: right;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Book CTA button */
.nav-book {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white) !important;
  background: var(--gold);
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, transform 0.15s;
}

.nav-book::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s var(--ease-out);
}

.nav-book:hover {
  background: var(--gold-dark);
  transform: scale(1.02);
}

.nav-book:hover::after {
  left: 140%;
}

html[lang="ar"] .nav-book {
  font-family: var(--font-ar-text);
  letter-spacing: 0.04em;
}

html[lang="en"] .nav-book {
  font-family: var(--font-en-text);
}

/* Contact icons */
.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--dark-gray);
  border: 1px solid rgba(13, 13, 13, 0.12);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.nav-icon:hover {
  color: var(--black);
  border-color: var(--black);
  background: var(--off);
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(13, 13, 13, 0.05);
  border-radius: 999px;
  padding: 3px;
}

.lang-btn {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--mid-gray);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-en-text);
}

.lang-btn.active {
  background: var(--gold);
  color: var(--white);
}

.lang-btn:hover:not(.active) {
  color: var(--black);
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-nav) - 1);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-top: 110px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
}

html[lang="ar"] .mobile-menu a {
  font-family: var(--font-ar-display);
}

html[lang="en"] .mobile-menu a {
  font-family: var(--font-en-display);
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-menu .nav-book {
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* ─── Hero Section ────────────────────────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2rem 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.55) saturate(0.9);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(13, 13, 13, 0.35) 0%,
      rgba(13, 13, 13, 0.2) 40%,
      rgba(13, 13, 13, 0.65) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.1s var(--ease-out) both;
}

html[lang="ar"] .hero-eyebrow {
  font-family: var(--font-ar-text);
  letter-spacing: 0.1em;
}

html[lang="en"] .hero-eyebrow {
  font-family: var(--font-en-text);
}

.hero-h1 {
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

html[lang="ar"] .hero-h1 {
  font-family: var(--font-ar-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
}

html[lang="en"] .hero-h1 {
  font-family: var(--font-en-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
}

.hero-h1 .line {
  display: block;
  overflow: hidden;
  padding: 0.06em 0;
}

.hero-h1 .line span {
  display: block;
  animation: riseUp 0.9s var(--ease-out) both;
}

.hero-h1 .line:nth-child(1) span {
  animation-delay: 0.15s;
}

.hero-h1 .line:nth-child(2) span {
  animation-delay: 0.28s;
}

.hero-h1 .line:nth-child(3) span {
  animation-delay: 0.41s;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
  max-width: 560px;
  margin: 0 auto 2.2rem;
  animation: fadeUp 0.9s 0.5s var(--ease-out) both;
}

html[lang="ar"] .hero-sub {
  font-family: var(--font-ar-text);
}

html[lang="en"] .hero-sub {
  font-family: var(--font-en-text);
}

.hero-ctas {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.85s 0.65s var(--ease-out) both;
  margin-bottom: 1.8rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.8rem;
  animation: fadeUp 0.85s 0.8s var(--ease-out) both;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}

html[lang="ar"] .trust-badge {
  font-family: var(--font-ar-text);
}

html[lang="en"] .trust-badge {
  font-family: var(--font-en-text);
}

.trust-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

/* ─── CTA Buttons ────────────────────────────────────────────────────────── */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, color 0.2s, box-shadow 0.2s;
  min-height: 52px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

html[lang="ar"] .btn-pill {
  font-family: var(--font-ar-text);
  letter-spacing: 0.02em;
}

html[lang="en"] .btn-pill {
  font-family: var(--font-en-text);
}

.btn-pill svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.btn-pill:active {
  transform: scale(0.98) !important;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 28px -6px rgba(165, 124, 91, 0.5);
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -8px rgba(165, 124, 91, 0.6);
}

.btn-white {
  background: rgba(255, 255, 255, 0.9);
  color: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.btn-white:hover {
  background: #fff;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 1.5px solid rgba(13, 13, 13, 0.2);
}

.btn-outline-dark:hover {
  background: var(--off);
  border-color: var(--black);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(13, 13, 13, 0.3);
}

.btn-dark:hover {
  background: var(--dark-gray);
  transform: translateY(-2px);
}

/* ─── Ticker / Marquee ───────────────────────────────────────────────────── */
.mq-bar {
  background: var(--black);
  overflow: hidden;
  padding: 1rem 0;
  width: 100%;
}

.mq-track {
  display: flex;
  width: max-content;
  direction: ltr;
  animation: mq-scroll 20s linear infinite;
  will-change: transform;
}

.mq-bar:hover .mq-track {
  animation-play-state: paused;
}

.mq-item {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  font-family: var(--font-en-text);
  padding: 0 2.4rem;
}

.mq-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
  margin-inline-start: 2.4rem;
}


/* ─── Section Typography Helpers ─────────────────────────────────────────── */
.sec-tag {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
}

html[lang="ar"] .sec-tag {
  font-family: var(--font-ar-text);
  letter-spacing: 0.12em;
}

html[lang="en"] .sec-tag {
  font-family: var(--font-en-text);
}

.sec-h {
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--black);
}

html[lang="ar"] .sec-h {
  font-family: var(--font-ar-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}

html[lang="en"] .sec-h {
  font-family: var(--font-en-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
}

.sec-h.light {
  color: var(--white);
}

.sec-body {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--mid-gray);
  font-weight: 400;
  max-width: 62ch;
}

html[lang="ar"] .sec-body {
  font-family: var(--font-ar-text);
}

html[lang="en"] .sec-body {
  font-family: var(--font-en-text);
}

/* ─── About Section ──────────────────────────────────────────────────────── */
.about {
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text {}

.about-text .sec-tag {
  margin-bottom: 1.2rem;
}

.about-text .sec-h {
  margin-bottom: 1.4rem;
}

.about-text .sec-body+.sec-body {
  margin-top: 1rem;
}

.about-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.about-badge {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: var(--off);
  border: 1px solid var(--light);
  border-radius: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: default;
}

.about-badge:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(165, 124, 91, 0.08);
}

.about-badge-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-subtle);
  border-radius: 10px;
  color: var(--gold);
}

.about-badge-icon svg {
  width: 20px;
  height: 20px;
}

.about-badge-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.2rem;
}

html[lang="ar"] .about-badge-text strong {
  font-family: var(--font-ar-display);
}

html[lang="en"] .about-badge-text strong {
  font-family: var(--font-en-text);
}

.about-badge-text span {
  font-size: 0.78rem;
  color: var(--mid-gray);
  line-height: 1.5;
}

html[lang="ar"] .about-badge-text span {
  font-family: var(--font-ar-text);
}

html[lang="en"] .about-badge-text span {
  font-family: var(--font-en-text);
}

/* ─── Services Preview (Homepage — Quick Grid) ────────────────────────────── */
.services-preview {
  background: linear-gradient(180deg, #F9F8F7 0%, #EDEBE8 100%);
  position: relative;
  overflow: hidden;
}

.services-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0, rgba(255, 255, 255, 0.6) 0%, transparent 55%);
  pointer-events: none;
}

.srv-header {
  text-align: center;
  margin-bottom: 4rem;
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.srv-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  cursor: default;
}

.srv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(13, 13, 13, 0.1);
}

.srv-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--ease-out);
  z-index: 3;
}

.srv-card:hover::after {
  width: 100%;
}

.srv-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--light);
}

.srv-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.srv-card:hover .srv-img-wrap img {
  transform: scale(1.07);
}

.srv-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 13, 13, 0.22) 100%);
  transition: background 0.4s;
}

.srv-card:hover .srv-img-overlay {
  background: linear-gradient(180deg, transparent 30%, rgba(13, 13, 13, 0.38) 100%);
}

/* Fallback gradient blocks for services without photos */
.srv-img-fallback {
  aspect-ratio: 4/3;
  background: var(--black);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.srv-img-fallback::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 35%, rgba(165, 124, 91, 0.18), transparent 60%);
}

.srv-img-fallback svg {
  width: 52px;
  height: 52px;
  color: rgba(165, 124, 91, 0.35);
  position: relative;
  z-index: 1;
}

.srv-body {
  padding: 1.4rem 1.5rem 1.6rem;
}

.srv-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

html[lang="ar"] .srv-name {
  font-family: var(--font-ar-display);
}

html[lang="en"] .srv-name {
  font-family: var(--font-en-text);
}

.srv-name-sub {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-en-text);
  margin-bottom: 0.65rem;
}

.srv-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--mid-gray);
}

html[lang="ar"] .srv-desc {
  font-family: var(--font-ar-text);
}

html[lang="en"] .srv-desc {
  font-family: var(--font-en-text);
}

.srv-view-all {
  text-align: center;
  margin-top: 3rem;
}

/* ─── Before/After Results Section ───────────────────────────────────────── */
.results {
  background: var(--black);
  overflow: hidden;
}

.results-header {
  text-align: center;
  margin-bottom: 4rem;
}

.results-header .sec-tag {
  color: var(--gold-light);
}

.results-header .sec-h {
  color: var(--white);
}

.results-header .sec-body {
  color: rgba(255, 255, 255, 0.45);
  margin: 1.2rem auto 0;
  text-align: center;
}

.results-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.result-card {
  width: calc(33.333% - 1rem);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform 0.4s var(--ease), border-color 0.3s;
  cursor: default;
}

.result-card:hover {
  transform: translateY(-6px);
  border-color: rgba(165, 124, 91, 0.4);
}

.result-card img {
  width: 100%;
  height: auto;
  display: block;
}

.result-card-service {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(165, 124, 91, 0.85);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-family: var(--font-en-text);
  font-weight: 600;
}

html[dir="rtl"] .result-card-service {
  right: auto;
  left: 1rem;
}

/* ─── Philosophy Section ─────────────────────────────────────────────────── */
.phil {
  background: var(--black);
  padding: 8rem 0;
  position: relative;
}

.phil::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(165, 124, 91, 0.3), transparent);
}

.phil-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.phil-left .sec-body {
  color: rgba(255, 255, 255, 0.4);
  text-align: start;
  margin-top: 1.4rem;
}

.phil-items {
  display: flex;
  flex-direction: column;
}

.phil-item {
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
  position: relative;
  transition: padding-inline-start 0.3s var(--ease-out);
  cursor: default;
}

.phil-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.phil-item::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 1.2rem;
  bottom: 1.2rem;
  width: 1.5px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease-out);
}

.phil-item:hover {
  padding-inline-start: 1.2rem;
}

.phil-item:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.phil-num {
  font-size: 3rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.12);
  min-width: 2.8rem;
  line-height: 1;
  flex-shrink: 0;
}

html[lang="ar"] .phil-num {
  font-family: var(--font-ar-display);
}

html[lang="en"] .phil-num {
  font-family: var(--font-en-display);
}

.phil-item:hover .phil-num {
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.3s;
}

.phil-text h3 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
}

html[lang="ar"] .phil-text h3 {
  font-family: var(--font-ar-text);
  letter-spacing: 0.05em;
}

html[lang="en"] .phil-text h3 {
  font-family: var(--font-en-text);
}

.phil-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

html[lang="ar"] .phil-text p {
  font-family: var(--font-ar-text);
}

html[lang="en"] .phil-text p {
  font-family: var(--font-en-text);
}

/* ─── Process Section ────────────────────────────────────────────────────── */
.process {
  background: var(--white);
  text-align: center;
}

.process-header {
  margin-bottom: 5rem;
}

.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto;
}

.proc-step {
  background: var(--off);
  border: 1px solid var(--light);
  border-radius: 24px;
  padding: 2.5rem 1.6rem;
  text-align: center;
  cursor: default;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.25s;
}

.proc-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}

html[dir="rtl"] .proc-step::before {
  transform-origin: right;
}

.proc-step:hover {
  background: var(--white);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(13, 13, 13, 0.09);
}

.proc-step:hover::before {
  transform: scaleX(1);
}

.proc-num {
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--light);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

html[lang="ar"] .proc-num {
  font-family: var(--font-ar-display);
}

html[lang="en"] .proc-num {
  font-family: var(--font-en-display);
}

.proc-step:hover .proc-num {
  color: var(--gold-subtle);
}

.proc-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--light);
  margin: 0 auto 1.5rem;
  transition: background 0.25s, border-color 0.25s;
}

.proc-step:hover .proc-dot {
  background: var(--gold);
  border-color: var(--gold);
}

.proc-title {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.8rem;
}

html[lang="ar"] .proc-title {
  font-family: var(--font-ar-text);
  letter-spacing: 0.04em;
}

html[lang="en"] .proc-title {
  font-family: var(--font-en-text);
}

.proc-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--mid-gray);
}

html[lang="ar"] .proc-desc {
  font-family: var(--font-ar-text);
}

html[lang="en"] .proc-desc {
  font-family: var(--font-en-text);
}

/* ─── Pricing Section ────────────────────────────────────────────────────── */
.pricing {
  background: var(--off);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0, rgba(165, 124, 91, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  border: 1.5px solid var(--light);
  border-radius: 20px;
  padding: 2.2rem 1.8rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  cursor: default;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(13, 13, 13, 0.08);
}

.price-card.featured {
  border-color: var(--gold);
  background: var(--black);
}

.price-card.featured:hover {
  border-color: var(--gold-light);
}

.price-card.featured .price-title,
.price-card.featured .price-amount,
.price-card.featured .price-desc {
  color: rgba(255, 255, 255, 0.85);
}

.price-card.featured .price-icon {
  color: var(--gold-light);
  background: rgba(165, 124, 91, 0.12);
}

.price-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-subtle);
  border-radius: 14px;
  color: var(--gold);
  margin: 0 auto 1.4rem;
}

.price-icon svg {
  width: 26px;
  height: 26px;
}

.price-title {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
}

html[lang="ar"] .price-title {
  font-family: var(--font-ar-text);
  letter-spacing: 0.05em;
}

html[lang="en"] .price-title {
  font-family: var(--font-en-text);
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

html[lang="ar"] .price-amount {
  font-family: var(--font-ar-display);
}

html[lang="en"] .price-amount {
  font-family: var(--font-en-display);
}

.price-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--mid-gray);
}

html[lang="ar"] .price-desc {
  font-family: var(--font-ar-text);
}

html[lang="en"] .price-desc {
  font-family: var(--font-en-text);
}

.price-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 0.3rem 0.9rem;
  border-radius: 0 0 999px 999px;
  font-family: var(--font-en-text);
  font-weight: 700;
  white-space: nowrap;
}

/* ─── Testimonials ───────────────────────────────────────────────────────── */
.testi {
  background: var(--white);
  overflow: hidden;
}

.testi-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.testi-scroll {
  overflow-x: hidden;
  padding: 1rem 0 2rem;
}

.testi-scroll::-webkit-scrollbar {
  display: none;
}

.testi-track {
  display: flex;
  gap: 1.4rem;
  padding: 0 2.5rem;
  width: max-content;
}

.tc {
  flex: 0 0 min(100%, 360px);
  background: var(--off);
  border: 1px solid var(--light);
  border-radius: 20px;
  padding: 2rem 1.8rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: default;
}

.tc:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(13, 13, 13, 0.07);
}

.tc-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.tc-avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  font-family: var(--font-ar-display);
}

.tc-info {
  flex: 1 1 auto;
  min-width: 0;
}

.tc-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

html[lang="ar"] .tc-name {
  font-family: var(--font-ar-display);
}

html[lang="en"] .tc-name {
  font-family: var(--font-en-text);
}

.tc-meta {
  display: block;
  font-size: 0.72rem;
  color: var(--mid-gray);
  margin-top: 0.1rem;
}

html[lang="ar"] .tc-meta {
  font-family: var(--font-ar-text);
}

html[lang="en"] .tc-meta {
  font-family: var(--font-en-text);
}

.tc-stars {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: #f59e0b;
  margin-bottom: 0.8rem;
}

.tc-text {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--dark-gray);
}

html[lang="ar"] .tc-text {
  font-family: var(--font-ar-text);
  direction: rtl;
}

html[lang="en"] .tc-text {
  font-family: var(--font-en-text);
  direction: ltr;
}

/* ─── FAQ Section ────────────────────────────────────────────────────────── */
.faq {
  background: var(--off);
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--light);
  border: 1px solid var(--light);
  border-radius: 16px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: none;
  padding: 0;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--black);
  background: none;
  border: none;
  text-align: start;
  cursor: pointer;
  transition: color 0.2s;
}

html[lang="ar"] .faq-q {
  font-family: var(--font-ar-text);
}

html[lang="en"] .faq-q {
  font-family: var(--font-en-text);
}

.faq-q:hover {
  color: var(--gold);
}

.faq-q svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--gold);
  transition: transform 0.3s var(--ease-out);
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-a-inner {
  padding: 0 1.6rem 1.4rem;
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--mid-gray);
}

html[lang="ar"] .faq-a-inner {
  font-family: var(--font-ar-text);
}

html[lang="en"] .faq-a-inner {
  font-family: var(--font-en-text);
}

.faq-item.open .faq-a {
  max-height: 400px;
}

/* ─── Booking Section ────────────────────────────────────────────────────── */
.booking {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.booking-left .sec-body {
  margin-top: 1rem;
}

.booking-infos {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
}

.bki {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--light);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.bki:first-child {
  border-top: 1px solid var(--light);
}

.bki-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-subtle);
  border-radius: 8px;
  color: var(--gold);
  margin-top: 2px;
}

.bki-icon svg {
  width: 16px;
  height: 16px;
}

.bki strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.3rem;
}

html[lang="ar"] .bki strong {
  font-family: var(--font-ar-text);
  letter-spacing: 0.05em;
}

html[lang="en"] .bki strong {
  font-family: var(--font-en-text);
}

.bki span {
  font-size: 0.88rem;
  color: var(--mid-gray);
  line-height: 1.6;
}

html[lang="ar"] .bki span {
  font-family: var(--font-ar-text);
}

html[lang="en"] .bki span {
  font-family: var(--font-en-text);
}

.bki a {
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.bki a:hover {
  border-color: currentColor;
}

/* Booking widget */
.booking-widget {
  background: var(--off);
  border: 1.5px solid var(--light);
  border-radius: 20px;
  padding: 2.2rem 2rem;
  position: sticky;
  top: 88px;
}

.booking-widget h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1.6rem;
}

html[lang="ar"] .booking-widget h3 {
  font-family: var(--font-ar-display);
}

html[lang="en"] .booking-widget h3 {
  font-family: var(--font-en-display);
}

.fg {
  margin-bottom: 1rem;
}

.fg label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-gray);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

html[lang="ar"] .fg label {
  font-family: var(--font-ar-text);
  letter-spacing: 0.05em;
}

html[lang="en"] .fg label {
  font-family: var(--font-en-text);
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--light);
  border-radius: 10px;
  padding: 0.78rem 1rem;
  color: var(--black);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

html[lang="ar"] .fg input,
html[lang="ar"] .fg select,
html[lang="ar"] .fg textarea {
  font-family: var(--font-ar-text);
  direction: rtl;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(165, 124, 91, 0.1);
}

/* Calendar widget */
.booking-calendar {
  margin: 0.5rem 0 1rem;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.cal-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
}

html[lang="ar"] .cal-title {
  font-family: var(--font-ar-text);
}

.cal-nav-btn {
  background: none;
  border: 1px solid var(--light);
  border-radius: 6px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--dark-gray);
  transition: background 0.2s, border-color 0.2s;
}

.cal-nav-btn:hover {
  background: var(--light);
  border-color: var(--mid-gray);
}

.cal-nav-btn svg {
  width: 14px;
  height: 14px;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  text-align: center;
}

.cal-day-name {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  padding: 0.3rem 0;
  font-family: var(--font-en-text);
}

.cal-day {
  font-size: 0.8rem;
  padding: 0.45rem 0.2rem;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  font-family: var(--font-en-text);
  color: var(--dark-gray);
  line-height: 1;
}

.cal-day:hover:not(.disabled):not(.empty) {
  background: var(--gold-subtle);
  border-color: var(--gold);
  color: var(--gold-dark);
}

.cal-day.selected {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.cal-day.disabled {
  color: var(--light);
  pointer-events: none;
}

.cal-day.today {
  font-weight: 700;
  color: var(--gold);
}

.cal-day.available {
  color: var(--black);
}

.cal-day.empty {
  pointer-events: none;
}

/* Time slots */
.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin: 0.5rem 0 1rem;
}

.time-slot {
  font-size: 0.78rem;
  padding: 0.5rem 0.3rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--light);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  background: var(--white);
  color: var(--dark-gray);
  font-family: var(--font-en-text);
}

.time-slot:hover {
  background: var(--gold-subtle);
  border-color: var(--gold);
  color: var(--gold-dark);
}

.time-slot.selected {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.time-slot.booked {
  opacity: 0.35;
  pointer-events: none;
  text-decoration: line-through;
}

/* Booking states */
.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
}

.booking-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  gap: 0.6rem;
  color: var(--mid-gray);
  font-size: 0.85rem;
}

.booking-loading svg {
  width: 20px;
  height: 20px;
  animation: spin 0.8s linear infinite;
}

.booking-success {
  text-align: center;
  padding: 2rem 1rem;
}

.booking-success svg {
  width: 48px;
  height: 48px;
  color: #22c55e;
  margin: 0 auto 1rem;
}

.booking-success h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}

html[lang="ar"] .booking-success h4 {
  font-family: var(--font-ar-display);
}

.booking-success p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

html[lang="ar"] .booking-success p {
  font-family: var(--font-ar-text);
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.oval-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.55);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand .nav-logo {
  margin-bottom: 1.2rem;
}

.footer-brand .nav-logo-text .logo-name {
  color: var(--white);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.85;
  max-width: 26ch;
}

html[lang="ar"] .footer-brand p {
  font-family: var(--font-ar-text);
}

html[lang="en"] .footer-brand p {
  font-family: var(--font-en-text);
}

.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s, border-color 0.2s;
}

.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.4rem;
  font-family: var(--font-en-text);
}

html[lang="ar"] .footer-col h4 {
  font-family: var(--font-ar-text);
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

html[lang="ar"] .footer-col a {
  font-family: var(--font-ar-text);
}

html[lang="en"] .footer-col a {
  font-family: var(--font-en-text);
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-hours p {
  font-size: 0.85rem;
  line-height: 1.8;
}

html[lang="ar"] .footer-hours p {
  font-family: var(--font-ar-text);
}

html[lang="en"] .footer-hours p {
  font-family: var(--font-en-text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

html[lang="ar"] .footer-bottom {
  font-family: var(--font-ar-text);
}

html[lang="en"] .footer-bottom {
  font-family: var(--font-en-text);
}

/* ─── Sticky Float Buttons ───────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 22px;
  inset-inline-end: 20px;
  z-index: var(--z-float);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
  width: 26px;
  height: 26px;
}


/* ─── Services Detail Page Styles ────────────────────────────────────────── */
.srv-detail-hero {
  background: var(--black);
  padding: 10rem 2.5rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.srv-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(165, 124, 91, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.srv-detail-hero .sec-tag {
  color: var(--gold-light);
}

.srv-detail-hero .sec-h {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.srv-detail-hero .sec-body {
  color: rgba(255, 255, 255, 0.45);
  margin: 1.4rem auto 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Service accordion/expandable detail sections */
.srv-category {
  border-top: 1px solid var(--light);
}

.srv-category:last-child {
  border-bottom: 1px solid var(--light);
}

.srv-category-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 0;
  background: none;
  border: none;
  text-align: start;
  cursor: pointer;
  transition: color 0.2s;
}

.srv-cat-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}

html[lang="ar"] .srv-cat-title {
  font-family: var(--font-ar-display);
}

html[lang="en"] .srv-cat-title {
  font-family: var(--font-en-display);
}

.srv-category-btn:hover .srv-cat-title {
  color: var(--gold);
}

.srv-cat-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform 0.35s var(--ease-out), background 0.2s;
}

.srv-cat-icon svg {
  width: 14px;
  height: 14px;
}

.srv-category.open .srv-cat-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--white);
}

.srv-cat-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--ease-out);
}

.srv-category.open .srv-cat-body {
  max-height: 3000px;
}

.srv-cat-inner {
  padding-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.srv-cat-text p {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--mid-gray);
  margin-bottom: 1rem;
}

html[lang="ar"] .srv-cat-text p {
  font-family: var(--font-ar-text);
}

html[lang="en"] .srv-cat-text p {
  font-family: var(--font-en-text);
}

.srv-cat-text p:last-child {
  margin-bottom: 0;
}

.srv-cat-services {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.srv-mini-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  background: var(--off);
  border: 1px solid var(--light);
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
}

.srv-mini-card:hover {
  border-color: var(--gold);
  background: var(--white);
}

.srv-mini-card svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.srv-mini-card span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
}

html[lang="ar"] .srv-mini-card span {
  font-family: var(--font-ar-text);
}

html[lang="en"] .srv-mini-card span {
  font-family: var(--font-en-text);
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .result-card {
    width: calc(50% - 0.75rem);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .srv-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .oval-nav {
    padding: 0 1.2rem;
  }

  .nav-center {
    display: none;
  }

  .nav-right .nav-icon {
    display: none;
  }

  .nav-right .lang-switcher {
    display: flex;
  }

  .nav-hamburger {
    display: flex;
  }

  .mobile-bar {
    display: flex;
  }

  .sec {
    padding: 5rem 0;
  }

  .wrap,
  .wrap-wide {
    padding: 0 1.4rem;
  }

  .hero {
    padding: 3.5rem 1.4rem 4rem;
  }

  .srv-detail-hero {
    padding: 4rem 1.4rem 3rem;
  }

  .hero-h1 span {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: 0.6rem;
  }

  /* Typography Refinements for Mobile */
  html[lang="ar"] .sec-h {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
  }

  html[lang="en"] .sec-h {
    font-size: clamp(2rem, 6vw, 2.4rem);
  }

  .sec-body {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .btn-pill {
    font-size: 0.9rem;
    padding: 0.85rem 1.7rem;
    min-height: 48px;
    width: 100%;
  }

  .srv-grid {
    grid-template-columns: 1fr;
  }

  .results-grid {
    gap: 0.8rem;
  }
  .result-card {
    width: calc(50% - 0.4rem);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .proc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .booking-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .booking-widget {
    position: static;
  }

  .phil-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .srv-cat-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-inner {
    gap: 2.5rem;
  }

}

@media (max-width: 480px) {
  html[lang="ar"] .hero-h1 {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }

  html[lang="en"] .hero-h1 {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .proc-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .time-slots {
    grid-template-columns: repeat(2, 1fr);
  }
}