/* ============================================================
   د. أحمد بحيرى — استشاري أول جراحات المخ والأعصاب والعمود الفقرى
   تصميم وهوية بصرية طبية فائقة التميز — متوافق وسلس 100% للموبايل
   ============================================================ */

/* ---------- Color System & Design Tokens ---------- */
:root {
  --navy-950: #030f1c;
  --navy-900: #05182b;
  --navy-850: #07203a;
  --navy-800: #0a2b4d;
  --navy-700: #0f3964;
  --navy-600: #16497d;

  --teal-600: #098e9a;
  --teal-500: #0eb3c2;
  --teal-400: #25cbe0;
  --teal-300: #5ce4f0;
  --teal-100: #d6f7fb;

  --gold-600: #b0893b;
  --gold-500: #cfa85c;
  --gold-400: #e2c07a;
  --gold-300: #f5dc9e;
  --gold-100: #fbf5e6;

  --whatsapp-green: #25d366;
  --whatsapp-dark: #128c7e;

  --bg-page: #f5f9fc;
  --bg-card: #ffffff;
  --ink-900: #102231;
  --ink-700: #243c4f;
  --muted: #5e778d;
  --border-light: rgba(10, 43, 77, 0.08);

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --radius-full: 9999px;

  --shadow-subtle: 0 4px 20px rgba(5, 24, 43, 0.04);
  --shadow-card: 0 10px 32px rgba(5, 24, 43, 0.07);
  --shadow-elevated: 0 20px 50px rgba(5, 24, 43, 0.12);
  --shadow-gold: 0 12px 32px rgba(207, 168, 92, 0.32);
  --shadow-teal: 0 12px 36px rgba(14, 179, 194, 0.32);
  --shadow-wa: 0 12px 34px rgba(37, 211, 102, 0.35);

  --font-head: 'Cairo', system-ui, sans-serif;
  --font-body: 'Tajawal', system-ui, sans-serif;

  --header-h: 74px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--bg-page);
  line-height: 1.8;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

body.no-scroll {
  overflow: hidden;
  touch-action: none;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
  touch-action: manipulation;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  touch-action: manipulation;
}

::selection {
  background: var(--teal-500);
  color: #fff;
}

::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-track {
  background: #e8f1f7;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--teal-500), var(--navy-700));
  border-radius: 10px;
  border: 2px solid #e8f1f7;
}

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  padding-inline: clamp(14px, 3.5vw, 28px);
  margin-inline: auto;
  box-sizing: border-box;
}

.section {
  padding: clamp(56px, 7.5vw, 96px) 0;
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

/* All grid children safety */
.contact-grid > *,
.cards-grid > *,
.features-grid > *,
.steps-grid > *,
.branches-grid > *,
.footer-grid > *,
.hero-inner > *,
.about-inner > * {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

/* Offscreen rendering optimization */
.services,
.why,
.steps,
.faq,
.contact,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(32px, 4.5vw, 56px);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--teal-600);
  background: rgba(14, 179, 194, 0.09);
  border: 1px solid rgba(14, 179, 194, 0.24);
  padding: 7px 18px;
  border-radius: var(--radius-full);
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(23px, 3.2vw, 38px);
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.35;
  margin: 8px 0 16px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  border-radius: 4px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, var(--teal-500), var(--gold-500));
}

.section-text {
  color: var(--muted);
  font-size: clamp(14.5px, 1.1vw, 16.5px);
  line-height: 1.75;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* ---------- Buttons & CTAs ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  touch-action: manipulation;
  max-width: 100%;
  box-sizing: border-box;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn i {
  transition: transform 0.25s ease;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 16px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--navy-700) 100%);
  color: #fff;
  box-shadow: var(--shadow-teal);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(10, 43, 77, 0.35);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-500) 100%);
  color: var(--navy-950);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(207, 168, 92, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--navy-800);
  border-color: rgba(14, 179, 194, 0.45);
}

.btn-outline:hover {
  background: var(--teal-500);
  border-color: var(--teal-500);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.55);
}

/* GPU Accelerated Pulse */
.pulse-btn {
  position: relative;
}

.pulse-btn::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(14, 179, 194, 0.6);
  opacity: 0;
  animation: pulseRing 2.6s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
  pointer-events: none;
}

@keyframes pulseRing {
  0% { transform: scale(0.96); opacity: 0.8; }
  70% { transform: scale(1.14); opacity: 0; }
  100% { transform: scale(1.14); opacity: 0; }
}

