﻿/* ==================== TOKENS ==================== */
:root {
  --ink: #0d1a19;
  --ink-2: #1a2b2a;
  --ink-soft: #42514f;
  --muted: #6c7b79;
  --paper: #ffffff;
  --paper-2: #f4f8f7;
  --paper-3: #eaf2f1;
  --teal: #2a807d;
  --teal-deep: #1d5c5a;
  --teal-darker: #123c3a;
  --teal-light: #dcecea;
  --teal-glow: rgba(42, 128, 125, .35);
  --line: #e3ecea;
  --line-2: #d3e0de;
  --shadow-sm: 0 4px 18px rgba(13, 26, 25, .06);
  --shadow-md: 0 18px 50px -18px rgba(13, 26, 25, .20);
  --shadow-lg: 0 40px 90px -30px rgba(18, 60, 58, .45);
  --r: 18px;
  --r-lg: 28px;
  --ease: cubic-bezier(.19, 1, .22, 1);
  --f-disp: 'Rubik', system-ui, sans-serif;
  --f-body: 'Cairo', system-ui, sans-serif;
  --f-num: 'Sora', 'Cairo', sans-serif;
  --maxw: 1280px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  font-size: 93.75%
}

body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--f-disp);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.01em
}

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

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

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

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px
}

section {
  position: relative
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
  width: 11px
}

::-webkit-scrollbar-track {
  background: var(--paper-2)
}

::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 20px;
  border: 3px solid var(--paper-2)
}

/* ==================== EYEBROW / HEADINGS ==================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-num);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--teal);
  display: inline-block;
  border-radius: 2px
}

.sec-head {
  max-width: 640px;
  margin-bottom: 56px
}

.sec-head h2 {
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  color: var(--ink)
}

.sec-head p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 540px
}

.sec-head.center {
  margin-inline: auto;
  text-align: center
}

.sec-head.center .eyebrow {
  justify-content: center
}

.sec-head.center p {
  margin-inline: auto
}

.tealword {
  color: var(--teal)
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: .98rem;
  position: relative;
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), color .4s ease;
  will-change: transform;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform .5s var(--ease)
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 12px 30px -10px var(--teal-glow)
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--teal-deep);
  transform: translateY(101%);
  transition: transform .5s var(--ease);
  z-index: 0;
  border-radius: inherit
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -12px var(--teal-glow)
}

.btn-primary:hover::after {
  transform: translateY(0)
}

.btn-primary:hover svg {
  transform: translateX(-5px)
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-2)
}

.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-3px)
}

.btn-dark {
  background: var(--ink);
  color: #fff
}

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

.btn-lg {
  padding: 14px 30px;
  font-size: .92rem
}

/* ==================== IMAGE WRAPPER (with graceful fallback) ==================== */
.ph {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-darker));
  isolation: isolate
}

.ph::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .05em;
  z-index: 0;
  padding: 20px;
  text-align: center
}

.ph img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), opacity .6s ease
}

.ph img.failed {
  opacity: 0
}

/* ==================== HEADER ==================== */
header {
  position: fixed;
  top: 0;
  inset-inline-end: 0;
  inset-inline-start: 0;
  z-index: 900;
  transition: all .5s var(--ease)
}

.topbar {
  background: var(--ink);
  color: #cdd9d7;
  font-size: .82rem;
  transition: all .45s var(--ease);
  overflow: hidden
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 42px;
  gap: 20px
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #cdd9d7;
  transition: color .3s
}

.topbar a:hover {
  color: #fff
}

.topbar-l {
  display: flex;
  gap: 26px
}

.topbar-r {
  display: flex;
  gap: 20px;
  align-items: center
}

.topbar svg {
  width: 14px;
  height: 14px;
  color: var(--teal)
}

.nav {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: all .45s var(--ease)
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  transition: height .45s var(--ease)
}

header.scrolled .topbar {
  height: 0;
  opacity: 0
}

header.scrolled .nav {
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line)
}

header.scrolled .nav .wrap {
  height: 68px
}

/* logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none
}

.logo-mark {
  width: 42px;
  height: 42px;
  flex: none
}

.logo-mark svg {
  width: 100%;
  height: 100%
}

.logo-txt {
  display: flex;
  align-items: center;
  line-height: 1
}

.logo-txt img {
  display: block;
  height: 65px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  transition: height .45s var(--ease)
}

.logo-footer img {
  display: block;
  height: 80px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  transition: height .45s var(--ease)
}

header.scrolled .logo-txt img {
  height: 42px
}

.logo-txt b {
  font-family: var(--f-disp);
  font-size: 1.32rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em
}

.logo-txt small {
  font-size: .66rem;
  color: var(--teal);
  letter-spacing: .16em;
  font-family: var(--f-num);
  font-weight: 500;
  margin-top: 3px
}

/* nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px
}

.nav-links a {
  padding: 10px 12px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 10px;
  position: relative;
  white-space: nowrap;
  transition: color .3s
}

@media(max-width:1300px) {
  .nav-links { gap: 0 }
  .nav-links a { padding: 10px 8px; font-size: .82rem }
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  inset-inline-start: 15px;
  inset-inline-end: 15px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
  border-radius: 2px
}

.nav-links a:hover {
  color: var(--teal)
}

.nav-links a:hover::after {
  transform: scaleX(1)
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none
}

.has-drop {
  position: relative
}

.drop {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-start: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  padding: 10px;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .35s var(--ease)
}

.has-drop:hover .drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.drop a {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: .9rem;
  color: var(--ink-soft)
}

.drop a::after {
  display: none
}

.drop a:hover {
  background: var(--paper-2);
  color: var(--teal)
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .4s var(--ease)
}

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 899;
  background: var(--ink);
  color: #fff;
  padding: 100px 28px 40px;
  transform: translateX(100%);
  transition: transform .6s var(--ease);
  overflow-y: auto
}

.mobile-menu.open {
  transform: translateX(0)
}

.mobile-menu a {
  display: block;
  font-family: var(--f-disp);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: #fff;
  opacity: 0;
  transform: translateX(20px)
}

.mobile-menu.open a {
  animation: slideIn .5s var(--ease) forwards
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0)
  }
}

.mobile-menu .btn {
  margin-top: 20px;
  width: 100%;
  padding: 13px 24px;
  font-size: .9rem
}

body.nav-open .burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

body.nav-open .burger span:nth-child(2) {
  opacity: 0
}

body.nav-open .burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* ==================== HERO ==================== */
.hero {
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: 118px 0 36px
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(75deg, rgba(13, 26, 25, .96) 20%, rgba(18, 60, 58, .78) 55%, rgba(42, 128, 125, .35) 100%);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at 20% 30%, transparent 40%, rgba(13, 26, 25, .5) 100%)
}

.hero>.wrap {
  position: relative;
  z-index: 5;
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  min-height: 0
}

.hero-inner {
  max-width: 860px;
  color: #fff
}

.hero .eyebrow {
  color: #7fd8d3;
  font-size: .95rem;
  margin-bottom: 14px
}

.hero .eyebrow::before {
  background: #7fd8d3
}

.hero h1 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.4
}

/* typographic hierarchy: heavy key line, light secondary line, medium accent line */
.hero h1 .ln:nth-child(1) i {
  font-size: 1.12em;
  font-weight: 900
}

.hero h1 .ln:nth-child(2) i {
  font-size: .62em;
  font-weight: 400;
  color: #cfe0de;
  letter-spacing: 0
}

.hero h1 .ln:nth-child(3) i {
  font-size: .8em;
  font-weight: 500;
  color: #7fd8d3
}

.hero h1 .ln {
  display: block;
  overflow: hidden
}

.hero h1 .ln i {
  display: block;
  font-style: normal;
  transform: translateY(110%);
  opacity: 0
}

.hero.loaded h1 .ln i {
  animation: heroUp .9s var(--ease) forwards
}

.hero.loaded h1 .ln:nth-child(1) i {
  animation-delay: .15s
}

.hero.loaded h1 .ln:nth-child(2) i {
  animation-delay: .28s
}

.hero.loaded h1 .ln:nth-child(3) i {
  animation-delay: .41s
}

@keyframes heroUp {
  to {
    transform: translateY(0);
    opacity: 1
  }
}

.hero p.lead {
  margin-top: 22px;
  font-size: 1.05rem;
  line-height: 1.9;
  font-weight: 400;
  color: #cfe0de;
  max-width: 720px;
  opacity: 0;
  transform: translateY(20px)
}

.hero .cta-row {
  margin-top: 26px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px)
}

.hero.loaded p.lead {
  animation: fadeUp .8s var(--ease) .6s forwards
}

.hero.loaded .cta-row {
  animation: fadeUp .8s var(--ease) .75s forwards
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .3)
}

.hero .btn-ghost:hover {
  border-color: #fff;
  color: var(--ink);
  background: #fff
}

/* floating stat chips */
.hero-chips {
  position: relative;
  z-index: 5;
  width: 100%;
  margin-top: 24px;
  flex: 0 0 auto
}

.hero-chips::before {
  content: "";
  position: absolute;
  top: -70px;
  inset-inline-start: -50px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-glow), transparent 70%);
  opacity: .65;
  z-index: -1;
  pointer-events: none
}

.hero-chips .wrap {
  display: grid;
  grid-template-columns: repeat(4, 200px);
  gap: 14px;
  justify-content: start
}

.chip {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(12px);
  border-radius: var(--r);
  padding: 18px 14px;
  text-align: center;
  color: #fff;
  opacity: 0;
  transform: translateY(24px) scale(.94);
  transition: transform .4s var(--ease), background .4s
}

.chip:hover {
  background: rgba(255, 255, 255, .11);
  transform: translateY(-4px)
}

.hero.loaded .chip {
  animation: chipZoom .7s var(--ease) forwards
}

@keyframes chipZoom {
  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

.hero.loaded .chip:nth-child(1) {
  animation-delay: .9s
}

.hero.loaded .chip:nth-child(2) {
  animation-delay: 1s
}

.hero.loaded .chip:nth-child(3) {
  animation-delay: 1.1s
}

.hero.loaded .chip:nth-child(4) {
  animation-delay: 1.2s
}

.chip b {
  font-family: var(--f-num);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 600;
  display: block;
  line-height: 1
}

.chip span {
  font-size: .74rem;
  color: #bfe3df;
  margin-top: 6px;
  display: block
}

@media(max-width:900px) {
  .hero-chips .wrap {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:480px) {
  .chip {
    padding: 22px 14px
  }
}

/* neural spine motif in hero */
.spine-motif {
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-end: 6%;
  z-index: 4;
  width: 120px;
  opacity: .85;
  pointer-events: none
}

.spine-motif svg {
  height: 100%;
  width: 100%
}

.spine-path {
  stroke: #4ba39f;
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400
}

.hero.loaded .spine-path {
  animation: draw 2.4s var(--ease) .5s forwards
}

@keyframes draw {
  to {
    stroke-dashoffset: 0
  }
}

.node {
  fill: #7fd8d3
}

.pulse {
  fill: #fff
}

@media(max-width:1000px) {
  .spine-motif {
    display: none
  }
}

/* ==================== TRUST STRIP ==================== */
.trust {
  background: var(--ink);
  padding: 0 0 30px;
  position: relative;
  z-index: 5
}

/* ==================== SERVICES (slider — styled like the testimonials section) ==================== */
.services {
  padding: 120px 0 100px;
  background: #fff;
  overflow: hidden;
  position: relative
}

.serv-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px)
}

.serv-orb-1 {
  width: 500px; height: 500px;
  top: -120px; inset-inline-start: -100px;
  background: radial-gradient(circle, rgba(42,128,125,.07) 0%, transparent 70%);
  animation: orbFloat 14s ease-in-out infinite
}

.serv-orb-2 {
  width: 380px; height: 380px;
  bottom: -80px; inset-inline-end: -60px;
  background: radial-gradient(circle, rgba(61,180,176,.05) 0%, transparent 70%);
  animation: orbFloat 18s ease-in-out infinite reverse
}

.services .wrap { position: relative; z-index: 2 }
.services .eyebrow { color: var(--teal) }
.services .eyebrow::before { background: var(--teal) }
.services .sec-head h2 { color: var(--ink) }
.services .sec-head p { color: var(--ink-soft) }

/* Stage (slider + arrows) */
.serv-stage {
  display: flex;
  align-items: center;
  gap: 20px
}

.serv-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--r-lg)
}

.serv-track {
  display: flex;
  transition: transform .35s var(--ease)
}

[dir="rtl"] .serv-stage { direction: ltr }
[dir="rtl"] .serv-card { direction: rtl }

.serv-slide {
  min-width: 100%;
  padding: 4px 8px
}

/* Arrow buttons */
.serv-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f4f8f8;
  border: 1.5px solid rgba(42,128,125,.18);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: all .35s var(--ease)
}

.serv-arrow:hover {
  background: var(--teal);
  border-color: var(--teal);
  transform: scale(1.1);
  box-shadow: 0 0 28px rgba(42,128,125,.5)
}

.serv-arrow svg { width: 20px; height: 20px }

/* CARD */
.serv-card {
  background: #fff;
  border-radius: var(--r-lg);
  max-width: 900px;
  margin: 0 auto;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 360px;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(42,128,125,.1),
    0 16px 48px -12px rgba(42,128,125,.15),
    0 4px 16px -4px rgba(0,0,0,.06);
  animation: cardEntry .7s var(--ease) both;
  transition: transform .4s var(--ease)
}

.serv-card:hover { transform: translateY(-4px) }

/* Decorative top accent line */
.serv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 3;
  background: linear-gradient(90deg, var(--teal), #3abfbb, var(--teal-deep))
}

.serv-card .ph {
  position: relative;
  overflow: hidden;
  background: var(--teal-light)
}

.serv-card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease)
}

.serv-card:hover .ph img { transform: scale(1.06) }

.serv-card .body {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.serv-num {
  font-family: var(--f-num);
  font-size: .8rem;
  color: var(--teal);
  letter-spacing: .15em;
  font-weight: 600
}

.serv-card h3 {
  font-size: 1.5rem;
  margin: 12px 0 0;
  color: var(--ink)
}

.serv-card p {
  color: var(--ink-soft);
  font-size: .96rem;
  line-height: 1.8;
  margin-top: 14px
}

.serv-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: .88rem;
  font-weight: 600;
  margin-top: 20px
}

.serv-more svg {
  width: 16px;
  height: 16px;
  transition: transform .3s
}

.serv-card:hover .serv-more svg { transform: translateX(4px) }
[dir="rtl"] .serv-card:hover .serv-more svg { transform: translateX(-4px) }

/* Footer: dots + counter */
.serv-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 44px
}

.serv-nav { display: flex; gap: 8px; align-items: center }

.serv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(42,128,125,.18);
  cursor: pointer;
  transition: all .4s var(--ease);
  border: none
}

.serv-dot.active {
  background: var(--teal);
  width: 32px;
  border-radius: 100px;
  box-shadow: 0 0 12px rgba(42,128,125,.7)
}

.serv-dot:hover:not(.active) { background: rgba(42,128,125,.35) }

.serv-counter {
  font-size: .82rem;
  color: var(--ink-soft);
  font-family: var(--f-num);
  min-width: 48px;
  text-align: center
}

@media(max-width:760px) {
  .serv-card { grid-template-columns: 1fr; min-height: 0 }
  .serv-card .ph { height: 200px }
  .serv-card .body { padding: 28px 26px }
}

@media(max-width:900px) {
  .serv-stage { gap: 12px }
  .serv-arrow { width: 44px; height: 44px }
}

@media(max-width:600px) {
  .serv-stage { gap: 8px }
  .serv-arrow { width: 38px; height: 38px }
  .serv-arrow svg { width: 16px; height: 16px }
}

.serv-card:hover .serv-more svg {
  transform: translateX(-5px)
}

/* ==================== ABOUT / WHY ==================== */
.about {
  padding: 120px 0;
  background: var(--paper-2);
  overflow: hidden
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center
}

.about-media {
  position: relative
}

.about-media .main-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 520px;
  box-shadow: var(--shadow-md)
}

.about-media .sub-img {
  position: absolute;
  bottom: -36px;
  inset-inline-end: -36px;
  width: 56%;
  height: 260px;
  border-radius: var(--r);
  overflow: hidden;
  border: 8px solid var(--paper-2);
  box-shadow: var(--shadow-md)
}

.about-badge {
  position: absolute;
  top: 32px;
  inset-inline-start: -24px;
  background: var(--teal);
  color: #fff;
  border-radius: 20px;
  padding: 22px 26px;
  box-shadow: var(--shadow-md);
  text-align: center
}

.about-badge b {
  font-family: var(--f-num);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
  display: block
}

.about-badge span {
  font-size: .82rem;
  color: #d4ece9;
  display: block;
  margin-top: 6px
}

.about-txt h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 22px
}

.about-txt>p {
  color: var(--ink-soft);
  font-size: 1.06rem;
  margin-bottom: 30px
}