/* ---------- High Performance Scroll Reveal System ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 993px) {
  .reveal.reveal-right {
    transform: translateX(24px);
  }
  .reveal.reveal-left {
    transform: translateX(-24px);
  }
}

.reveal.reveal-up {
  transform: translateY(22px);
}

.reveal.reveal-scale {
  transform: scale(0.96);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  will-change: auto;
}

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

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-850) 60%, var(--navy-900) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  max-width: 90vw;
}

.preloader-logo-wrap {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 6px;
  box-shadow: 0 10px 40px rgba(14, 179, 194, 0.4);
  margin-bottom: 18px;
}

.preloader-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.preloader-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  margin-bottom: 4px;
}

.preloader-sub {
  font-size: 13px;
  color: var(--teal-300);
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}

.preloader-bar {
  width: 150px;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.preloader-bar span {
  position: absolute;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--teal-400), var(--gold-400));
  border-radius: 10px;
  animation: preloaderSlide 1.2s infinite ease-in-out;
}

@keyframes preloaderSlide {
  0% { left: -40%; }
  100% { left: 100%; }
}

/* ---------- Header & Navbar ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(10, 43, 77, 0.07);
  box-shadow: 0 2px 14px rgba(5, 24, 43, 0.04);
  transition: box-shadow 0.3s ease, background 0.3s ease;
  width: 100%;
  max-width: 100%;
}

.header.scrolled {
  box-shadow: 0 6px 22px rgba(5, 24, 43, 0.09);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 1.5vw, 18px);
  height: var(--header-h);
}

/* Branded Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.logo-img-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 3px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(10, 43, 77, 0.1);
  border: 1.5px solid rgba(14, 179, 194, 0.28);
  overflow: hidden;
  transition: transform 0.25s ease;
}

.logo:hover .logo-img-wrap {
  transform: scale(1.04);
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.logo-text strong {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  color: var(--navy-900);
  white-space: nowrap;
}

.logo-text small {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 20px);
  flex-shrink: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(4px, 1vw, 14px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(12.5px, 0.92vw, 14.5px);
  color: #334e68;
  padding: 6px 4px;
  position: relative;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  border-radius: 4px;
  background: linear-gradient(90deg, #1d8cf8, var(--teal-500));
  transition: width 0.25s ease;
  margin: 0 auto;
}

.nav-link:hover,
.nav-link.active {
  color: #1172e3;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-inline-start: 4px;
  flex-shrink: 0;
}

.lang-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 11px;
  border-radius: var(--radius-full);
  border: 1.5px solid #dbe7f0;
  color: #486581;
  font-weight: 700;
  font-size: 12px;
  background: #f8fafc;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.lang-badge:hover {
  border-color: #1d8cf8;
  color: #1d8cf8;
}

.btn-nav-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #1d8cf8 0%, #0d7ce6 100%);
  color: #ffffff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(17, 114, 227, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-nav-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(17, 114, 227, 0.38);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1060;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  border-radius: 4px;
  background: var(--navy-900);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(5, 24, 43, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  background: radial-gradient(circle at 75% 30%, rgba(14, 179, 194, 0.2) 0%, transparent 60%),
              radial-gradient(circle at 15% 80%, rgba(207, 168, 92, 0.16) 0%, transparent 50%),
              linear-gradient(155deg, var(--navy-950) 0%, var(--navy-900) 45%, #082d49 100%);
  color: #fff;
  padding: clamp(48px, 6vw, 90px) 0 clamp(60px, 7vw, 110px);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 35% 45%, black 15%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 35% 45%, black 15%, transparent 75%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--teal-300);
  opacity: 0.6;
  box-shadow: 0 0 8px var(--teal-300);
  animation: particleDrift infinite ease-in-out alternate;
}

@keyframes particleDrift {
  0% { transform: translate(0, 0); opacity: 0.3; }
  100% { transform: translate(20px, -28px); opacity: 0.85; }
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
}

@media (min-width: 769px) {
  .blob {
    animation: blobDrift 18s ease-in-out infinite alternate;
  }
}

.blob-1 {
  width: min(500px, 90vw);
  height: min(500px, 90vw);
  top: -160px;
  left: -140px;
  background: radial-gradient(circle, rgba(14, 179, 194, 0.55), transparent 70%);
}

.blob-2 {
  width: min(440px, 85vw);
  height: min(440px, 85vw);
  bottom: -140px;
  right: 5%;
  background: radial-gradient(circle, rgba(207, 168, 92, 0.35), transparent 70%);
}

.blob-3 {
  width: min(300px, 70vw);
  height: min(300px, 70vw);
  top: 35%;
  left: 50%;
  background: radial-gradient(circle, rgba(92, 228, 240, 0.3), transparent 70%);
}

@keyframes blobDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 24px) scale(1.1); }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(32px, 4vw, 50px);
}

.hero-badge-wrap {
  margin-bottom: 18px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-300);
  background: rgba(207, 168, 92, 0.12);
  border: 1px solid rgba(207, 168, 92, 0.38);
  padding: 8px 18px;
  border-radius: var(--radius-full);
}

.hero-badge i {
  color: var(--gold-400);
  font-size: 14px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 18px;
  word-break: break-word;
}

.text-gradient {
  background: linear-gradient(90deg, var(--teal-300) 0%, var(--gold-300) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  color: #c1d5e4;
  font-size: clamp(15px, 1.15vw, 17px);
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-stars {
  color: var(--gold-400);
  font-size: 14px;
  letter-spacing: 2px;
}

.hero-trust p {
  color: #adc4d6;
  font-size: 13.5px;
}

.trust-highlight {
  color: var(--gold-300);
  font-weight: 800;
}

/* Hero Visual Showcase */
.hero-visual {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.visual-halo {
  position: absolute;
  width: min(360px, 86vw);
  height: min(360px, 86vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 179, 194, 0.22) 0%, rgba(14, 179, 194, 0.04) 55%, transparent 70%);
}

.visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.ring-1 {
  width: min(400px, 92vw);
  height: min(400px, 92vw);
  border-style: dashed;
}

.ring-2 {
  width: min(330px, 78vw);
  height: min(330px, 78vw);
  border-color: rgba(14, 179, 194, 0.35);
}

.ring-3 {
  width: min(260px, 64vw);
  height: min(260px, 64vw);
  border-style: dotted;
  border-color: rgba(207, 168, 92, 0.3);
}

@media (min-width: 993px) {
  .visual-halo {
    animation: haloBreath 5s ease-in-out infinite alternate;
  }
  .ring-1 {
    animation: ringspin 30s linear infinite;
  }
  .ring-2 {
    animation: ringspin 20s linear infinite reverse;
  }
  .ring-3 {
    animation: ringspin 24s linear infinite;
  }
}

@keyframes haloBreath {
  0% { transform: scale(0.92); opacity: 0.6; }
  100% { transform: scale(1.1); opacity: 1; }
}

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

/* Centerpiece Brand Card */
.hero-brand-card {
  position: relative;
  width: min(300px, 80vw);
  background: rgba(255, 255, 255, 0.96);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-xl);
  padding: 22px 18px 18px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 40px rgba(14, 179, 194, 0.25);
  z-index: 2;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand-card-glow {
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--teal-400), var(--gold-400));
  z-index: -1;
  opacity: 0.5;
  filter: blur(8px);
}

.brand-logo-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 200px;
  margin: 0 auto 12px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  padding: 6px;
  box-shadow: 0 6px 20px rgba(5, 24, 43, 0.08);
}

.hero-brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--gold-300);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
}

.brand-card-badge i {
  color: var(--gold-400);
}

/* Floating Micro Cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 43, 77, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 3;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  color: #fff;
  max-width: calc(100% - 20px);
}

.fc-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--teal-500), var(--navy-700));
  color: #fff;
  font-size: 15px;
}

.float-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 12.5px;
  line-height: 1.3;
}

.float-card small {
  color: #bed5e5;
  font-size: 10.5px;
}

.fc-1 { top: 16px; right: 8px; }
.fc-2 { bottom: 70px; left: 8px; }
.fc-3 { bottom: 10px; right: 16px; }

@media (min-width: 993px) {
  .float-anim-1 {
    animation: floatMotion1 5.5s ease-in-out infinite;
  }
  .float-anim-2 {
    animation: floatMotion2 6.2s ease-in-out infinite -2s;
  }
  .float-anim-3 {
    animation: floatMotion3 5.8s ease-in-out infinite -4s;
  }
}

@keyframes floatMotion1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes floatMotion2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes floatMotion3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ECG Pulse Line */
.visual-pulse {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(260px, 80vw);
  opacity: 0.65;
  z-index: 2;
  pointer-events: none;
}

.visual-pulse svg {
  width: 100%;
}

.visual-pulse polyline {
  fill: none;
  stroke: var(--teal-300);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  animation: dashECG 3s linear infinite;
}

@keyframes dashECG {
  to { stroke-dashoffset: -340; }
}