.vm {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
  padding: 22px;
  background: #fff;
  border-radius: var(--r);
  border: 1px solid var(--line);
  transition: all .4s var(--ease)
}

.vm:hover {
  border-color: var(--teal);
  transform: translateX(-6px);
  box-shadow: var(--shadow-sm)
}

.vm-ic {
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 14px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center
}

.vm-ic svg {
  width: 26px;
  height: 26px;
  color: var(--teal)
}

.vm h4 {
  font-size: 1.15rem;
  margin-bottom: 6px
}

.vm p {
  color: var(--muted);
  font-size: .92rem
}

/* ==================== STATS ==================== */
.stats {
  padding: 100px 0;
  background: linear-gradient(140deg, var(--teal-deep), var(--teal-darker));
  color: #fff;
  position: relative;
  overflow: hidden
}

.stats::before {
  content: "";
  position: absolute;
  top: -120px;
  inset-inline-start: -60px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--teal);
  filter: blur(60px);
  opacity: .3
}

.stats-badge-wrap {
  text-align: center;
  margin-bottom: 44px;
  position: relative;
  z-index: 2
}

.stats-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: .85rem;
  font-weight: 600;
  color: #eafffb
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7fd8d3;
  position: relative;
  flex: none
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid #7fd8d3;
  animation: pulseDot 1.8s ease-out infinite
}

@keyframes pulseDot {
  0% {
    transform: scale(.6);
    opacity: 1
  }

  100% {
    transform: scale(2.2);
    opacity: 0
  }
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2
}

.stat {
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  padding: 30px 16px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  transition: transform .4s var(--ease), background .4s
}

.stat:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-4px)
}

.stat b {
  font-family: var(--f-num);
  font-size: clamp(2.4rem, 4.6vw, 3.4rem);
  font-weight: 600;
  line-height: 1;
  color: #fff;
  display: block
}

.stat span {
  color: #bfe3df;
  margin-top: 12px;
  display: block;
  font-size: .94rem
}


/* ==================== TEAM ==================== */
.team {
  padding: 120px 0;
  background: var(--paper)
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.doc {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper-2);
  cursor: pointer;
  transition: all .5s var(--ease);
  border: 1px solid var(--line)
}

.doc:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent
}

.doc-img {
  height: 320px;
  position: relative;
  overflow: hidden
}

.doc-img .ph {
  position: absolute;
  inset: 0
}

.doc:hover .doc-img .ph img {
  transform: scale(1.06)
}

.doc-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 26, 25, .55), transparent 50%)
}

.doc-social {
  position: absolute;
  bottom: 16px;
  inset-inline-start: 16px;
  z-index: 3;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(12px);
  transition: all .45s var(--ease)
}

.doc:hover .doc-social {
  opacity: 1;
  transform: translateY(0)
}

.doc-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: all .3s
}

.doc-social a:hover {
  background: var(--teal);
  color: #fff
}

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

.doc-body {
  padding: 22px
}

.doc-body .spec {
  font-family: var(--f-num);
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--teal);
  text-transform: uppercase;
  font-weight: 600
}

.doc-body h3 {
  font-size: 1.28rem;
  margin: 8px 0 4px
}

.doc-body p {
  color: var(--muted);
  font-size: .88rem
}

.doc-view {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-size: .85rem;
  font-weight: 600
}

.doc-view svg {
  width: 15px;
  height: 15px;
  transition: transform .3s
}

.doc:hover .doc-view svg {
  transform: translateX(-4px)
}

/* ==================== SERVICES DETAIL LIST ==================== */
.svc-list {
  padding: 120px 0;
  background: var(--teal-darker);
  color: #fff;
  overflow: hidden
}

.svc-list .eyebrow {
  color: #7fd8d3
}

.svc-list .eyebrow::before {
  background: #7fd8d3
}

.svc-list .sec-head h2 {
  color: #fff
}

.svc-list .sec-head p {
  color: #a9c4c1
}

.svc-rows {
  border-top: 1px solid rgba(255, 255, 255, .12)
}

.svc-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 30px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  transition: all .5s var(--ease);
  cursor: pointer;
  position: relative
}

.svc-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .04);
  opacity: 0;
  transition: opacity .4s;
  border-radius: 14px
}

.svc-row:hover::before {
  opacity: 1
}

.svc-row:hover {
  padding-inline-start: 24px
}

.svc-row>* {
  position: relative;
  z-index: 2
}

.svc-row .n {
  font-family: var(--f-num);
  font-size: 1rem;
  color: #7fd8d3;
  font-weight: 600
}

.svc-row .t h3 {
  font-size: 1.45rem;
  color: #fff;
  margin-bottom: 6px;
  transition: color .4s
}

.svc-row:hover .t h3 {
  color: #7fd8d3
}

.svc-row .t p {
  color: #a9c4c1;
  font-size: .94rem;
  max-width: 560px
}

.svc-row .arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .45s var(--ease)
}

.svc-row:hover .arrow {
  background: var(--teal);
  border-color: var(--teal);
  transform: rotate(-45deg)
}

.svc-row .arrow svg {
  width: 20px;
  height: 20px;
  color: #fff
}

.svc-row--hidden {
  display: none
}

.svc-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px
}

.svc-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .3s, border-color .3s
}

.svc-more-btn svg {
  width: 18px;
  height: 18px;
  transition: transform .35s var(--ease)
}

.svc-more-btn:hover {
  background: var(--teal);
  border-color: var(--teal)
}

.svc-more-btn.open svg {
  transform: rotate(180deg)
}

/* ==================== SUBSCRIPTION PLANS ==================== */
.plans {
  padding: 110px 0;
  background: var(--paper-2)
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease)
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-2)
}

.plan-card.featured {
  background: linear-gradient(160deg, var(--teal-deep), var(--teal-darker));
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: scale(1.04)
}

.plan-card.featured:hover {
  transform: scale(1.04) translateY(-8px)
}

.plan-badge {
  position: absolute;
  inset-inline-end: 28px;
  top: -14px;
  background: var(--teal);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm)
}

.plan-card.featured .plan-badge {
  background: #fff;
  color: var(--teal-deep)
}

.plan-head h3 {
  font-family: var(--f-disp);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px
}

.plan-card.featured .plan-head h3 {
  color: #fff
}

.plan-head p {
  font-size: .88rem;
  color: var(--muted);
  margin: 0
}

.plan-card.featured .plan-head p {
  color: rgba(255, 255, 255, .72)
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 22px 0;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line)
}

.plan-card.featured .plan-price {
  border-color: rgba(255, 255, 255, .18)
}

.plan-price b {
  font-family: var(--f-num);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--teal-deep);
  line-height: 1
}

.plan-card.featured .plan-price b {
  color: #fff
}

.plan-price span {
  font-size: .84rem;
  color: var(--muted)
}

.plan-card.featured .plan-price span {
  color: rgba(255, 255, 255, .72)
}

.plan-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  color: var(--ink-soft)
}

.plan-card.featured .plan-features li {
  color: rgba(255, 255, 255, .88)
}

.plan-features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--teal)
}

.plan-card.featured .plan-features li svg {
  color: #fff
}

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

.plan-card.featured .plan-cta.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .35)
}

@media (max-width: 992px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr)
  }
  .plan-card.featured {
    transform: none
  }
  .plan-card.featured:hover {
    transform: translateY(-8px)
  }
}

@media (max-width: 640px) {
  .plans-grid {
    grid-template-columns: 1fr
  }
}

/* ==================== INSURANCE ==================== */
.insurance {
  padding: 110px 0;
  background: var(--paper)
}

.ins-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px
}

.ins-card {
  aspect-ratio: 16/10;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .45s var(--ease), box-shadow .45s, border-color .45s;
  animation: insFloat 6s ease-in-out infinite
}

.ins-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  box-shadow: 0 0 0 0 var(--teal-glow);
  opacity: 0;
  pointer-events: none
}

.ins-card:hover::before {
  animation: insPulseRing 1.3s ease-out infinite
}

@keyframes insPulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(42, 128, 125, .45);
    opacity: 1
  }

  100% {
    box-shadow: 0 0 0 20px rgba(42, 128, 125, 0);
    opacity: 0
  }
}

.ins-card:nth-child(2n) {
  animation-delay: .8s
}

.ins-card:nth-child(3n) {
  animation-delay: 1.6s
}

.ins-card:nth-child(4n) {
  animation-delay: 2.4s
}

@keyframes insFloat {

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

  50% {
    transform: translateY(-7px)
  }
}

.ins-card:hover {
  transform: translateY(-9px) scale(1.05);
  box-shadow: var(--shadow-md);
  border-color: var(--teal)
}

.ins-card .ins-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r);
  transition: transform .35s var(--ease)
}

.ins-card:hover .ins-logo {
  transform: scale(1.08)
}

.ins-card b {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  text-align: center;
  width: 100%;
  padding: 0 14px;
  transition: color .35s var(--ease), transform .35s var(--ease)
}

.ins-card small {
  font-family: var(--f-num);
  font-size: .68rem;
  color: var(--muted);
  margin-top: 4px;
  text-align: center;
  width: 100%;
  padding: 0 10px;
  transition: color .35s var(--ease)
}

/* show only the first 2 rows; the rest are reachable via the "show more" modal */
.ins-grid .ins-card:nth-child(n+13) { display: none; }

.ins-card:hover b {
  color: var(--teal);
  font-weight: 800;
  transform: scale(1.08)
}

.ins-card:hover small {
  color: var(--teal-deep)
}

@media(max-width:900px) {
  .ins-grid {
    grid-template-columns: repeat(3, 1fr)
  }
  .ins-grid .ins-card:nth-child(n+7) { display: none; }
}

@media(max-width:480px) {
  .ins-grid {
    grid-template-columns: repeat(2, 1fr)
  }
  .ins-grid .ins-card:nth-child(n+5) { display: none; }
}

/* ── "Show more" button + full-list modal ─────────────── */
.ins-more-wrap { display:flex; justify-content:center; margin-top:30px; }

.modal-card.ins-modal-card { display:block; max-width:960px; overflow-x:hidden; }

/* ── Video player modal ────────────────────────────────── */
.modal-card.video-modal-card { display:block; max-width:960px; background:#000; }
.video-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background:#000;
}
.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-modal-card .modal-close {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.video-modal-card .modal-close:hover { background: var(--teal); }

.ins-modal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  overflow-x: hidden;
}

/* cancel the mobile ".ins-card{min-width:170px}" floor — inside the (narrower) modal
   it must be free to shrink so cards wrap onto new rows instead of overflowing sideways */
.ins-modal-grid .ins-card { min-width: 0; }

@media(max-width:700px) {
  .ins-modal-grid { grid-template-columns: repeat(3, 1fr); }
}

@media(max-width:480px) {
  .ins-modal-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==================== VIDEOS ==================== */
.videos {
  padding: 120px 0;
  background: var(--paper-2)
}

.vid-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px
}

.vid-col {
  display: grid;
  gap: 24px
}

.vid-grid--all {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.vid-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px
}

.vid {
  position: relative;
  display: block;
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  border: none;
  background: #0d1a19;
  padding: 0;
  margin: 0;
  text-align: start;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
  appearance: none
}

.vid.main { min-height: 440px }
.vid.small { min-height: 207px }
.vid-grid--all .vid { aspect-ratio: 16/9 }

.vid .ph {
  position: absolute;
  inset: 0;
  z-index: 0
}

.vid .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease)
}

.vid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,26,25,.88) 0%, rgba(13,26,25,.2) 55%, transparent 100%);
  z-index: 1;
  transition: background .4s
}

.vid:hover::after {
  background: linear-gradient(to top, rgba(13,26,25,.92) 0%, rgba(42,128,125,.28) 60%, transparent 100%)
}

.vid:hover .ph img {
  transform: scale(1.06)
}

.vid-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s var(--ease);
  box-shadow: 0 4px 24px rgba(0,0,0,.25)
}

.vid:hover .vid-play {
  background: var(--teal);
  transform: translate(-50%,-50%) scale(1.1)
}

.vid-play svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
  transition: color .3s;
  margin-inline-start: 3px
}

.vid:hover .vid-play svg {
  color: #fff
}

.vid-info {
  position: absolute;
  bottom: 20px;
  inset-inline-start: 20px;
  inset-inline-end: 20px;
  z-index: 3;
  color: #fff
}

.vid-info .tag {
  font-family: var(--f-num);
  font-size: .7rem;
  letter-spacing: .1em;
  color: #7fd8d3;
  font-weight: 600;
  text-transform: uppercase
}

.vid-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 6px;
  color: #fff;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

@media(max-width:900px) {
  .vid-grid { grid-template-columns: 1fr }
  .vid-col { display: grid; grid-template-columns: repeat(2,1fr) }
  .vid-grid--all { grid-template-columns: repeat(2,1fr) }
}

@media(max-width:560px) {
  .vid-col { grid-template-columns: 1fr }
  .vid-grid--all { grid-template-columns: 1fr }
}

/* ==================== LOCATIONS ==================== */
.locations {
  padding: 120px 0;
  background: var(--paper)
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: start
}

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

.loc-card {
  padding: 26px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all .45s var(--ease);
  background: var(--paper);
  position: relative;
  overflow: hidden
}

.loc-card::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  bottom: 0;
  width: 4px;
  background: var(--teal);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .45s var(--ease)
}

.loc-card:hover,
.loc-card.active {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm)
}

.loc-card:hover::before,
.loc-card.active::before {
  transform: scaleY(1)
}

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

.loc-card h3 {
  font-size: 1.35rem
}

.loc-card .lc-badge {
  font-family: var(--f-num);
  font-size: .68rem;
  letter-spacing: .1em;
  background: var(--teal-light);
  color: var(--teal-deep);
  padding: 5px 12px;
  border-radius: 100px;
  font-weight: 600
}

.loc-detail {
  display: flex;
  gap: 12px;
  color: var(--ink-soft);
  font-size: .92rem;
  margin-top: 8px;
  align-items: flex-start
}

.loc-detail svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex: none;
  margin-top: 3px
}

.loc-map {
  position: sticky;
  top: 100px;
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 560px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line)
}

.loc-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.2) contrast(1.05)
}

/* ==================== TESTIMONIALS ==================== */
/* ==================== TESTIMONIALS ==================== */
.testi {
  padding: 120px 0 100px;
  background: linear-gradient(145deg, var(--teal-darker) 0%, #091918 45%, #0e2e2c 70%, var(--teal-deep) 100%);
  color: #fff;
  overflow: hidden;
  position: relative
}

/* Floating orbs */
.testi-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px)
}

.testi-orb-1 {
  width: 500px; height: 500px;
  top: -120px; inset-inline-start: -100px;
  background: radial-gradient(circle, rgba(42,128,125,.22) 0%, transparent 70%);
  animation: orbFloat 14s ease-in-out infinite
}

.testi-orb-2 {
  width: 380px; height: 380px;
  bottom: -80px; inset-inline-end: -60px;
  background: radial-gradient(circle, rgba(61,180,176,.18) 0%, transparent 70%);
  animation: orbFloat 18s ease-in-out infinite reverse
}

.testi-orb-3 {
  width: 260px; height: 260px;
  top: 50%; inset-inline-start: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(42,128,125,.08) 0%, transparent 70%);
  animation: orbPulse 8s ease-in-out infinite
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1) }
  50%       { transform: translateY(-40px) scale(1.08) }
}

@keyframes orbPulse {
  0%, 100% { opacity: .6; transform: translate(-50%,-50%) scale(1) }
  50%       { opacity: 1;  transform: translate(-50%,-50%) scale(1.3) }
}

.testi-wrap {
  position: relative;
  z-index: 2
}

/* Header */
.testi-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-bottom: 60px
}

.testi-eyebrow {
  color: #7fd8d3;
  justify-content: center
}

.testi-eyebrow::before {
  background: #7fd8d3
}

.testi .sec-head h2 {
  color: #fff
}

/* Rating badge */
.testi-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50px;
  padding: 10px 22px;
  backdrop-filter: blur(10px)
}

.testi-badge-stars {
  color: #fbbf24;
  font-size: 1.5rem;
  letter-spacing: 2px
}

.testi-badge-info strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--f-num);
  line-height: 1
}

.testi-badge-info span {
  font-size: .98rem;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
  display: block
}

/* Stage (slider + arrows) */
.testi-stage {
  display: flex;
  align-items: center;
  gap: 20px
}

.testi-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--r-lg)
}

/* Track */
.testi-track {
  display: flex;
  transition: transform .35s var(--ease)
}

/* Keep arrow positions and slide-flow direction identical in Arabic and English —
   only the card's own text content should stay RTL-aligned for Arabic. */
[dir="rtl"] .testi-stage {
  direction: ltr;
}

[dir="rtl"] .testi-card {
  direction: rtl;
}

.testi-slide {
  min-width: 100%;
  padding: 4px 8px
}

/* Arrow buttons */
.testi-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.09);
  border: 1.5px solid rgba(255,255,255,.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: all .35s var(--ease);
  backdrop-filter: blur(8px)
}