/* Hero Stats Bar */
.hero-stats {
  position: relative;
  z-index: 5;
  margin-top: clamp(36px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.hero-stat {
  text-align: center;
  padding: 24px 16px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.hero-stat:hover {
  background: rgba(255, 255, 255, 0.04);
}

.hero-stat:first-child {
  border-inline-start: none;
}

.stat-icon-wrap {
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(14, 179, 194, 0.15);
  color: var(--teal-300);
  font-size: 16px;
}

.stat-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 38px);
  background: linear-gradient(90deg, var(--teal-300) 0%, var(--gold-300) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.15;
}

.stat-label {
  color: #bfd4e4;
  font-size: 13.5px;
  margin-top: 4px;
  display: block;
}

/* ---------- About Section ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(36px, 5vw, 70px);
}

.about-frame {
  position: relative;
  max-width: 100%;
}

.about-photo {
  position: relative;
  aspect-ratio: 4 / 4.4;
  border-radius: var(--radius-xl);
  background: #e8f1f7;
  border: 2px solid rgba(14, 179, 194, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.about-logo-hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-photo:hover .about-logo-hero {
  transform: scale(1.03);
}

.photo-overlay-glass {
  position: absolute;
  bottom: 18px;
  right: 18px;
  left: 18px;
  z-index: 2;
}

.photo-caption {
  display: block;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16.5px;
  color: #fff;
  background: linear-gradient(135deg, rgba(5, 24, 43, 0.9), rgba(10, 43, 77, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 10px;
}

.photo-caption i {
  color: var(--teal-400);
  margin-inline-end: 6px;
}

.about-badge-exp {
  position: absolute;
  top: 20px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--navy-950);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elevated);
  z-index: 3;
}

.exp-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
}

.exp-num i {
  font-style: normal;
  font-size: 20px;
}

.exp-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.4;
}

.about-badge-cert {
  position: absolute;
  bottom: 20px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elevated);
  z-index: 3;
  border-inline-start: 4px solid var(--teal-500);
}

.about-badge-cert i {
  font-size: 24px;
  color: var(--teal-500);
}

.about-badge-cert strong {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--navy-900);
}

.about-badge-cert small {
  font-size: 11.5px;
  color: var(--muted);
}

.about-content .section-title {
  text-align: right;
  margin-bottom: 16px;
}

.about-content .section-title::after {
  margin: 14px 0 0;
}

.about-content .section-text {
  margin-bottom: 22px;
  max-width: 620px;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
  margin-bottom: 30px;
}

.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-700);
  line-height: 1.6;
}

.about-points i {
  color: var(--teal-500);
  margin-top: 4px;
  font-size: 15px;
  flex-shrink: 0;
}

.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Services Section ---------- */
.services {
  background: linear-gradient(180deg, #eef4f8 0%, #f7fafc 100%);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
}

.service-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px) clamp(20px, 2.5vw, 28px) clamp(22px, 2.8vw, 30px);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-500), var(--gold-500));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
  border-color: rgba(14, 179, 194, 0.35);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.card-icon-wrap {
  margin-bottom: 18px;
}

.card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(14, 179, 194, 0.12), rgba(10, 43, 77, 0.06));
  color: var(--teal-600);
  font-size: 24px;
  transition: all 0.3s ease;
}

.service-card:hover .card-icon {
  background: linear-gradient(135deg, var(--teal-500), var(--navy-700));
  color: #fff;
  transform: scale(1.06);
  box-shadow: var(--shadow-teal);
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 19.5px;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 10px;
}

.service-card > p {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 16px;
  line-height: 1.65;
}

.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
  flex: 1;
}

.service-card ul li {
  position: relative;
  padding-inline-start: 20px;
  font-size: 13.5px;
  color: var(--ink-700);
  line-height: 1.55;
}

.service-card ul li::before {
  content: "◆";
  position: absolute;
  right: 0;
  color: var(--gold-500);
  font-size: 10px;
  top: 4px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--teal-600);
  transition: color 0.25s ease, gap 0.25s ease;
  margin-top: auto;
}

.card-link i {
  transition: transform 0.25s ease;
}

.card-link:hover {
  color: var(--navy-800);
  gap: 10px;
}

.card-link:hover i {
  transform: translateX(-3px);
}

/* ---------- Why Us Section ---------- */
.why {
  position: relative;
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-850) 55%, #082d49 100%);
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(14, 179, 194, 0.16), transparent 45%),
    radial-gradient(circle at 10% 85%, rgba(207, 168, 92, 0.14), transparent 45%);
  pointer-events: none;
}

.why .section-title {
  color: #fff;
}

.why .section-title::after {
  background: linear-gradient(90deg, var(--teal-300), var(--gold-400));
}

.why .section-text {
  color: #bcd0de;
}

.why .container {
  position: relative;
  z-index: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
}

.feature {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 36px) clamp(20px, 2.5vw, 28px);
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(14, 179, 194, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon-wrap {
  margin-bottom: 18px;
}

.feature-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  font-size: 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal-500), var(--navy-700));
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.feature h3 {
  font-family: var(--font-head);
  font-size: 18.5px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.feature p {
  color: #bed2e0;
  font-size: 14px;
  line-height: 1.65;
}

/* ---------- Steps Section ---------- */
.steps {
  background: #ffffff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 26px);
  position: relative;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 50px;
  right: 10%;
  left: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-500), rgba(207, 168, 92, 0.6), transparent);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  background: var(--bg-page);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 36px) clamp(16px, 2vw, 22px) clamp(22px, 2.5vw, 28px);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
}

.step-num {
  position: absolute;
  top: 12px;
  left: 16px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 28px;
  color: rgba(14, 179, 194, 0.16);
}

.step-icon-wrap {
  margin-bottom: 16px;
}