.testi-arrow:hover {
  background: var(--teal);
  border-color: var(--teal);
  transform: scale(1.1);
  box-shadow: 0 0 28px rgba(42,128,125,.5)
}

.testi-arrow svg {
  width: 20px;
  height: 20px
}

/* CARD */
.testi-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 48px 52px;
  max-width: 800px;
  margin: 0 auto;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(42,128,125,.06),
    0 24px 80px -16px rgba(6,18,17,.55),
    0 8px 32px -8px rgba(42,128,125,.2);
  animation: cardEntry .7s var(--ease) both
}

@keyframes cardEntry {
  from { opacity: 0; transform: translateY(24px) scale(.98) }
  to   { opacity: 1; transform: translateY(0) scale(1) }
}

/* Decorative top accent line */
.testi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), #3abfbb, var(--teal-deep))
}

/* Watermark quote */
.testi-wm-q {
  position: absolute;
  top: 12px;
  inset-inline-end: 28px;
  font-size: 10rem;
  line-height: 1;
  color: var(--teal-light);
  opacity: .35;
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
  transition: opacity .3s
}

.testi-card:hover .testi-wm-q {
  opacity: .5
}

/* Stars */
.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px
}

.testi-star {
  font-size: 1.3rem;
  color: var(--line-2);
  display: inline-block;
  transition: color .3s, transform .3s;
  transition-delay: var(--d, 0ms)
}

.testi-star--on {
  color: #f59e0b;
  animation: starPop .5s var(--d, 0ms) both
}

@keyframes starPop {
  0%   { transform: scale(0) rotate(-20deg); color: var(--line-2) }
  60%  { transform: scale(1.35) rotate(5deg) }
  100% { transform: scale(1) rotate(0); color: #f59e0b }
}

/* Quote text */
.testi-quote {
  font-family: var(--f-disp);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.85;
  margin: 0 0 28px;
  position: relative
}

/* Pills (doctor / procedure) */
.testi-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px
}

.testi-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--paper-2);
  border: 1.5px solid var(--line);
  border-radius: 30px;
  padding: 5px 14px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-soft)
}

.testi-pill svg {
  width: 13px;
  height: 13px;
  color: var(--teal);
  flex-shrink: 0
}

.testi-pill--alt {
  background: var(--teal-light);
  border-color: rgba(42,128,125,.2);
  color: var(--teal-deep)
}

/* Author row */
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap
}

/* Avatar */
.testi-av-wrap {
  position: relative;
  flex-shrink: 0
}

.testi-av-wrap .av {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--teal-light);
  border: 3px solid transparent;
  outline: 2px solid var(--teal);
  outline-offset: 2px
}

.testi-av-wrap .av::after {
  padding: 0;
  font-size: .85rem;
  font-weight: 700;
  color: var(--teal-deep)
}

.testi-verified-dot {
  position: absolute;
  bottom: -2px;
  inset-inline-end: -2px;
  width: 20px;
  height: 20px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center
}

.testi-verified-dot svg {
  width: 10px;
  height: 10px;
  fill: #fff
}

/* Author meta */
.testi-meta {
  flex: 1;
  min-width: 0
}

.testi-meta strong {
  display: block;
  font-family: var(--f-disp);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink)
}

.testi-meta span {
  font-size: .82rem;
  color: var(--muted);
  margin-top: 2px;
  display: block
}

/* Verified label */
.testi-verified-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  font-weight: 600;
  color: #16a34a;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 20px;
  padding: 4px 10px
}

.testi-verified-label svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0
}

/* Footer: dots + counter */
.testi-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 44px
}

.testi-nav {
  display: flex;
  gap: 8px;
  align-items: center
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  cursor: pointer;
  transition: all .4s var(--ease);
  border: none
}

.testi-dot.active {
  background: var(--teal);
  width: 32px;
  border-radius: 100px;
  box-shadow: 0 0 12px rgba(42,128,125,.7)
}

.testi-dot:hover:not(.active) {
  background: rgba(255,255,255,.4)
}

.testi-counter {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  font-family: var(--f-num);
  min-width: 48px;
  text-align: center
}

/* ==================== ARTICLES ==================== */
.articles {
  padding: 120px 0;
  background: var(--paper)
}

.art-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px
}

.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px
}

.art {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: all .5s var(--ease);
  cursor: pointer
}

.art:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent
}

.art-img {
  height: 230px;
  position: relative;
  overflow: hidden
}

.art-img .ph {
  position: absolute;
  inset: 0
}

.art:hover .art-img .ph img {
  transform: scale(1.07)
}

.art-cat {
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  z-index: 3;
  background: rgba(255, 255, 255, .94);
  color: var(--teal-deep);
  font-size: .74rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--f-num);
  letter-spacing: .03em
}

.art-body {
  padding: 26px
}

.art-meta {
  display: flex;
  gap: 14px;
  color: var(--muted);
  font-size: .8rem;
  margin-bottom: 12px
}

.art-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px
}

.art-meta svg {
  width: 14px;
  height: 14px;
  color: var(--teal)
}

.art-body h3 {
  font-size: 1.28rem;
  line-height: 1.4;
  transition: color .3s;
  color:var(--teal)
}

.art:hover .art-body h3 {
  color: var(--teal)
}

.art-body p {
  color: var(--muted);
  font-size: .9rem;
  margin-top: 10px
}

.art-read {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal);
  font-weight: 600;
  font-size: .88rem
}

.art-read svg {
  width: 15px;
  height: 15px;
  transition: transform .3s
}

.art:hover .art-read svg {
  transform: translateX(-4px)
}

/* ==================== INNER PAGES (blog list / detail) ==================== */
.page-head {
  padding: 170px 0 60px;
  background: linear-gradient(180deg, #f4faf9, var(--paper));
  text-align: center
}

.page-head h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-top: 10px
}

.page-head .crumbs {
  margin-top: 14px;
  color: var(--muted);
  font-size: .85rem
}

.page-head .crumbs a {
  color: var(--teal)
}

.page-section {
  padding: 70px 0
}

.pager {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 46px
}

/* ==================== FAQ ==================== */
.faq {
  padding: 120px 0;
  background: var(--paper-2)
}

.faq-page-grid {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 60px;
  align-items: start
}

@media(max-width:900px) {
  .faq-page-grid { grid-template-columns: 1fr }
  .faq-page-grid .faq-side { order: -1 }
}

.faq-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  align-items: start
}

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

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: all .4s var(--ease)
}

.faq-item.open {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm)
}

.faq-q {
  width: 100%;
  text-align: start;
  padding: 24px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink)
}

.faq-q .ic {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 10px;
  background: var(--paper-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s var(--ease)
}

.faq-item.open .faq-q .ic {
  background: var(--teal);
  transform: rotate(135deg)
}

.faq-q .ic svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  transition: color .3s
}

.faq-item.open .faq-q .ic svg {
  color: #fff
}

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

.faq-a p {
  padding: 0 26px 26px;
  color: var(--ink-soft);
  font-size: .95rem
}

.faq-side {
  background: linear-gradient(145deg, var(--teal-deep) 0%, #155250 45%, var(--teal-darker) 100%, var(--teal-deep) 140%);
  background-size: 250% 250%;
  animation: faqGlow 12s ease-in-out infinite;
  border-radius: var(--r-lg);
  padding: 44px 40px;
  color: #fff;
  position: sticky;
  top: 100px;
  overflow: hidden;
  box-shadow: 0 20px 60px -12px rgba(13, 60, 58, .4)
}

@keyframes faqGlow {
  0% {
    background-position: 0% 50%;
    box-shadow: 0 20px 60px -12px rgba(13, 60, 58, .4), 0 0 0 0 rgba(127, 216, 211, 0)
  }

  50% {
    background-position: 100% 50%;
    box-shadow: 0 20px 60px -12px rgba(13, 60, 58, .4), 0 0 55px 6px rgba(127, 216, 211, .18)
  }

  100% {
    background-position: 0% 50%;
    box-shadow: 0 20px 60px -12px rgba(13, 60, 58, .4), 0 0 0 0 rgba(127, 216, 211, 0)
  }
}

/* Shine sweep */
.faq-side::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      transparent 35%,
      rgba(255, 255, 255, .16) 48%,
      rgba(255, 255, 255, .28) 50%,
      rgba(255, 255, 255, .16) 52%,
      transparent 65%);
  transform: translateX(-120%);
  animation: faqShine 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0
}

@keyframes faqShine {
  0% {
    transform: translateX(-120%)
  }

  35%,
  100% {
    transform: translateX(120%)
  }
}

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

  .faq-side,
  .faq-side::before {
    animation: none
  }
}

.faq-side h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1
}

.faq-side>p {
  color: rgba(255,255,255,.65);
  font-size: .92rem;
  line-height: 1.75;
  margin-bottom: 28px;
  position: relative;
  z-index: 1
}

.faq-side .contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  position: relative;
  z-index: 1;
  transition: padding-inline-start .3s var(--ease);
  width: 100%;
  background: none;
  border-inline: none;
  border-bottom: none;
  text-align: start;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.faq-side button.contact-line {
  cursor: pointer;
}

.faq-side .contact-line:hover {
  padding-inline-start: 6px
}

.faq-side .contact-line svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  color: #7fd8d3;
  flex: none;
  transition: background .3s
}

.faq-side .contact-line:hover svg {
  background: rgba(255,255,255,.18)
}

.faq-side .contact-line b {
  display: block;
  font-size: .98rem;
  color: #fff
}

.faq-side .contact-line span {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
  display: block
}

/* ==================== BOOKING ==================== */
.booking {
  padding: 120px 0;
  background: var(--paper);
  position: relative;
  overflow: hidden
}

.book-card {
  background: var(--ink);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  box-shadow: var(--shadow-lg)
}

.book-side {
  padding: 56px 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--teal-deep), var(--teal-darker))
}

.book-side::before {
  content: "";
  position: absolute;
  bottom: -80px;
  inset-inline-start: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05)
}

.book-side .eyebrow {
  color: #bce7e4
}

.book-side .eyebrow::before {
  background: #bce7e4
}

.book-side h2 {
  font-size: 2.3rem;
  color: #fff;
  margin-bottom: 18px;
  position: relative
}

.book-side>p {
  color: #cfe9e7;
  position: relative;
  margin-bottom: 34px
}

.book-feats {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px
}

.book-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start
}

.book-feat .bf-ic {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center
}

.book-feat svg {
  width: 22px;
  height: 22px;
  color: #fff
}

.book-feat b {
  display: block;
  font-size: 1rem
}

.book-feat span {
  font-size: .85rem;
  color: #cfe9e7
}

.book-form {
  padding: 52px 48px;
  background: #fff
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.field.full {
  grid-column: 1/-1
}

.field label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-2)
}

.field label .req {
  color: var(--teal)
}

.field input,
.field select,
.field textarea {
  font-family: var(--f-body);
  font-size: .95rem;
  padding: 14px 16px;
  border: 1.5px solid var(--line-2);
  border-radius: 12px;
  background: var(--paper-2);
  color: var(--ink);
  transition: all .3s;
  width: 100%
}

.field textarea {
  resize: vertical;
  min-height: 90px
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(42, 128, 125, .08)
}

.field select {
  cursor: pointer
}

.book-form .btn {
  width: 100%;
  margin-top: 8px
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px
}

.form-success.show {
  display: block;
  animation: fadeUp .5s var(--ease)
}

.form-success .check {
  width: 76px;
  height: 76px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center
}

.form-success .check svg {
  width: 38px;
  height: 38px;
  color: var(--teal)
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 10px
}

.form-success p {
  color: var(--muted)
}

/* ==================== CAREERS ==================== */
.careers {
  padding: 110px 0;
  background: var(--paper-2)
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px
}

.career-grid--single {
  grid-template-columns: 1fr;
}

.career-grid--single .job {
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}

/* explicit placement — without it, auto-placement scatters these 4 siblings
   across a 2x2 grid instead of stacking the text in col 1 and the action in col 2 */
.career-grid--single .job-type { grid-column: 1; grid-row: 1; margin-bottom: 6px; }
.career-grid--single .job h3   { grid-column: 1; grid-row: 2; font-size: 1.5rem; margin: 4px 0 10px; }
.career-grid--single .job p    { grid-column: 1; grid-row: 3; margin-bottom: 0; max-width: 640px; }

.career-grid--single .job-foot {
  grid-column: 2;
  grid-row: 1 / span 3;
  border-top: none;
  padding-top: 0;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.career-grid--single .job-apply {
  background: var(--teal);
  color: #fff;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
}

.career-grid--single .job-apply:hover { background: var(--teal-deep); }

@media(max-width:700px) {
  .career-grid--single .job {
    grid-template-columns: 1fr;
    padding: 32px 26px;
  }
  .career-grid--single .job-type,
  .career-grid--single .job h3,
  .career-grid--single .job p,
  .career-grid--single .job-foot {
    grid-column: 1;
    grid-row: auto;
  }
  .career-grid--single .job-foot { align-items: flex-start; margin-top: 18px; }
}

.job {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  transition: all .45s var(--ease)
}

.job:hover {
  border-color: var(--teal);
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm)
}

.job-type {
  font-family: var(--f-num);
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--teal);
  text-transform: uppercase;
  font-weight: 600
}

.job h3 {
  font-size: 1.25rem;
  margin: 10px 0 8px
}

.job p {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 18px
}

.job-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line)
}

.job-foot .loc {
  color: var(--ink-soft);
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: 6px
}

.job-foot svg {
  width: 15px;
  height: 15px;
  color: var(--line);
}

.job-apply {
  color: var(--teal);
  font-weight: 600;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.job-apply svg {
  transition: transform .3s
}

.job:hover .job-apply svg {
  transform: translateX(-4px)
}

.job--hidden { display: none }

.career-more-wrap { display: flex; justify-content: center; margin-top: 30px }

/* ==================== CTA BANNER ==================== */
.cta-band {
  padding: 100px 0 130px;
  background: var(--paper-2)
}

.cta-inner {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 70px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(135deg, var(--teal-darker), var(--ink))
}

.cta-inner::before,
.cta-inner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-glow), transparent 70%)
}

.cta-inner::before {
  top: -120px;
  inset-inline-start: -80px;
  width: 340px;
  height: 340px
}

.cta-inner::after {
  bottom: -120px;
  inset-inline-end: -80px;
  width: 300px;
  height: 300px;
  opacity: .6
}

.cta-inner>* {
  position: relative;
  z-index: 2
}

.cta-pulse {
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  z-index: 1;
  pointer-events: none
}

.cta-pulse span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--teal);
  opacity: .5;
  animation: ctaPulse 3.6s ease-out infinite
}

.cta-pulse span:nth-child(2) {
  animation-delay: 1.2s
}

.cta-pulse span:nth-child(3) {
  animation-delay: 2.4s
}

@keyframes ctaPulse {
  0% {
    transform: scale(1);
    opacity: .5
  }

  100% {
    transform: scale(30);
    opacity: 0
  }
}

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  max-width: 640px;
  margin: 0 auto 16px
}

.cta-inner p {
  color: #bcd4d1;
  max-width: 520px;
  margin: 0 auto 32px
}

.cta-inner .cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap
}

@media (prefers-reduced-motion: reduce) {
  .cta-pulse span {
    animation: none;
    opacity: .12
  }
}

/* ==================== FOOTER ==================== */
/* ==================== FOOTER ==================== */
.site-footer {
  position: relative;
  background: #fff;
  color: var(--ink-soft)
}

/* Wave top */
.foot-wave {
  display: block;
  line-height: 0;
  overflow: hidden;
  background: #fff
}

.foot-wave svg {
  display: block;
  width: 100%;
  height: 72px
}

/* Inner body */
.foot-inner {
  padding: 64px 0 56px;
  background: #fff
}

/* Grid */
.foot-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1.5px solid var(--line)
}

/* Brand column */
.foot-logo-link {
  display: inline-block;
  margin-bottom: 20px
}

.foot-logo-img {
  display: block;
  height: 72px;
  width: auto;
  max-width: 200px;
  object-fit: contain
}

.foot-brand-desc {
  font-size: .9rem;
  line-height: 1.85;
  color: var(--ink-soft);
  max-width: 300px;
  margin-bottom: 24px
}

.foot-book-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  font-size: .84rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 24px;
  transition: background .3s, transform .3s, box-shadow .3s;
  box-shadow: 0 4px 18px rgba(42,128,125,.28)
}

.foot-book-cta:hover {
  background: var(--teal-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(42,128,125,.38);
  color: #fff
}

.foot-book-cta svg {
  width: 16px;
  height: 16px
}

/* Social */
.foot-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.foot-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--paper-3);
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: all .32s var(--ease)
}

.foot-social a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(42,128,125,.28)
}

.foot-social svg {
  width: 17px;
  height: 17px
}

/* Columns */
.foot-col-title {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--f-disp);
  margin-bottom: 20px;
  padding-bottom: 12px;
  position: relative
}

.foot-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  border-radius: 3px
}

.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px
}

.foot-col a {
  font-size: .88rem;
  color: var(--ink-soft);
  transition: color .28s, padding .28s var(--ease);
  display: inline-block
}