.step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 22px;
  color: var(--teal-600);
  background: rgba(14, 179, 194, 0.1);
  border: 2px solid rgba(14, 179, 194, 0.3);
}

.step h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}

/* ---------- FAQ Section ---------- */
.faq {
  background: linear-gradient(180deg, #f8fbfd 0%, #eef5f9 100%);
}

.faq-inner {
  max-width: 880px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item.open {
  box-shadow: var(--shadow-card);
  border-color: rgba(14, 179, 194, 0.4);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: right;
  padding: clamp(16px, 2.5vw, 22px) clamp(18px, 3vw, 26px);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--navy-900);
  cursor: pointer;
  touch-action: manipulation;
}

.faq-q i {
  flex: 0 0 auto;
  color: var(--teal-500);
  font-size: 14px;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-q i {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.faq-a p {
  color: var(--muted);
  font-size: clamp(14px, 1vw, 15.5px);
  line-height: 1.75;
  padding: 14px clamp(18px, 3vw, 26px) 20px;
  border-top: 1px dashed rgba(10, 43, 77, 0.08);
}

/* ---------- Branch Location Cards ---------- */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
  margin-bottom: 36px;
}

.branch-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 34px) clamp(20px, 2.5vw, 28px);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.branch-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-500), #1d8cf8);
}

.branch-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-elevated);
  border-color: rgba(14, 179, 194, 0.4);
}

.branch-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.branch-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: #f0f7fc;
  color: var(--navy-800);
  border: 1px solid #d8e8f3;
}

.branch-badge.main-badge {
  background: rgba(207, 168, 92, 0.12);
  color: var(--gold-600);
  border-color: rgba(207, 168, 92, 0.35);
}

.branch-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(14, 179, 194, 0.1), rgba(10, 43, 77, 0.05));
  color: var(--teal-600);
  font-size: 17px;
}

.branch-name {
  font-family: var(--font-head);
  font-size: clamp(19px, 2vw, 22px);
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 14px;
}

.branch-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  flex: 1;
}

.b-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.6;
}

.b-detail i {
  color: var(--teal-500);
  margin-top: 4px;
  flex: 0 0 16px;
}

.b-phone-link {
  color: var(--teal-600);
  font-weight: 700;
  direction: ltr;
  display: inline-block;
}

.b-phone-link:hover {
  color: #1172e3;
  text-decoration: underline;
}

.branch-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-branch {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-map {
  background: linear-gradient(135deg, #1d8cf8 0%, #1172e3 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(17, 114, 227, 0.22);
}

.btn-map:hover {
  background: linear-gradient(135deg, #2595ff 0%, #1583ee 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(17, 114, 227, 0.35);
  color: #ffffff;
}

.btn-call-outline {
  background: #f8fafc;
  color: var(--navy-900);
  border: 1.5px solid #dbe7f0;
}

.btn-call-outline:hover {
  background: #ffffff;
  border-color: var(--teal-500);
  color: var(--teal-600);
  transform: translateY(-2px);
}

/* ---------- Contact Section & WhatsApp Booking Card ---------- */
.contact {
  background: linear-gradient(180deg, #eef5f9 0%, #f6fafc 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(20px, 3.5vw, 40px);
  align-items: stretch;
  width: 100%;
  max-width: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.c-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.c-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.c-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  font-size: 19px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal-500), var(--navy-700));
  box-shadow: var(--shadow-teal);
}

.c-card > div {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.c-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 15px;
  color: var(--navy-900);
  margin-bottom: 2px;
  line-height: 1.35;
  overflow-wrap: break-word;
}

.c-card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.c-card a {
  color: var(--teal-600);
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: break-all;
  display: inline-block;
  max-width: 100%;
}

.c-card a:hover {
  color: var(--navy-800);
  text-decoration: underline;
}

/* WhatsApp Direct Booking Card Style */
.whatsapp-booking-wrap {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.whatsapp-booking-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: clamp(26px, 3.5vw, 40px) clamp(16px, 3vw, 30px);
  text-align: center;
  border: 1px solid rgba(10, 43, 77, 0.08);
  box-shadow: 0 14px 36px rgba(5, 24, 43, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  overflow: hidden;
}

.whatsapp-booking-card:hover {
  box-shadow: 0 20px 48px rgba(5, 24, 43, 0.11);
  transform: translateY(-3px);
}

.wa-icon-badge {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #e8f8ee;
  color: #25d366;
  display: grid;
  place-items: center;
  font-size: 32px;
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.2);
}

.wa-title {
  font-family: var(--font-head);
  font-size: clamp(21px, 2.3vw, 26px);
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.wa-subtitle {
  color: var(--muted);
  font-size: 14px;
  max-width: 440px;
  margin-bottom: 22px;
  line-height: 1.65;
}

.wa-actions {
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: 100%;
  max-width: 400px;
  min-width: 0;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.direct-btn {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 13px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
  touch-action: manipulation;
  text-align: center;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.32);
}

.btn-whatsapp:hover {
  background: #1eb956;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp i {
  font-size: 18px;
}

.btn-call,
.btn-call-doctor {
  background: #f7fafc;
  color: var(--navy-900);
  border-color: #dbe7f0;
  box-shadow: 0 4px 12px rgba(5, 24, 43, 0.04);
}

.btn-call:hover,
.btn-call-doctor:hover {
  background: #ffffff;
  border-color: var(--teal-500);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 179, 194, 0.16);
  color: var(--navy-800);
}

.phone-gradient-icon {
  background: linear-gradient(135deg, #d63384, #fd7e14);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 16px;
}

.direct-schedule-note {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* ---------- Footer ---------- */
.footer {
  background: linear-gradient(180deg, var(--navy-950) 0%, #02080f 100%);
  color: #b0c4d4;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 3.5vw, 44px);
  padding: clamp(48px, 6vw, 76px) 0 40px;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-logo-wrap {
  background: #fff;
}

.footer-logo strong {
  color: #fff;
}

.footer-logo small {
  color: var(--teal-300);
}

.footer-brand p {
  font-size: 14px;
  max-width: 320px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cfe0ea;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: var(--teal-500);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-teal);
}

.footer-col h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17.5px;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--teal-500), var(--gold-500));
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li {
  font-size: 14px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-col ul a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  overflow-wrap: anywhere;
}

.footer-col ul a i {
  font-size: 11px;
  color: var(--teal-400);
  transition: transform 0.25s ease;
}

.footer-col ul a:hover {
  color: var(--gold-300);
  padding-right: 4px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-contact i {
  color: var(--teal-400);
  flex-shrink: 0;
}

.footer-contact a {
  overflow-wrap: anywhere;
  word-break: break-all;
}

.footer-contact a:hover {
  color: var(--gold-300);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  font-size: 13.5px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom i {
  color: #e04f4f;
}

/* ---------- Floating Controls (GPU Accelerated) ---------- */
.float-whatsapp,
.float-top {
  position: fixed;
  z-index: 950;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  touch-action: manipulation;
}

.float-whatsapp {
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.float-whatsapp::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.7);
  opacity: 0;
  animation: waPulseRing 2.4s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
  pointer-events: none;
}

@keyframes waPulseRing {
  0% { transform: scale(0.96); opacity: 0.8; }
  70% { transform: scale(1.22); opacity: 0; }
  100% { transform: scale(1.22); opacity: 0; }
}

.float-tooltip {
  position: absolute;
  right: 60px;
  background: var(--navy-900);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--radius-xs);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}

.float-whatsapp:hover .float-tooltip {
  opacity: 1;
  visibility: visible;
}

.float-whatsapp:hover {
  transform: scale(1.08);
}

.float-top {
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--teal-500), var(--navy-700));
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  font-size: 18px;
}

.float-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.float-top:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: var(--shadow-teal);
}

/* ============================================================
   Clinic Selection WhatsApp Modal
   ============================================================ */
.clinic-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}

.clinic-modal.open {
  visibility: visible;
  opacity: 1;
}

.clinic-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 15, 28, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.clinic-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 2;
  transform: scale(0.95) translateY(14px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  scrollbar-width: thin;
  scrollbar-color: var(--teal-500) transparent;
}

.clinic-modal.open .clinic-modal-dialog {
  transform: scale(1) translateY(0);
}

.clinic-modal-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #f4f9fd 100%);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 36px) clamp(14px, 3.5vw, 30px) clamp(18px, 3vw, 26px);
  box-shadow: 0 24px 70px rgba(3, 15, 28, 0.35), 0 0 0 1px rgba(14, 179, 194, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-sizing: border-box;
}

.clinic-modal-close {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: #ffffff;
  color: var(--navy-800);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-subtle);
  z-index: 5;
  touch-action: manipulation;
}

.clinic-modal-close:hover {
  background: #ff4757;
  color: #ffffff;
  border-color: #ff4757;
  transform: scale(1.06);
}

.clinic-modal-header {
  text-align: center;
  margin-bottom: 20px;
  padding: 0 6px;
}

.clinic-modal-badge-row {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.modal-wa-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: rgba(37, 211, 102, 0.12);
  color: var(--whatsapp-dark);
  border: 1px solid rgba(37, 211, 102, 0.28);
  font-weight: 700;
  font-size: 13px;
}

.modal-wa-badge i {
  font-size: 16px;
  color: var(--whatsapp-green);
}

.clinic-modal-title {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 800;
  color: var(--navy-950);
  line-height: 1.35;
  margin-bottom: 6px;
}

.clinic-modal-subtitle {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

.modal-clinics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 16px;
  width: 100%;
}

.modal-clinic-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid rgba(10, 43, 77, 0.09);
  border-radius: var(--radius-lg);
  padding: 18px 14px 14px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: var(--shadow-subtle);
  box-sizing: border-box;
}