.foot-col a:hover {
  color: var(--teal);
  padding-inline-start: 6px
}

/* Contact list */
.foot-contact {
  gap: 16px !important
}

.foot-contact li {
  display: flex;
  gap: 12px;
  font-size: .88rem;
  align-items: flex-start
}

.foot-contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.foot-contact-icon svg {
  width: 16px;
  height: 16px;
  color: var(--teal)
}

.foot-contact span,
.foot-contact a {
  color: var(--ink-soft);
  font-size: .88rem;
  line-height: 1.55;
  padding-top: 6px;
  transition: color .25s
}

.foot-contact a:hover {
  color: var(--teal)
}

/* Bottom bar */
.foot-bottom-wrap {
  background: var(--paper-2);
  border-top: 1.5px solid var(--line)
}

.foot-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px
}

.foot-copy {
  font-size: .82rem;
  color: var(--muted)
}

.foot-legal {
  display: flex;
  align-items: center;
  gap: 14px
}

.foot-legal a {
  font-size: .82rem;
  color: var(--muted);
  transition: color .25s
}

.foot-legal a:hover {
  color: var(--teal)
}

.foot-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--line-2);
  flex-shrink: 0
}

/* ==================== MODAL ==================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all .4s var(--ease)
}

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

.modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(13, 26, 25, .75);
  backdrop-filter: blur(6px)
}

.modal-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  max-width: 840px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 2;
  transform: translateY(30px) scale(.97);
  transition: transform .5s var(--ease);
  display: grid;
  grid-template-columns: .85fr 1.15fr
}

.modal.open .modal-card {
  transform: translateY(0) scale(1)
}

.modal-img {
  position: relative;
  min-height: 100%;
  overflow: hidden
}

.modal-img .ph {
  position: absolute;
  inset: 0
}

.modal-body {
  padding: 44px
}

.modal-close {
  position: absolute;
  top: 18px;
  inset-inline-end: 18px;
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all .3s
}

.modal-close:hover {
  background: var(--teal);
  color: #fff;
  transform: rotate(90deg)
}

.modal-close svg {
  width: 20px;
  height: 20px
}

.modal-body .spec {
  font-family: var(--f-num);
  font-size: .74rem;
  letter-spacing: .12em;
  color: var(--teal);
  text-transform: uppercase;
  font-weight: 600
}

.modal-body h3 {
  font-size: 1.8rem;
  margin: 8px 0 4px
}

.modal-body .modal-sub {
  color: var(--muted);
  margin-bottom: 24px
}

.modal-section {
  margin-bottom: 22px
}

.modal-section h4 {
  font-size: 1rem;
  color: var(--teal-deep);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px
}

.modal-section h4 svg {
  width: 17px;
  height: 17px
}

.modal-section p,
.modal-section li {
  color: var(--ink-soft);
  font-size: .92rem
}

.modal-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.modal-section li {
  display: flex;
  gap: 8px;
  align-items: flex-start
}

.modal-section li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex: none;
  margin-top: 9px
}

.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px
}

.modal-tags span {
  background: var(--teal-light);
  color: var(--teal-deep);
  font-size: .8rem;
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 500
}

/* ==================== SUBSCRIPTION CHECKOUT MODAL ==================== */
.sub-modal-card {
  display: block;
  max-width: 460px
}

.sub-plan-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 14px 18px;
  margin-bottom: 22px;
  font-weight: 700;
  color: var(--ink)
}

.sub-plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--teal-deep);
  font-family: var(--f-num)
}

.sub-plan-price b {
  font-size: 1.3rem
}

.sub-plan-price small {
  font-size: .74rem;
  color: var(--muted);
  font-weight: 500
}

.sub-step h3 {
  font-family: var(--f-disp);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px
}

.sub-step form {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.sub-error {
  color: #c0392b;
  font-size: .84rem;
  margin: -6px 0 0
}

.sub-step-result {
  text-align: center;
  padding: 10px 0
}

.sub-result-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.sub-result-icon svg {
  width: 34px;
  height: 34px
}

.sub-result-icon.success {
  background: #dff5ee;
  color: #1c9c6e
}

.sub-result-icon.failed {
  background: #fbe7e6;
  color: #c0392b
}

.sub-step-result h3 {
  text-align: center
}

.sub-step-result p {
  color: var(--muted);
  font-size: .92rem;
  margin: 0 0 22px
}

#subStepLoading {
  text-align: center;
  padding: 30px 0
}

#subStepLoading p {
  color: var(--muted);
  font-size: .9rem;
  margin-top: 16px
}

.sub-spinner {
  width: 42px;
  height: 42px;
  margin: 0 auto;
  border-radius: 50%;
  border: 3px solid var(--teal-light);
  border-top-color: var(--teal);
  animation: subSpin .8s linear infinite
}

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

#payment-form {
  min-height: 120px
}

@media (prefers-reduced-motion: reduce) {
  .sub-spinner {
    animation: none
  }
}

/* ==================== REVEAL ANIMATION ==================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease), transform .9s var(--ease)
}

.reveal.in {
  opacity: 1;
  transform: translateY(0)
}

.reveal.d1 {
  transition-delay: .1s
}

.reveal.d2 {
  transition-delay: .2s
}

.reveal.d3 {
  transition-delay: .3s
}

.reveal.d4 {
  transition-delay: .4s
}

.reveal.d5 {
  transition-delay: .5s
}

.reveal.d6 {
  transition-delay: .6s
}

/* ==================== BACK TO TOP ==================== */
.totop {
  position: fixed;
  bottom: 28px;
  inset-inline-end: 28px;
  z-index: 800;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .45s var(--ease)
}

.totop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.totop:hover {
  background: var(--teal-deep);
  transform: translateY(-4px)
}

.totop svg {
  width: 22px;
  height: 22px
}

/* floating whatsapp */
.wa {
  position: fixed;
  bottom: 28px;
  inset-inline-end: 92px;
  z-index: 800;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all .4s var(--ease)
}

.wa:hover {
  transform: translateY(-4px) scale(1.05)
}

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

.wa::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: ripple 2s infinite
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: .7
  }

  100% {
    transform: scale(1.7);
    opacity: 0
  }
}

/* ==================== RESPONSIVE ==================== */
@media(max-width:1100px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .ins-trust {
    gap: 8px
  }

  .ins-UNUSED_grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .art-grid,
  .career-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .book-card {
    grid-template-columns: 1fr
  }

  .modal-card {
    grid-template-columns: 1fr;
    max-width: 520px
  }

  .modal-img {
    min-height: 220px
  }
}

@media(max-width:900px) {

  .nav-links,
  .nav-cta .btn,
  .topbar-l {
    display: none
  }

  .burger {
    display: flex
  }

  .about-grid,
  .loc-grid,
  .faq-grid,
  .vid-grid {
    grid-template-columns: 1fr
  }

  .vid-grid .vid.main {
    min-height: 340px
  }

  .stats-grid {
    gap: 14px
  }

  .about-media {
    margin-bottom: 60px
  }

  .loc-map {
    position: relative;
    top: 0;
    height: 400px
  }

  .faq-side {
    position: relative;
    top: 0;
    margin-top: 20px
  }
}

@media(max-width:640px) {
  .wrap {
    padding: 0 20px
  }

  .logo-txt img {
    height: 40px
  }

  header.scrolled .logo-txt img {
    height: 34px
  }

  .services,
  .about,
  .team,
  .svc-list,
  .videos,
  .locations,
  .services,
  .testi,
  .articles,
  .faq,
  .booking,
  .careers {
    padding: 80px 0
  }

  .art-grid,
  .career-grid,
  .team-grid {
    grid-template-columns: 1fr
  }

  .ins-trust {
    flex-direction: column;
    align-items: center
  }

  .ins-card {
    min-width: 170px;
    padding: 13px 16px
  }

  .foot-grid {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .book-side,
  .book-form {
    padding: 38px 26px
  }

  .cta-inner {
    padding: 48px 26px
  }

  .svc-row {
    grid-template-columns: 40px 1fr;
    gap: 16px
  }

  .svc-row .arrow {
    display: none
  }

  .about-media .sub-img {
    display: none
  }

  .modal-body {
    padding: 30px
  }

  .hero {
    padding-top: 110px
  }

  .foot-bottom {
    flex-direction: column;
    text-align: center
  }

  .foot-col-title::after {
    inset-inline-start: 50%;
    transform: translateX(-50%)
  }
}

/* ==================== HOTLINE PULSE ==================== */
.hotline-link {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: rgba(42,128,125,.18);
  border: 1px solid rgba(42,128,125,.4);
  border-radius: 30px;
  padding: 3px 12px 3px 8px;
  color: #fff !important;
  font-weight: 600;
  letter-spacing: .01em;
  transition: background .3s
}

.hotline-link:hover {
  background: rgba(42,128,125,.35) !important
}

.hotline-link svg {
  color: var(--teal) !important;
  animation: phoneRing 2s ease-in-out infinite;
  flex-shrink: 0
}

.hotline-link strong {
  color: #fff;
  font-weight: 700
}

.hotline-pulse {
  position: absolute;
  inset-inline-start: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,.6)
}