.modal-clinic-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(5, 24, 43, 0.1);
  border-color: var(--teal-500);
}

.modal-clinic-card.main-clinic {
  border-color: rgba(207, 168, 92, 0.4);
  background: linear-gradient(180deg, #ffffff 0%, rgba(251, 245, 230, 0.38) 100%);
}

.modal-clinic-card.main-clinic:hover {
  border-color: var(--gold-500);
}

.modal-clinic-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.m-branch-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(14, 179, 194, 0.1);
  color: var(--teal-600);
}

.m-branch-tag.main-tag {
  background: var(--gold-100);
  color: var(--gold-600);
  border: 1px solid rgba(207, 168, 92, 0.3);
}

.m-branch-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  color: var(--teal-400);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.modal-clinic-card.main-clinic .m-branch-icon {
  color: var(--gold-400);
}

.modal-clinic-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.modal-clinic-addr,
.modal-clinic-hours {
  font-size: 12px;
  color: var(--ink-700);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 6px;
}

.modal-clinic-addr i,
.modal-clinic-hours i {
  color: var(--teal-500);
  margin-top: 3px;
  font-size: 12px;
  flex-shrink: 0;
}

.modal-clinic-card.main-clinic .modal-clinic-addr i,
.modal-clinic-card.main-clinic .modal-clinic-hours i {
  color: var(--gold-500);
}

.modal-clinic-hours {
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--navy-800);
}

.btn-modal-wa {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-modal-wa:hover {
  filter: brightness(1.06);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-modal-wa i.fa-whatsapp {
  font-size: 16px;
}

.modal-arrow-icon {
  font-size: 11px;
  opacity: 0.85;
}

.clinic-modal-footer {
  text-align: center;
  padding-top: 10px;
  border-top: 1px dashed rgba(10, 43, 77, 0.12);
}

.modal-emergency-line {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
  flex-wrap: wrap;
  justify-content: center;
}

.modal-emergency-line i {
  color: #e74c3c;
  font-size: 12px;
}

.modal-emergency-line a {
  color: var(--navy-800);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS (Engineered for Precision Screen Fit)
   ============================================================ */

/* Tablet & Smaller Laptops */
@media (max-width: 1080px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .steps-grid::before {
    display: none;
  }

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

  .nav-toggle {
    display: flex;
  }

  /* Hardware-accelerated drawer menu */
  .header .main-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: auto;
    width: min(320px, 85vw);
    background: #ffffff;
    z-index: 1050;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 85px 24px 36px;
    box-shadow: -18px 0 50px rgba(5, 24, 43, 0.25);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
  }

  .header .main-nav.open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 4px;
    margin-bottom: 24px;
  }

  .nav-link {
    padding: 12px 10px;
    font-size: 15.5px;
    border-bottom: 1px solid rgba(5, 24, 43, 0.06);
    border-radius: 0;
    width: 100%;
  }

  .nav-link::after {
    display: none;
  }

  .nav-actions {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-inline-start: 0;
  }

  .btn-nav-book {
    flex: 1;
    justify-content: center;
  }
}

/* Medium Tablets & Large Phones */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-visual {
    height: auto;
    min-height: 360px;
    max-width: 100%;
    order: -1;
    padding: 10px 0;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-visual {
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
  }

  .about-badge-exp {
    left: 8px;
    top: 10px;
    padding: 10px 14px;
  }

  .about-badge-cert {
    left: 8px;
    bottom: 10px;
    padding: 10px 14px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Standard Mobile & Small Tablets */
@media (max-width: 767px) {
  .section {
    padding: 50px 0;
  }

  .hero {
    padding: 36px 0 56px;
  }

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

  .hero-stat {
    border-inline-start: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 10px;
  }

  .hero-stat:nth-child(odd) {
    border-inline-end: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-stat:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .stat-num {
    font-size: 28px;
  }

  .cards-grid,
  .features-grid,
  .steps-grid,
  .about-points,
  .branches-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .branch-actions {
    flex-direction: column;
  }

  .btn-branch {
    width: 100%;
  }

  .whatsapp-booking-card {
    padding: 28px 16px 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 44px;
  }

  .footer-bottom-inner {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 6px;
  }

  .modal-clinics-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Small Phones (< 480px) */
@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .container {
    padding-inline: 14px;
  }

  .logo-text small {
    display: none;
  }

  .logo-text strong {
    font-size: 15px;
  }

  .logo-img-wrap {
    width: 36px;
    height: 36px;
  }

  .hero-title {
    font-size: clamp(23px, 6.5vw, 28px);
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    font-size: 14px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .visual-halo {
    width: 240px;
    height: 240px;
  }

  .ring-1 {
    width: 250px;
    height: 250px;
  }

  .ring-2 {
    width: 200px;
    height: 200px;
  }

  .ring-3 {
    width: 160px;
    height: 160px;
  }

  .hero-brand-card {
    width: min(220px, 75vw);
    padding: 12px 10px;
  }

  .brand-logo-frame {
    max-width: 140px;
    margin-bottom: 8px;
  }

  .float-card {
    padding: 5px 8px;
    gap: 6px;
  }

  .fc-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .float-card strong {
    font-size: 11px;
  }

  .float-card small {
    font-size: 9px;
  }

  .fc-1 { top: 2px; right: 0; }
  .fc-2 { bottom: 46px; left: 0; }
  .fc-3 { bottom: 0; right: 6px; }

  .hero-stats {
    margin-top: 24px;
  }

  .hero-stat {
    padding: 14px 6px;
  }

  .stat-num {
    font-size: 24px;
  }

  .stat-label {
    font-size: 11px;
  }

  .about-cta {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .about-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .about-badge-exp,
  .about-badge-cert {
    padding: 8px 12px;
  }

  .exp-num {
    font-size: 24px;
  }

  .exp-text {
    font-size: 10.5px;
  }

  .about-badge-cert strong {
    font-size: 12.5px;
  }

  .about-badge-cert small {
    font-size: 10px;
  }

  .c-card {
    padding: 14px 14px;
    gap: 12px;
  }

  .c-icon {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .c-card strong {
    font-size: 14px;
  }

  .c-card p {
    font-size: 12.5px;
  }

  .whatsapp-booking-card {
    padding: 24px 14px 18px;
  }

  .wa-actions {
    max-width: 100%;
  }

  .direct-btn {
    padding: 12px 14px;
    font-size: 13.5px;
  }

  .float-whatsapp {
    bottom: 16px;
    left: 14px;
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .float-top {
    bottom: 16px;
    right: 14px;
    width: 42px;
    height: 42px;
    font-size: 15px;
  }

  .clinic-modal-card {
    padding: 22px 12px 16px;
  }

  .clinic-modal-title {
    font-size: 17px;
  }

  .clinic-modal-subtitle {
    font-size: 12px;
  }

  .modal-clinic-card {
    padding: 14px 10px;
  }
}

/* Extra Small Devices (< 360px) */
@media (max-width: 359px) {
  .hero-brand-card {
    width: 190px;
  }
  .float-card {
    display: none;
  }
  .direct-btn {
    font-size: 12.5px;
    padding: 11px 10px;
  }
}

/* ============================================================
   English (LTR) Localizations
   ============================================================ */
html[lang="en"] {
  --font-head: 'Inter', 'Cairo', system-ui, sans-serif;
  --font-body: 'Inter', 'Tajawal', system-ui, sans-serif;
}

html[lang="en"] .nav-link {
  font-size: clamp(12.5px, 0.9vw, 14px);
  padding: 6px 3px;
}

html[lang="en"] .btn-nav-book {
  font-size: 13px;
  padding: 8px 16px;
}

@media (max-width: 1080px) {
  html[lang="en"] .header .main-nav {
    right: auto;
    left: 0;
    transform: translateX(-100%);
    box-shadow: 18px 0 50px rgba(5, 24, 43, 0.25);
  }

  html[lang="en"] .header .main-nav.open {
    transform: translateX(0);
    visibility: visible;
  }
}

html[lang="en"] .about-content .section-title {
  text-align: left;
}

html[lang="en"] .faq-q {
  text-align: left;
}

html[lang="en"] .footer-col h3::after {
  right: auto;
  left: 0;
}

html[lang="en"] .footer-col ul a:hover {
  padding-right: 0;
  padding-left: 4px;
}

html[lang="en"] .service-card::before {
  right: auto;
  left: 0;
  transform-origin: left;
}

html[lang="en"] .service-card ul li {
  padding-inline-start: 0;
  padding-inline-end: 20px;
}

html[lang="en"] .service-card ul li::before {
  right: auto;
  left: 0;
}

html[lang="en"] .about-badge-exp,
html[lang="en"] .about-badge-cert {
  left: auto;
  right: -20px;
}

@media (max-width: 992px) {
  html[lang="en"] .about-badge-exp,
  html[lang="en"] .about-badge-cert {
    left: auto;
    right: 8px;
  }
}

html[lang="en"] .footer-col a .fa-angle-left,
html[lang="en"] .card-link .fa-arrow-left {
  transform: rotate(180deg);
}

html[lang="en"] .card-link:hover i {
  transform: translateX(3px) rotate(180deg);
}

html[lang="en"] .clinic-modal-close {
  left: auto;
  right: 14px;
}

html[lang="en"] .modal-arrow-icon {
  transform: rotate(180deg);
}

html[lang="en"] .btn-modal-wa:hover .modal-arrow-icon {
  transform: translateX(3px) rotate(180deg);
}