.hotline-pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #4ade80;
  animation: hotlinePulse 1.8s ease-out infinite
}

@keyframes hotlinePulse {
  0%   { transform: scale(1);   opacity: .7 }
  70%  { transform: scale(2.4); opacity: 0  }
  100% { transform: scale(2.4); opacity: 0  }
}

@keyframes phoneRing {
  0%, 100% { transform: rotate(0)   }
  10%       { transform: rotate(-15deg) }
  20%       { transform: rotate(15deg)  }
  30%       { transform: rotate(-10deg) }
  40%       { transform: rotate(10deg)  }
  50%       { transform: rotate(0)   }
}

/* ==================== FLOATING ACTION BUTTONS ==================== */
.fab-stack {
  position: fixed;
  bottom: 90px;
  inset-inline-end: 24px;
  z-index: 810;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center
}

.fab {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.22);
  cursor: pointer;
  border: none;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease)
}

.fab:hover {
  transform: translateY(-4px) scale(1.07);
  box-shadow: 0 12px 32px rgba(0,0,0,.28)
}

.fab svg {
  width: 24px;
  height: 24px;
  pointer-events: none
}

/* Call FAB */
.fab-call {
  background: #22c55e;
  color: #fff;
  text-decoration: none
}

.fab-call::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #22c55e;
  animation: ripple 2.2s infinite
}

/* Chat FAB */
.fab-chat {
  background: var(--teal);
  color: #fff
}

.fab-chat::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--teal);
  animation: ripple 2.2s infinite .4s
}

.fab-chat-close {
  display: none
}

.fab-chat.open .fab-chat-icon {
  display: none
}

.fab-chat.open .fab-chat-close {
  display: block
}

.fab-badge {
  position: absolute;
  top: 2px;
  inset-inline-end: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ef4444;
  border: 2px solid #fff;
  opacity: 0;
  transform: scale(0);
  transition: all .3s var(--ease)
}

.fab-badge.show {
  opacity: 1;
  transform: scale(1)
}

.fab-tooltip {
  position: absolute;
  inset-inline-end: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: rgba(13,26,25,.85);
  color: #fff;
  font-size: .75rem;
  padding: 5px 10px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s
}

.fab:hover .fab-tooltip {
  opacity: 1
}

/* ==================== CHAT WIDGET ==================== */
.chat-widget {
  position: fixed;
  bottom: 90px;
  inset-inline-end: 90px;
  width: 380px;
  max-height: 560px;
  background: var(--paper);
  border-radius: 20px;
  box-shadow: 0 20px 60px -10px rgba(13,26,25,.28), 0 0 0 1px var(--line);
  display: flex;
  flex-direction: column;
  z-index: 809;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(.95);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
  transform-origin: bottom inline-end
}

.chat-widget.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1)
}

/* Chat Header */
.chat-header {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  flex-shrink: 0
}

.chat-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.chat-avatar svg {
  width: 24px;
  height: 24px;
  fill: #fff
}

.chat-header-info {
  flex: 1
}

.chat-header-info strong {
  display: block;
  font-size: .95rem;
  font-weight: 700
}

.chat-header-info span {
  font-size: .78rem;
  opacity: .88;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 1px
}

.chat-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: chatPulse 2s ease-in-out infinite;
  flex-shrink: 0
}

@keyframes chatPulse {
  0%, 100% { opacity: 1 }
  50%       { opacity: .4 }
}

.chat-header-close {
  background: rgba(255,255,255,.15);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0
}

.chat-header-close:hover {
  background: rgba(255,255,255,.28)
}

.chat-header-close svg {
  width: 16px;
  height: 16px
}

/* Chat Messages */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scroll-behavior: smooth
}

.chat-messages::-webkit-scrollbar {
  width: 5px
}

.chat-messages::-webkit-scrollbar-thumb {
  background: var(--line-2);
  border-radius: 10px
}

.chat-msg {
  display: flex;
  flex-direction: column;
  max-width: 82%
}

.chat-msg--user {
  align-self: flex-end;
  align-items: flex-end
}

.chat-msg--bot {
  align-self: flex-start;
  align-items: flex-start
}

.chat-bubble {
  padding: 11px 15px;
  border-radius: 18px;
  font-size: .875rem;
  line-height: 1.6;
  word-break: break-word
}

.chat-msg--user .chat-bubble {
  background: var(--teal);
  color: #fff;
  border-end-inline-end-radius: 4px
}

.chat-msg--bot .chat-bubble {
  background: var(--paper-2);
  color: var(--ink);
  border-end-inline-start-radius: 4px;
  box-shadow: 0 2px 8px rgba(13,26,25,.06)
}

.chat-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  background: var(--paper-2);
  border-radius: 18px;
  border-end-inline-start-radius: 4px;
  width: fit-content
}

.chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
  animation: typingDot 1.2s ease-in-out infinite
}

.chat-typing span:nth-child(2) { animation-delay: .2s }
.chat-typing span:nth-child(3) { animation-delay: .4s }

@keyframes typingDot {
  0%, 80%, 100% { transform: scale(1);   opacity: .4 }
  40%            { transform: scale(1.3); opacity: 1  }
}

/* Chat Footer */
.chat-footer {
  border-top: 1px solid var(--line);
  padding: 12px 14px 10px;
  flex-shrink: 0
}

.chat-input-wrap {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  background: var(--paper-2);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 8px 8px 8px 14px;
  transition: border-color .25s
}

.chat-input-wrap:focus-within {
  border-color: var(--teal)
}

.chat-input {
  flex: 1;
  border: none;
  background: transparent;
  resize: none;
  font-family: var(--f-body);
  font-size: .88rem;
  color: var(--ink);
  line-height: 1.5;
  max-height: 100px;
  outline: none;
  scrollbar-width: none
}

.chat-input::placeholder {
  color: var(--muted)
}

.chat-send {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--teal);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .25s, transform .2s
}

.chat-send:hover {
  background: var(--teal-deep);
  transform: scale(1.05)
}

.chat-send:disabled {
  opacity: .5;
  cursor: default;
  transform: none
}

.chat-send svg {
  width: 18px;
  height: 18px
}

.chat-footer-actions {
  display: flex;
  justify-content: center;
  margin-top: 8px
}

.chat-clear {
  background: none;
  border: none;
  color: var(--muted);
  font-size: .76rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 8px;
  transition: color .2s, background .2s
}

.chat-clear:hover {
  color: var(--ink-soft);
  background: var(--paper-3)
}

.chat-clear svg {
  width: 13px;
  height: 13px
}

/* Mobile chat widget */
@media(max-width:480px) {
  .chat-widget {
    inset-inline-end: 12px;
    inset-inline-start: 12px;
    width: auto;
    bottom: 80px;
    max-height: 70dvh;
    border-radius: 16px
  }

  .fab-stack {
    bottom: 16px;
    inset-inline-end: 16px
  }

  .totop {
    bottom: 80px;
    inset-inline-end: 82px
  }
}

/* Testimonials responsive */
@media(max-width:900px) {
  .testi-stage {
    gap: 12px
  }

  .testi-card {
    padding: 36px 30px
  }

  .testi-wm-q {
    font-size: 7rem;
    opacity: .2
  }

  .testi-quote {
    font-size: 1.1rem
  }

  .testi-arrow {
    width: 44px;
    height: 44px
  }

  .testi-header {
    margin-bottom: 44px
  }
}

@media(max-width:600px) {
  .testi-stage {
    gap: 8px
  }

  .testi-card {
    padding: 28px 22px
  }

  .testi-wm-q {
    font-size: 5rem
  }

  .testi-quote {
    font-size: 1rem
  }

  .testi-arrow {
    width: 38px;
    height: 38px
  }

  .testi-arrow svg {
    width: 16px;
    height: 16px
  }

  .testi-verified-label {
    display: none
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}
/* numbers with a "+" (phones, counters) must keep the "+" on the natural side in RTL pages */
[data-count], a[href^="tel:"] strong, .phone-group input { direction: ltr; unicode-bidi: isolate }
