/* ============================================================
   DENTAL HOME CLINIC — PREMIUM CSS v3
   Future Medical Luxury · Teal · White · RTL Arabic
   د. وسن المعيني — Dr. Wasan Almaeeni
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&family=Almarai:wght@300;400;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,600&family=Poppins:wght@400;500;600;700&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  /* Core palette */
  --bg:          #F7FAFB;
  --bg-alt:      #FFFFFF;
  --bg-soft:     #EEF7F8;
  --bg-dark:     #0E1B2A;
  --bg-dark2:    #122436;

  /* Teal (primary accent) */
  --teal:        #7ED4D6;
  --teal-d:      #4BBFC2;
  --teal-light:  #A9E7E2;
  --teal-pale:   #D6F4F3;
  --teal-dim:    #2A9EA2;
  --teal-dark:   #1A7578;

  /* Gold (luxury touch) */
  --gold:        #C9A96A;
  --gold-l:      #E0C488;
  --gold-pale:   #F2E0C0;

  /* Ink (text) */
  --ink:         #0E1B2A;
  --ink-mid:     #2C4A6A;
  --ink-muted:   #557090;
  --ink-faint:   #8DAABF;
  --white:       #FFFFFF;

  /* Gradients */
  --g-teal:   linear-gradient(135deg, #7ED4D6 0%, #A9E7E2 100%);
  --g-teal-d: linear-gradient(135deg, #4BBFC2 0%, #7ED4D6 100%);
  --g-gold:   linear-gradient(135deg, #C9A96A 0%, #E0C488 100%);
  --g-dark:   linear-gradient(160deg, #0E1B2A 0%, #122436 100%);
  --g-aurora: radial-gradient(ellipse 80% 60% at 20% 0%,  rgba(126,212,214,.22) 0%, transparent 65%),
              radial-gradient(ellipse 60% 40% at 80% 90%, rgba(169,231,226,.15) 0%, transparent 55%),
              radial-gradient(ellipse 40% 30% at 60% 40%, rgba(201,169,106,.07) 0%, transparent 45%);

  /* Typography */
  --font-ar:  'IBM Plex Sans Arabic', 'Almarai', sans-serif;
  --font-dis: 'Almarai', 'IBM Plex Sans Arabic', sans-serif;
  --font-lat: 'Cormorant Garamond', serif;
  --font-ui:  'Poppins', sans-serif;

  /* Spacing scale */
  --s1: .5rem;  --s2: .75rem;  --s3: 1rem;   --s4: 1.5rem;
  --s5: 2rem;   --s6: 3rem;    --s7: 4rem;   --s8: 6rem;

  /* Radii */
  --r-sm:  8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 40px;
  --r-f:  999px;

  /* Shadows */
  --sh-sm:   0 2px 10px rgba(14,27,42,.07);
  --sh-md:   0 8px 30px rgba(14,27,42,.1);
  --sh-lg:   0 20px 60px rgba(14,27,42,.14);
  --sh-teal: 0 8px 32px rgba(75,191,194,.32);
  --sh-gold: 0 8px 28px rgba(201,169,106,.28);
  --sh-dark: 0 8px 32px rgba(0,0,0,.45);

  /* Transitions */
  --ease:   cubic-bezier(.4,0,.2,1);
  --bounce: cubic-bezier(.34,1.56,.64,1);
  --spring: cubic-bezier(.25,.46,.45,.94);

  /* Nav height */
  --nav-h: 78px;
}

/* ── RESET ── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; direction:rtl; }
body {
  font-family: var(--font-ar);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
img { max-width:100%; height:auto; display:block; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
input,select,textarea { font-family:inherit; }

/* Scrollbar */
::-webkit-scrollbar       { width:5px; }
::-webkit-scrollbar-track { background:var(--bg-soft); }
::-webkit-scrollbar-thumb { background:var(--teal); border-radius:var(--r-f); }
::-webkit-scrollbar-thumb:hover { background:var(--teal-d); }
::selection { background:rgba(126,212,214,.25); color:var(--ink); }

/* Reduced motion */
@media (prefers-reduced-motion:reduce) {
  *,*::before,*::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
}

/* ── LAYOUT ── */
.wrap { width:100%; max-width:1280px; margin:0 auto; padding:0 var(--s5); }
.section { padding:var(--s8) 0; position:relative; overflow:hidden; }
.light-section  { background:var(--bg-alt); }
.soft-section   { background:var(--bg-soft); }
.dark-section   { background:var(--g-dark); }
.ig-section     { background:var(--bg-dark); }

/* Section header */
.section-head { text-align:center; margin-bottom:var(--s7); }

.label-pill {
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  font-family:var(--font-ui);
  font-size:.7rem;
  font-weight:600;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--teal-dim);
  background:rgba(126,212,214,.12);
  border:1px solid rgba(126,212,214,.3);
  padding:.38rem 1.1rem;
  border-radius:var(--r-f);
  margin-bottom:var(--s3);
}
.label-pill.light {
  color:var(--teal-light);
  background:rgba(126,212,214,.15);
  border-color:rgba(126,212,214,.25);
}

.sec-title {
  font-family:var(--font-dis);
  font-size:clamp(2rem,4vw,3rem);
  font-weight:800;
  color:var(--ink);
  line-height:1.22;
  margin-bottom:var(--s3);
}
.sec-title.on-dark { color:var(--white); }
.teal-span { color:var(--teal-d); }
.sec-desc { max-width:580px; margin:0 auto; color:var(--ink-muted); font-size:1.05rem; line-height:1.85; }
.sec-desc.on-dark { color:rgba(255,255,255,.55); }

/* Scroll-reveal animation */
[data-aos] {
  opacity:0;
  transform:translateY(28px);
  transition:opacity .6s var(--ease), transform .6s var(--ease);
}
[data-aos-delay="80"]  { transition-delay:.08s; }
[data-aos-delay="100"] { transition-delay:.1s; }
[data-aos-delay="160"] { transition-delay:.16s; }
[data-aos-delay="200"] { transition-delay:.2s; }
[data-aos-delay="240"] { transition-delay:.24s; }
[data-aos-delay="300"] { transition-delay:.3s; }
[data-aos-delay="320"] { transition-delay:.32s; }
[data-aos-delay="360"] { transition-delay:.36s; }
[data-aos-delay="400"] { transition-delay:.4s; }
[data-aos-delay="420"] { transition-delay:.42s; }
[data-aos].aos-visible { opacity:1; transform:translateY(0); }
[data-aos="fade-right"] { transform:translateX(32px); }
[data-aos="fade-left"]  { transform:translateX(-32px); }
[data-aos="fade-right"].aos-visible,
[data-aos="fade-left"].aos-visible  { transform:translateX(0); }

/* ── BUTTONS ── */
.btn-teal {
  display:inline-flex; align-items:center; gap:.6rem;
  padding:.85rem 1.8rem;
  background:var(--g-teal-d);
  color:var(--white);
  font-weight:700; font-size:.95rem;
  border-radius:var(--r-f);
  border:none;
  box-shadow:var(--sh-teal);
  transition:all .3s var(--ease);
}
.btn-teal:hover { transform:translateY(-2px); box-shadow:0 12px 36px rgba(75,191,194,.42); }
.btn-teal.glow  { box-shadow:var(--sh-teal), 0 0 0 0 rgba(75,191,194,.3); }
.btn-teal.glow:hover { box-shadow:0 12px 36px rgba(75,191,194,.42), 0 0 0 8px rgba(75,191,194,.12); }

.btn-ghost {
  display:inline-flex; align-items:center; gap:.6rem;
  padding:.85rem 1.8rem;
  background:rgba(255,255,255,.08);
  color:rgba(255,255,255,.88);
  font-weight:600; font-size:.95rem;
  border-radius:var(--r-f);
  border:1px solid rgba(255,255,255,.2);
  transition:all .3s var(--ease);
  backdrop-filter:blur(8px);
}
.btn-ghost:hover { background:rgba(255,255,255,.15); border-color:rgba(126,212,214,.5); color:var(--white); }

.btn-outline-teal {
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.8rem 1.6rem;
  background:transparent;
  color:var(--teal-d);
  font-weight:600; font-size:.9rem;
  border-radius:var(--r-f);
  border:1.5px solid var(--teal);
  transition:all .3s var(--ease);
}
.btn-outline-teal:hover { background:rgba(126,212,214,.1); transform:translateY(-1px); }

/* ──────────────────────────────────────────────────
   NAVBAR
────────────────────────────────────────────────── */
.navbar {
  position:fixed; top:0; right:0; left:0; z-index:1000;
  height:var(--nav-h);
  transition:background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
.navbar.scrolled {
  background:rgba(247,250,251,.95);
  backdrop-filter:blur(24px) saturate(180%);
  -webkit-backdrop-filter:blur(24px) saturate(180%);
  box-shadow:0 1px 0 rgba(126,212,214,.18), 0 4px 24px rgba(14,27,42,.07);
}
.nav-inner {
  display:flex; align-items:center; justify-content:space-between;
  height:var(--nav-h); padding:0 var(--s5); max-width:1400px; margin:0 auto; gap:var(--s5);
}

/* Brand */
.nav-brand { display:flex; align-items:center; gap:var(--s2); flex-shrink:0; }
.brand-icon {
  width:42px; height:42px;
  background:rgba(126,212,214,.1);
  border:1px solid rgba(126,212,214,.3);
  border-radius:var(--r-sm);
  display:flex; align-items:center; justify-content:center; padding:6px;
  transition:all .3s var(--ease);
}
.navbar.scrolled .brand-icon { background:rgba(126,212,214,.12); }
.brand-text { display:flex; flex-direction:column; line-height:1.2; }
.brand-en {
  font-family:var(--font-lat);
  font-size:1.1rem; font-weight:700; font-style:italic;
  color:var(--white);
  transition:color .3s;
}
.brand-ar { font-size:.68rem; color:rgba(255,255,255,.55); transition:color .3s; }
.navbar.scrolled .brand-en { color:var(--ink); }
.navbar.scrolled .brand-ar { color:var(--ink-muted); }

/* Nav menu */
.nav-menu { display:flex; align-items:center; gap:.25rem; }
.nav-item {
  font-size:.88rem; font-weight:500;
  color:rgba(255,255,255,.78);
  padding:.5rem .85rem;
  border-radius:var(--r-sm);
  transition:all .25s var(--ease);
  position:relative;
}
.nav-item::after {
  content:''; position:absolute; bottom:4px; right:50%;
  width:0; height:2px;
  background:var(--teal);
  border-radius:var(--r-f);
  transform:translateX(50%);
  transition:width .3s var(--ease);
}
.nav-item:hover::after,
.nav-item.active::after { width:60%; }
.nav-item.active { color:var(--white); }
.nav-item:hover  { color:var(--white); }
.navbar.scrolled .nav-item       { color:var(--ink-mid); }
.navbar.scrolled .nav-item:hover,
.navbar.scrolled .nav-item.active{ color:var(--ink); }
.navbar.scrolled .nav-item::after { background:var(--teal-d); }

/* Nav CTA button */
.nav-cta {
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.6rem 1.2rem;
  background:var(--g-teal-d);
  color:var(--white) !important;
  font-size:.83rem; font-weight:700;
  border-radius:var(--r-f);
  box-shadow:var(--sh-teal);
  transition:all .3s var(--ease);
  white-space:nowrap;
}
.nav-cta svg { width:14px; height:14px; }
.nav-cta:hover { transform:translateY(-1px); box-shadow:0 8px 24px rgba(75,191,194,.45); }
.navbar:not(.scrolled) .nav-cta { box-shadow:none; background:rgba(126,212,214,.2); border:1px solid rgba(126,212,214,.4); }

.nav-end { display:flex; align-items:center; gap:var(--s3); }

/* Hamburger */
.burger {
  display:none; flex-direction:column; gap:5px;
  padding:8px; border-radius:var(--r-sm);
  transition:background .2s;
}
.burger:hover { background:rgba(255,255,255,.1); }
.burger span {
  display:block; width:22px; height:2px;
  background:var(--white);
  border-radius:var(--r-f);
  transition:all .3s var(--ease);
}
.navbar.scrolled .burger span { background:var(--ink); }
.burger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.burger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* Drawer (mobile) */
.drawer-overlay {
  display:none; position:fixed; inset:0;
  background:rgba(0,0,0,.65);
  backdrop-filter:blur(4px);
  z-index:1001;
}
.drawer-overlay.open { display:block; }
.drawer {
  position:fixed; top:0; left:0; /* RTL: left = start */
  width:min(320px, 85vw);
  height:100vh;
  background:var(--bg-dark);
  border-left:1px solid rgba(255,255,255,.08); /* RTL: left border */
  z-index:1002;
  padding:var(--s4);
  display:flex; flex-direction:column; gap:var(--s3);
  transform:translateX(-100%); /* slide from left for RTL */
  transition:transform .35s var(--ease);
}
.drawer.open { transform:translateX(0); }
.drawer-head { display:flex; align-items:center; justify-content:space-between; padding-bottom:var(--s3); border-bottom:1px solid rgba(255,255,255,.08); }
.drawer-logo { font-family:var(--font-lat); font-size:1.1rem; font-weight:600; font-style:italic; color:var(--teal-light); }
.drawer-close { color:rgba(255,255,255,.6); font-size:1.1rem; padding:4px 8px; border-radius:var(--r-sm); transition:all .2s; }
.drawer-close:hover { background:rgba(255,255,255,.1); color:var(--white); }
.drawer-menu { display:flex; flex-direction:column; gap:.25rem; flex:1; }
.drawer-link {
  display:block; padding:.75rem 1rem;
  color:rgba(255,255,255,.75);
  font-size:.95rem; font-weight:500;
  border-radius:var(--r-sm);
  transition:all .2s;
}
.drawer-link:hover { background:rgba(126,212,214,.1); color:var(--teal-light); }
.drawer-actions { display:flex; flex-direction:column; gap:.5rem; padding-top:var(--s3); border-top:1px solid rgba(255,255,255,.08); }
.drawer-call, .drawer-wa, .drawer-ig {
  display:block; padding:.7rem 1rem; text-align:center;
  border-radius:var(--r-md); font-weight:600; font-size:.88rem;
  transition:all .25s;
}
.drawer-call { background:rgba(126,212,214,.12); border:1px solid rgba(126,212,214,.25); color:var(--teal-light); }
.drawer-wa   { background:rgba(37,211,102,.1);    border:1px solid rgba(37,211,102,.25);   color:#4ade80; }
.drawer-ig   { background:rgba(247,121,125,.08);  border:1px solid rgba(247,121,125,.2);   color:#f9a8d4; }
.drawer-call:hover { background:rgba(126,212,214,.2); }
.drawer-wa:hover   { background:rgba(37,211,102,.18); }
.drawer-ig:hover   { background:rgba(247,121,125,.15); }

/* ──────────────────────────────────────────────────
   HERO
────────────────────────────────────────────────── */
.hero {
  min-height:100svh;
  background:var(--g-dark);
  display:flex; flex-direction:column;
  padding-top:var(--nav-h);
  position:relative; overflow:hidden;
}

/* Aurora background */
.aurora { position:absolute; inset:0; z-index:0; overflow:hidden; }
.aurora > div {
  position:absolute; border-radius:50%;
  filter:blur(80px);
  animation:auroraFloat 18s ease-in-out infinite;
  will-change:transform,opacity;
}
.aurora-1 { width:60vw; height:60vw; background:rgba(126,212,214,.18); top:-20%; right:-10%; animation-delay:0s; }
.aurora-2 { width:40vw; height:40vw; background:rgba(75,191,194,.12);  bottom:10%; left:5%;   animation-delay:-6s; }
.aurora-3 { width:30vw; height:30vw; background:rgba(201,169,106,.08); top:40%;   right:40%;  animation-delay:-12s; }
.aurora-4 { width:25vw; height:25vw; background:rgba(169,231,226,.1);  bottom:5%; right:20%;  animation-delay:-4s; }
@keyframes auroraFloat {
  0%,100% { transform:translate(0,0) scale(1); }
  33%     { transform:translate(3%,5%) scale(1.05); }
  66%     { transform:translate(-2%,-3%) scale(.97); }
}

/* Particles canvas */
.particles-canvas { position:absolute; inset:0; z-index:1; pointer-events:none; }

/* Hero inner */
.hero-inner {
  position:relative; z-index:2;
  flex:1; display:grid;
  grid-template-columns:1fr 1fr;
  gap:var(--s6); align-items:center;
  max-width:1280px; margin:0 auto;
  padding:var(--s8) var(--s5);
}

/* Eyebrow */
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:.6rem;
  font-size:.78rem; font-weight:600; letter-spacing:.1em;
  color:rgba(169,231,226,.85);
  background:rgba(126,212,214,.1);
  border:1px solid rgba(126,212,214,.25);
  padding:.4rem 1rem;
  border-radius:var(--r-f);
  margin-bottom:var(--s4);
  font-family:var(--font-ui);
}
.pulse-dot {
  width:8px; height:8px;
  background:var(--teal);
  border-radius:50%;
  animation:pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.5);opacity:.5} }

/* Hero headline */
.hero-h1 {
  font-family:var(--font-dis);
  font-size:clamp(3.2rem,5.5vw,5.5rem);
  font-weight:900;
  color:var(--white);
  line-height:1.08;
  margin-bottom:var(--s4);
  animation:heroFadeIn .8s var(--ease) .1s both;
}
.hero-accent {
  display:block;
  background:linear-gradient(130deg, var(--teal) 0%, var(--teal-light) 50%, var(--teal) 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  background-size:200% 100%;
  animation:shimmer 4s ease-in-out infinite;
}
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
@keyframes heroFadeIn { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

.hero-sub {
  font-size:clamp(1rem,1.4vw,1.12rem);
  color:rgba(255,255,255,.62);
  line-height:1.9; max-width:500px;
  margin-bottom:var(--s5);
  animation:heroFadeIn .8s var(--ease) .2s both;
}
.hero-sub strong { color:rgba(169,231,226,.9); font-weight:600; }

.hero-btns { display:flex; flex-wrap:wrap; gap:var(--s3); margin-bottom:var(--s6); animation:heroFadeIn .8s var(--ease) .3s both; }

/* Stats */
.hero-stats {
  display:flex; align-items:center; gap:var(--s4);
  animation:heroFadeIn .8s var(--ease) .4s both;
}
.stat { text-align:center; }
.stat-n {
  font-family:var(--font-dis);
  font-size:2.2rem; font-weight:800;
  color:var(--teal-light);
  display:inline-block;
}
.stat-s { font-size:1.6rem; font-weight:800; color:var(--teal-light); }
.stat-l { display:block; font-size:.75rem; color:rgba(255,255,255,.45); letter-spacing:.05em; font-family:var(--font-ui); margin-top:2px; }
.stat-sep { width:1px; height:48px; background:rgba(255,255,255,.12); }

/* Hero visual */
.hero-visual { position:relative; display:flex; justify-content:center; align-items:center; }
.hero-img-wrap {
  position:relative;
  max-width:500px; width:100%;
  animation:heroFadeIn 1s var(--ease) .2s both;
}
.hero-img-aura {
  position:absolute; inset:-30px;
  background:radial-gradient(ellipse at center, rgba(126,212,214,.2) 0%, transparent 70%);
  border-radius:50%;
  animation:auroraFloat 6s ease-in-out infinite;
  pointer-events:none;
}
.hero-img {
  width:100%; height:auto;
  border-radius:var(--r-xl);
  border:1px solid rgba(126,212,214,.18);
  box-shadow:0 32px 80px rgba(0,0,0,.45), var(--sh-teal);
  object-fit:cover;
  transition:transform .6s var(--ease);
}
.hero-img:hover { transform:scale(1.02) rotate(.5deg); }

.hero-badge-float {
  position:absolute; bottom:-20px; right:-20px;
  display:flex; align-items:center; gap:.75rem;
  background:rgba(14,27,42,.92);
  border:1px solid rgba(126,212,214,.25);
  border-radius:var(--r-md);
  padding:var(--s2) var(--s3);
  backdrop-filter:blur(16px);
  box-shadow:var(--sh-dark);
  animation:heroFadeIn .8s var(--ease) .5s both;
}
.hbf-icon { font-size:1.4rem; }
.hbf-t { display:block; font-size:.8rem; font-weight:700; color:var(--teal-light); }
.hbf-s { display:block; font-size:.65rem; color:rgba(255,255,255,.45); margin-top:1px; }

/* Floating cards */
.fc {
  position:absolute;
  display:flex; align-items:center; gap:.6rem;
  background:rgba(14,27,42,.88);
  border:1px solid rgba(126,212,214,.2);
  border-radius:var(--r-md);
  padding:.65rem .9rem;
  backdrop-filter:blur(12px);
  box-shadow:var(--sh-dark);
  font-size:.78rem;
}
.fc b { display:block; color:var(--white); font-size:.8rem; }
.fc small { color:rgba(255,255,255,.45); font-size:.66rem; }
.fc-em { font-size:1.4rem; }
.fc-1 { top:10%; left:-30px; animation:floatA 5s ease-in-out infinite; }
.fc-2 { bottom:25%; left:-20px; animation:floatB 5.5s ease-in-out infinite; }
@keyframes floatA { 0%,100%{transform:translateY(0)}  50%{transform:translateY(-8px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)}  50%{transform:translateY(8px)}  }

/* Scroll hint */
.scroll-hint {
  position:relative; z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:.5rem;
  padding-bottom:var(--s4);
  color:rgba(255,255,255,.35);
  font-size:.72rem; font-family:var(--font-ui); letter-spacing:.12em;
  text-transform:uppercase;
  animation:bounce 2.5s ease-in-out infinite;
}
.scroll-mouse {
  width:22px; height:36px;
  border:1.5px solid rgba(255,255,255,.25);
  border-radius:var(--r-f);
  display:flex; justify-content:center; padding-top:6px;
}
.scroll-w {
  width:3px; height:8px;
  background:var(--teal);
  border-radius:var(--r-f);
  animation:scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%{transform:translateY(0);opacity:1} 80%{transform:translateY(10px);opacity:0} 100%{transform:translateY(0);opacity:0} }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ──────────────────────────────────────────────────
   ABOUT / DOCTOR
────────────────────────────────────────────────── */
.about-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:var(--s7); align-items:center;
}
.about-img-frame { position:relative; }
.about-img {
  width:100%; height:auto; max-height:640px; object-fit:cover;
  border-radius:var(--r-lg);
  box-shadow:var(--sh-lg);
}
.about-img-chip {
  position:absolute; bottom:-16px; left:-16px;
  display:flex; align-items:center; gap:.7rem;
  background:var(--white);
  border:1px solid rgba(126,212,214,.3);
  border-radius:var(--r-md);
  padding:.75rem 1.1rem;
  box-shadow:var(--sh-md);
}
.chip-icon { font-size:1.5rem; }
.about-img-chip b { display:block; font-size:.85rem; color:var(--ink); }
.about-img-chip small { font-size:.7rem; color:var(--ink-muted); }

.about-bio { color:var(--ink-mid); margin-bottom:var(--s4); font-size:.97rem; line-height:1.85; }
.about-bio strong { color:var(--ink); }

.badges-row {
  display:grid; grid-template-columns:1fr 1fr;
  gap:var(--s2); margin:var(--s4) 0;
}
.badge-item {
  display:flex; align-items:center; gap:.6rem;
  background:var(--bg-soft);
  border:1px solid rgba(126,212,214,.2);
  border-radius:var(--r-md);
  padding:.6rem .9rem;
  font-size:.82rem; color:var(--ink-mid); font-weight:500;
}
.badge-ico { font-size:1.2rem; }
.about-ctas { display:flex; gap:var(--s3); flex-wrap:wrap; margin-top:var(--s4); }

/* ──────────────────────────────────────────────────
   PHILOSOPHY
────────────────────────────────────────────────── */
.philo-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:var(--s3);
  margin-bottom:var(--s6);
}
.philo-card-wide { grid-column:span 4; }
.philo-card {
  background:var(--bg-alt);
  border:1px solid rgba(126,212,214,.18);
  border-radius:var(--r-lg);
  padding:var(--s5);
  transition:all .3s var(--ease);
  box-shadow:var(--sh-sm);
}
.philo-card:hover { transform:translateY(-4px); box-shadow:var(--sh-md); border-color:rgba(126,212,214,.35); }
.philo-card-wide { display:flex; align-items:flex-start; gap:var(--s4); }
.philo-icon { font-size:2.4rem; margin-bottom:var(--s3); }
.philo-card-wide .philo-icon { font-size:2.8rem; margin-bottom:0; flex-shrink:0; }
.philo-card h3 { font-size:1.05rem; font-weight:700; color:var(--ink); margin-bottom:var(--s2); }
.philo-card p  { font-size:.88rem; color:var(--ink-muted); line-height:1.75; }

.philo-visual { position:relative; border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--sh-lg); }
.philo-img { width:100%; height:auto; max-height:480px; object-fit:cover; display:block; }
.philo-img-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(14,27,42,.82) 0%, transparent 60%);
  display:flex; align-items:flex-end; padding:var(--s5);
}
.philo-quote {
  border-right:3px solid var(--teal);
  padding-right:var(--s4);
  font-family:var(--font-lat);
  font-size:clamp(1.1rem,1.8vw,1.5rem);
  font-style:italic;
  color:var(--white);
  line-height:1.5;
}
.philo-quote cite { display:block; font-size:.85rem; color:var(--teal-light); margin-top:.5rem; font-style:normal; }

/* ──────────────────────────────────────────────────
   SERVICES
────────────────────────────────────────────────── */
.svcs-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:var(--s4);
}
.svc-card {
  background:var(--bg-alt);
  border:1px solid rgba(14,27,42,.07);
  border-radius:var(--r-lg);
  padding:var(--s5);
  position:relative; overflow:hidden;
  transition:all .35s var(--ease);
  box-shadow:var(--sh-sm);
}
.svc-card::before {
  content:''; position:absolute; top:0; right:0;
  width:4px; height:0;
  background:var(--g-teal-d);
  border-radius:0 var(--r-lg) var(--r-lg) 0;
  transition:height .35s var(--ease);
}
.svc-card:hover { transform:translateY(-6px); box-shadow:var(--sh-md); border-color:rgba(126,212,214,.25); }
.svc-card:hover::before { height:100%; }

.svc-featured {
  background:linear-gradient(145deg,rgba(126,212,214,.06),rgba(75,191,194,.04));
  border-color:rgba(126,212,214,.3);
  box-shadow:var(--sh-teal);
}
.svc-badge {
  position:absolute; top:var(--s3); left:var(--s3);
  background:var(--g-teal-d);
  color:var(--white);
  font-size:.66rem; font-weight:700; letter-spacing:.1em;
  text-transform:uppercase; font-family:var(--font-ui);
  padding:.3rem .8rem; border-radius:var(--r-f);
}
.svc-ic {
  width:54px; height:54px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(var(--ic-c, 126,212,214),.08);
  border:1px solid rgba(126,212,214,.18);
  border-radius:var(--r-md);
  margin-bottom:var(--s3);
}
.svc-ic svg { width:32px; height:32px; }
.svc-card h3 { font-size:1.05rem; font-weight:700; color:var(--ink); margin-bottom:var(--s2); }
.svc-card p  { font-size:.86rem; color:var(--ink-muted); line-height:1.7; margin-bottom:var(--s3); }
.svc-link {
  display:inline-flex; align-items:center; gap:.3rem;
  font-size:.82rem; font-weight:600;
  color:var(--teal-dim);
  transition:all .2s;
}
.svc-link:hover { color:var(--teal-d); gap:.6rem; }

/* ──────────────────────────────────────────────────
   CASES — BEFORE/AFTER
────────────────────────────────────────────────── */
.ba-wrap { margin-bottom:var(--s6); }
.ba-container {
  position:relative; overflow:hidden;
  border-radius:var(--r-lg);
  user-select:none;
  box-shadow:0 24px 60px rgba(0,0,0,.5);
  cursor:ew-resize;
  /* Fixed aspect ratio */
  aspect-ratio:16/9;
}
.ba-layer {
  position:absolute; inset:0;
  overflow:hidden;
}
.ba-before { width:100%; }
.ba-after  { width:50%; border-left:2px solid rgba(126,212,214,.6); }
.ba-img { width:100%; height:100%; object-fit:cover; pointer-events:none; display:block; }
.ba-chip {
  position:absolute; bottom:var(--s3);
  font-family:var(--font-ui);
  font-size:.72rem; font-weight:700;
  letter-spacing:.15em; text-transform:uppercase;
  padding:.35rem .9rem; border-radius:var(--r-f);
}
.ba-chip-before { right:var(--s3); background:rgba(255,120,120,.2); color:#ff9090; border:1px solid rgba(255,120,120,.3); }
.ba-chip-after  { left:var(--s3);  background:rgba(126,212,214,.2); color:var(--teal-light); border:1px solid rgba(126,212,214,.3); }

.ba-handle {
  position:absolute; top:0; bottom:0;
  width:44px;
  left:50%;
  transform:translateX(-50%);
  display:flex; align-items:center; justify-content:center;
  z-index:10; cursor:ew-resize;
}
.ba-handle-circle {
  width:44px; height:44px;
  background:var(--white);
  border-radius:50%;
  box-shadow:0 4px 20px rgba(0,0,0,.4), var(--sh-teal);
  display:flex; align-items:center; justify-content:center;
  transition:transform .2s var(--bounce);
}
.ba-handle-circle svg { width:18px; height:18px; color:var(--teal-d); }
.ba-handle:hover .ba-handle-circle { transform:scale(1.12); }
.ba-hint {
  text-align:center; margin-top:var(--s3);
  font-size:.78rem; color:rgba(255,255,255,.4);
  font-family:var(--font-ui); letter-spacing:.05em;
}

/* Cases grid */
.cases-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:var(--s4); margin-bottom:var(--s5);
}
.case-card {
  background:rgba(255,255,255,.04);
  border:1px solid rgba(126,212,214,.12);
  border-radius:var(--r-lg);
  overflow:hidden;
  transition:all .3s var(--ease);
}
.case-card:hover { transform:translateY(-4px); border-color:rgba(126,212,214,.3); box-shadow:var(--sh-teal); }
.case-img-wrap { position:relative; overflow:hidden; }
.case-img-wrap img { width:100%; height:220px; object-fit:cover; transition:transform .5s var(--ease); display:block; }
.case-card:hover .case-img-wrap img { transform:scale(1.06); }
.case-zoom {
  position:absolute; top:var(--s2); left:var(--s2);
  width:36px; height:36px;
  background:rgba(14,27,42,.7); backdrop-filter:blur(8px);
  border-radius:var(--r-sm);
  display:flex; align-items:center; justify-content:center;
  color:var(--white); opacity:0;
  transition:opacity .2s;
}
.case-card:hover .case-zoom { opacity:1; }
.case-zoom svg { width:14px; height:14px; }
.case-zoom:hover { background:rgba(75,191,194,.8); }
.case-info { padding:var(--s3) var(--s4); }
.case-info h3 { font-size:.9rem; font-weight:700; color:rgba(255,255,255,.88); margin-bottom:.25rem; }
.case-info p  { font-size:.78rem; color:rgba(255,255,255,.45); margin-bottom:var(--s2); }
.case-tag {
  display:inline-block; font-size:.65rem; font-weight:600;
  font-family:var(--font-ui); letter-spacing:.12em; text-transform:uppercase;
  color:var(--teal-light);
  background:rgba(126,212,214,.12); border:1px solid rgba(126,212,214,.25);
  padding:.25rem .7rem; border-radius:var(--r-f);
}

/* Instagram CTA */
.cases-ig-cta { text-align:center; }
.ig-btn {
  display:inline-flex; align-items:center; gap:.75rem;
  padding:.9rem 2rem;
  background:linear-gradient(135deg,rgba(247,121,125,.12),rgba(201,169,106,.08));
  border:1px solid rgba(247,121,125,.25);
  color:#f9a8d4; font-weight:600; font-size:.92rem;
  border-radius:var(--r-f);
  transition:all .3s var(--ease);
}
.ig-btn:hover { background:linear-gradient(135deg,rgba(247,121,125,.22),rgba(201,169,106,.14)); transform:translateY(-2px); box-shadow:0 8px 28px rgba(247,121,125,.2); }
.ig-btn svg { width:20px; height:20px; }

/* Lightbox */
.lightbox {
  position:fixed; inset:0; z-index:2000;
  display:flex; align-items:center; justify-content:center;
}
.lightbox[hidden] { display:none; }
.lb-overlay { position:absolute; inset:0; background:rgba(0,0,0,.92); backdrop-filter:blur(8px); }
.lb-content { position:relative; z-index:1; max-width:90vw; text-align:center; }
.lb-close {
  position:absolute; top:-48px; left:0;
  width:36px; height:36px;
  background:rgba(255,255,255,.1);
  color:var(--white); border-radius:50%;
  font-size:1rem;
  display:flex; align-items:center; justify-content:center;
  transition:all .2s;
}
.lb-close:hover { background:rgba(255,255,255,.2); }
.lb-img { max-width:100%; max-height:80vh; border-radius:var(--r-lg); box-shadow:0 24px 80px rgba(0,0,0,.6); }
.lb-caption { margin-top:var(--s3); color:rgba(255,255,255,.55); font-size:.85rem; }

/* ──────────────────────────────────────────────────
   STATS / WHY US
────────────────────────────────────────────────── */
.counters-row {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:var(--s4); margin-bottom:var(--s7);
}
.counter-card {
  text-align:center;
  background:var(--bg-alt);
  border:1px solid rgba(126,212,214,.18);
  border-radius:var(--r-lg);
  padding:var(--s5) var(--s4);
  box-shadow:var(--sh-sm);
  transition:all .3s var(--ease);
}
.counter-card:hover { transform:translateY(-4px); box-shadow:var(--sh-md); border-color:rgba(126,212,214,.35); }
.ctr-num { display:flex; align-items:baseline; justify-content:center; gap:.2rem; }
.ctr-n {
  font-family:var(--font-dis);
  font-size:3rem; font-weight:900;
  background:var(--g-teal-d);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.ctr-s { font-size:2rem; font-weight:800; color:var(--teal-d); }
.ctr-label { font-size:.95rem; font-weight:700; color:var(--ink); margin-top:.25rem; }
.ctr-sub   { font-size:.75rem; color:var(--ink-faint); margin-top:.2rem; font-family:var(--font-ui); }

.why-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:var(--s4);
}
.why-card {
  background:var(--bg-alt);
  border:1px solid rgba(14,27,42,.07);
  border-radius:var(--r-lg);
  padding:var(--s5);
  position:relative; overflow:hidden;
  transition:all .3s var(--ease);
  box-shadow:var(--sh-sm);
}
.why-card:hover { transform:translateY(-4px); box-shadow:var(--sh-md); }
.why-n {
  position:absolute; top:var(--s3); left:var(--s4);
  font-family:var(--font-dis);
  font-size:3.5rem; font-weight:900;
  color:rgba(126,212,214,.12);
  line-height:1;
  transition:color .3s;
}
.why-card:hover .why-n { color:rgba(126,212,214,.22); }
.why-ico { font-size:2rem; margin-bottom:var(--s3); }
.why-card h3 { font-size:1rem; font-weight:700; color:var(--ink); margin-bottom:var(--s2); }
.why-card p  { font-size:.84rem; color:var(--ink-muted); line-height:1.75; }

/* ──────────────────────────────────────────────────
   TESTIMONIALS
────────────────────────────────────────────────── */
.test-slider-wrap { overflow:hidden; margin-bottom:var(--s5); }
.test-track {
  display:flex;
  transition:transform .5s var(--ease);
  will-change:transform;
}
.test-card {
  flex:0 0 calc(33.333% - 1rem);
  margin-left: var(--s4);
  background:var(--bg-alt);
  border:1px solid rgba(126,212,214,.18);
  border-radius:var(--r-lg);
  padding:var(--s5);
  box-shadow:var(--sh-sm);
  transition:box-shadow .3s, border-color .3s;
  font-style:normal;
}
.test-card:first-child { margin-left:0; }
.test-card:hover { box-shadow:var(--sh-md); border-color:rgba(126,212,214,.3); }
.test-stars { color:var(--teal-d); font-size:1.1rem; letter-spacing:.1em; margin-bottom:var(--s3); }
.test-card p { font-size:.9rem; color:var(--ink-mid); line-height:1.8; margin-bottom:var(--s4); }
.test-card footer { display:flex; align-items:center; gap:.75rem; }
.test-av {
  width:44px; height:44px; flex-shrink:0;
  background:var(--g-teal-d);
  color:var(--white);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:.82rem; font-weight:700; font-family:var(--font-ui);
}
.test-name  { display:block; font-weight:700; font-size:.88rem; color:var(--ink); }
.test-svc   { display:block; font-size:.73rem; color:var(--teal-dim); font-family:var(--font-ui); margin-top:2px; }

/* Slider controls */
.slider-ctrl { display:flex; align-items:center; justify-content:center; gap:var(--s4); }
.sldr-btn {
  width:44px; height:44px;
  background:var(--bg-alt);
  border:1.5px solid rgba(126,212,214,.3);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--teal-d);
  transition:all .2s var(--ease);
}
.sldr-btn svg { width:18px; height:18px; }
.sldr-btn:hover { background:rgba(126,212,214,.1); border-color:rgba(126,212,214,.5); transform:scale(1.08); }
.sldr-dots { display:flex; gap:.5rem; }
.sldr-dot {
  width:8px; height:8px;
  background:rgba(14,27,42,.15);
  border-radius:50%;
  transition:all .3s var(--ease);
  cursor:pointer; border:none;
}
.sldr-dot.active { background:var(--teal-d); width:24px; border-radius:var(--r-f); }

/* ──────────────────────────────────────────────────
   INSTAGRAM SECTION
────────────────────────────────────────────────── */
.ig-grid {
  display:grid;
  grid-template-columns:1fr 2fr 1fr;
  grid-template-rows:1fr 1fr;
  gap:var(--s2);
  border-radius:var(--r-lg);
  overflow:hidden;
  margin-bottom:var(--s5);
  height:480px;
}
.ig-tile { position:relative; overflow:hidden; display:block; }
.ig-tile img { width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.ig-tile:hover img { transform:scale(1.08); }
.ig-tile-tall { grid-row:span 2; }
.ig-tile:nth-child(1) { grid-row:1; }
.ig-tile:nth-child(3) { grid-row:1; }
.ig-tile:nth-child(4) { grid-row:2; }
.ig-tile:nth-child(5) { grid-row:2; }

.ig-overlay {
  position:absolute; inset:0;
  background:rgba(14,27,42,0);
  display:flex; align-items:center; justify-content:center;
  transition:background .3s;
}
.ig-tile:hover .ig-overlay { background:rgba(14,27,42,.45); }
.ig-overlay span { font-size:2rem; opacity:0; transform:scale(.7); transition:all .3s var(--bounce)); }
.ig-tile:hover .ig-overlay span { opacity:1; transform:scale(1); }

.ig-follow-cta { text-align:center; }
.ig-follow-btn {
  display:inline-flex; align-items:center; gap:.75rem;
  padding:1rem 2.2rem;
  background:linear-gradient(135deg,rgba(247,121,125,.15),rgba(253,160,133,.1));
  border:1px solid rgba(247,121,125,.3);
  color:rgba(255,255,255,.88);
  font-weight:700; font-size:.95rem;
  border-radius:var(--r-f);
  transition:all .3s var(--ease);
}
.ig-follow-btn:hover { transform:translateY(-2px); box-shadow:0 8px 30px rgba(247,121,125,.22); background:linear-gradient(135deg,rgba(247,121,125,.25),rgba(253,160,133,.18)); }
.ig-handle { font-size:.8rem; opacity:.65; }
.ig-follow-btn svg { width:20px; height:20px; flex-shrink:0; }

/* ──────────────────────────────────────────────────
   CONTACT / BOOKING / MAP
────────────────────────────────────────────────── */
.contact-top {
  display:grid; grid-template-columns:1fr 1fr;
  gap:var(--s6); margin-bottom:var(--s7);
}

/* Contact cards */
.contact-cards { display:flex; flex-direction:column; gap:var(--s3); }
.c-card {
  display:flex; align-items:center; gap:var(--s3);
  padding:var(--s4);
  background:var(--bg-soft);
  border:1px solid rgba(14,27,42,.07);
  border-radius:var(--r-md);
  transition:all .25s var(--ease);
}
.c-card:hover { transform:translateX(-4px); box-shadow:var(--sh-md); }
.c-ic {
  width:48px; height:48px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  border-radius:var(--r-sm);
  background:rgba(126,212,214,.1);
}
.c-ic svg { width:24px; height:24px; }
.c-wa  .c-ic { background:rgba(37,211,102,.1);    color:#25D366; }
.c-call.c-ic { background:rgba(126,212,214,.1);   color:var(--teal-d); }
.c-ig  .c-ic { background:rgba(247,121,125,.08);  }
.c-addr.c-ic { background:rgba(201,169,106,.1);   color:var(--gold); }
.c-call .c-ic { color:var(--teal-d); }
.c-label { display:block; font-size:.7rem; font-weight:600; color:var(--ink-faint); letter-spacing:.1em; text-transform:uppercase; font-family:var(--font-ui); }
.c-val   { display:block; font-size:.9rem; font-weight:600; color:var(--ink); margin-top:2px; }
.c-addr  { cursor:default; }

.directions-btn {
  display:flex; align-items:center; justify-content:center; gap:.6rem;
  padding:.85rem;
  background:var(--g-teal-d);
  color:var(--white);
  font-weight:700; font-size:.9rem;
  border-radius:var(--r-md);
  box-shadow:var(--sh-teal);
  transition:all .3s var(--ease);
}
.directions-btn svg { width:18px; height:18px; }
.directions-btn:hover { transform:translateY(-2px); box-shadow:0 12px 32px rgba(75,191,194,.42); }

/* Map */
.map-wrap { border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--sh-lg); }
.map-wrap iframe { border-radius:var(--r-lg); }

/* Booking */
.booking-section {
  background:var(--g-dark);
  border-radius:var(--r-xl);
  padding:var(--s7) var(--s6);
  overflow:hidden; position:relative;
}
.booking-grid {
  display:grid; grid-template-columns:1fr 1.4fr;
  gap:var(--s6); align-items:start;
}
.booking-h3 {
  font-family:var(--font-dis);
  font-size:1.8rem; font-weight:800; color:var(--white);
  margin-bottom:var(--s3);
}
.booking-text p { color:rgba(255,255,255,.6); line-height:1.85; margin-bottom:var(--s4); }
.booking-perks { display:flex; flex-direction:column; gap:.6rem; }
.bp {
  display:flex; align-items:center; gap:.6rem;
  font-size:.85rem; color:var(--teal-light); font-weight:500;
}

/* Form */
.book-form {
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.09);
  border-radius:var(--r-lg);
  padding:var(--s5);
  display:grid; gap:var(--s3);
}
.form-row-2 { display:grid; grid-template-columns:1fr 1fr; gap:var(--s3); }
.fg { display:flex; flex-direction:column; gap:.4rem; }
.fg label { font-size:.78rem; font-weight:600; color:rgba(255,255,255,.5); font-family:var(--font-ui); letter-spacing:.05em; }
.fg input, .fg select, .fg textarea {
  background:rgba(255,255,255,.07);
  border:1.5px solid rgba(255,255,255,.1);
  border-radius:var(--r-sm);
  padding:.75rem 1rem;
  color:var(--white);
  font-size:.9rem;
  transition:all .2s var(--ease);
  direction:rtl;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline:none;
  border-color:rgba(126,212,214,.5);
  background:rgba(255,255,255,.1);
  box-shadow:0 0 0 3px rgba(126,212,214,.1);
}
.fg input::placeholder { color:rgba(255,255,255,.2); }
.fg select option { background:#122436; color:var(--white); }
.fg textarea { resize:vertical; min-height:80px; }

.btn-submit-book {
  display:flex; align-items:center; justify-content:center; gap:.6rem;
  padding:1rem;
  background:var(--g-teal-d);
  color:var(--white);
  font-weight:700; font-size:1rem; font-family:var(--font-ar);
  border-radius:var(--r-md);
  box-shadow:var(--sh-teal);
  transition:all .3s var(--ease);
  border:none; cursor:pointer;
}
.btn-submit-book svg { width:18px; height:18px; }
.btn-submit-book:hover { transform:translateY(-2px); box-shadow:0 12px 36px rgba(75,191,194,.45); }

.form-priv { text-align:center; font-size:.72rem; color:rgba(255,255,255,.25); }

/* Success state */
.book-success {
  grid-column:2; /* align with form column */
  background:rgba(255,255,255,.05);
  border:1px solid rgba(126,212,214,.2);
  border-radius:var(--r-lg);
  padding:var(--s6);
  text-align:center;
}
.suc-ic {
  width:72px; height:72px; margin:0 auto var(--s4);
  background:var(--g-teal-d);
  color:var(--white);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:2rem;
  box-shadow:var(--sh-teal);
}
.book-success h4 { font-size:1.3rem; font-weight:700; color:var(--white); margin-bottom:var(--s2); }
.book-success p  { color:rgba(255,255,255,.55); font-size:.9rem; }

/* ──────────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────────── */
.footer { background:var(--bg-dark); }
.footer-top { padding:var(--s7) 0; }
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr;
  gap:var(--s6);
}
.footer-logo-link { display:flex; align-items:center; gap:.75rem; margin-bottom:var(--s3); }
.fl-icon { width:36px; height:36px; flex-shrink:0; }
.fl-icon svg { width:100%; height:100%; }
.fl-en { display:block; font-family:var(--font-lat); font-size:1rem; font-weight:600; font-style:italic; color:var(--white); }
.fl-ar { display:block; font-size:.7rem; color:rgba(255,255,255,.4); margin-top:1px; }
.footer-tagline { font-size:.82rem; color:var(--teal-light); margin-bottom:var(--s3); line-height:1.6; }
.footer-socials { display:flex; gap:.75rem; }
.fs-link {
  width:38px; height:38px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--r-sm);
  color:rgba(255,255,255,.55);
  transition:all .2s var(--ease);
}
.fs-link svg { width:16px; height:16px; }
.fs-link:hover { background:rgba(126,212,214,.15); border-color:rgba(126,212,214,.3); color:var(--teal-light); transform:translateY(-2px); }

.footer-col h4 { font-size:.82rem; font-weight:700; color:rgba(255,255,255,.88); margin-bottom:var(--s3); text-transform:uppercase; letter-spacing:.1em; font-family:var(--font-ui); }
.footer-col ul { display:flex; flex-direction:column; gap:.5rem; }
.footer-col ul li a { font-size:.83rem; color:rgba(255,255,255,.4); transition:all .2s; }
.footer-col ul li a:hover { color:var(--teal-light); padding-right:.3rem; }

/* Footer contacts */
.footer-contacts { display:flex; flex-direction:column; gap:.7rem; }
.footer-contacts li a,
.footer-contacts li span {
  display:flex; align-items:flex-start; gap:.5rem;
  font-size:.8rem; color:rgba(255,255,255,.4);
  transition:color .2s;
}
.footer-contacts li a:hover { color:var(--teal-light); }
.footer-contacts svg { width:14px; height:14px; flex-shrink:0; margin-top:2px; }

.footer-bottom {
  border-top:1px solid rgba(255,255,255,.07);
  padding:var(--s4) 0;
}
.footer-bottom .wrap {
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:var(--s2);
}
.footer-bottom p { font-size:.78rem; color:rgba(255,255,255,.28); }
.fb-links { display:flex; gap:var(--s3); }
.fb-links a { font-size:.78rem; color:rgba(255,255,255,.28); transition:color .2s; }
.fb-links a:hover { color:var(--teal-light); }
.fb-links span { color:rgba(255,255,255,.2); }

/* ──────────────────────────────────────────────────
   FLOATING BUTTONS
────────────────────────────────────────────────── */
.wa-float {
  position:fixed; bottom:24px; left:24px;
  width:56px; height:56px;
  background:#25D366;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--white);
  z-index:900;
  box-shadow:0 6px 24px rgba(37,211,102,.45);
  transition:all .3s var(--bounce);
}
.wa-float svg { width:28px; height:28px; }
.wa-float:hover { transform:scale(1.12); box-shadow:0 10px 36px rgba(37,211,102,.55); }
.wa-tooltip {
  position:absolute; left:calc(100% + 12px); top:50%;
  transform:translateY(-50%);
  background:rgba(14,27,42,.92);
  color:var(--white); font-size:.75rem; font-weight:600;
  padding:.35rem .8rem; border-radius:var(--r-f);
  white-space:nowrap;
  opacity:0; pointer-events:none;
  transition:opacity .2s;
}
.wa-float:hover .wa-tooltip { opacity:1; }

.btt {
  position:fixed; bottom:24px; right:24px;
  width:46px; height:46px;
  background:rgba(14,27,42,.85);
  border:1px solid rgba(126,212,214,.25);
  border-radius:50%;
  color:var(--teal-light);
  display:flex; align-items:center; justify-content:center;
  z-index:900;
  box-shadow:var(--sh-dark);
  transition:all .3s var(--ease);
}
.btt svg { width:18px; height:18px; }
.btt:hover { background:rgba(75,191,194,.2); transform:translateY(-3px); }

/* ──────────────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────────────── */
@media (max-width:1024px) {
  .hero-inner     { grid-template-columns:1fr; text-align:center; }
  .hero-sub       { max-width:100%; margin-left:auto; margin-right:auto; }
  .hero-btns      { justify-content:center; }
  .hero-stats     { justify-content:center; }
  .hero-visual    { justify-content:center; max-width:500px; margin:0 auto; }
  .fc-1,.fc-2     { display:none; }

  .about-grid     { grid-template-columns:1fr; }
  .about-img-col  { max-width:480px; margin:0 auto; }

  .philo-grid     { grid-template-columns:1fr 1fr; }
  .philo-card-wide { grid-column:span 2; flex-direction:column; gap:var(--s3); }

  .counters-row   { grid-template-columns:repeat(2,1fr); }
  .why-grid       { grid-template-columns:1fr 1fr; }
  .cases-grid     { grid-template-columns:1fr 1fr; }

  .contact-top    { grid-template-columns:1fr; }
  .booking-grid   { grid-template-columns:1fr; }
  .book-success   { grid-column:1; }

  .footer-grid    { grid-template-columns:1fr 1fr; gap:var(--s5); }

  .nav-menu { display:none; }
  .burger   { display:flex; }
}

@media (max-width:768px) {
  :root { --nav-h:66px; }
  .section { padding:var(--s7) 0; }
  .wrap    { padding:0 var(--s4); }

  .hero-h1 { font-size:clamp(2.6rem,8vw,4rem); }

  .philo-grid     { grid-template-columns:1fr; }
  .philo-card-wide { grid-column:span 1; }

  .svcs-grid      { grid-template-columns:1fr; }
  .counters-row   { grid-template-columns:1fr 1fr; }
  .why-grid       { grid-template-columns:1fr; }
  .cases-grid     { grid-template-columns:1fr; }

  .ig-grid        { grid-template-columns:1fr 1fr; grid-template-rows:auto; height:auto; }
  .ig-tile-tall   { grid-row:span 1; }

  .ba-container   { aspect-ratio:4/3; }

  .form-row-2     { grid-template-columns:1fr; }
  .booking-section { padding:var(--s5) var(--s4); }

  .footer-grid    { grid-template-columns:1fr; }
  .footer-bottom .wrap { flex-direction:column; text-align:center; }

  .test-card      { flex:0 0 calc(100% - 1rem); }
  .hero-badge-float { right:10px; bottom:-10px; }

  .badges-row     { grid-template-columns:1fr; }
}

@media (max-width:480px) {
  .hero-stats     { gap:var(--s3); }
  .stat-n         { font-size:1.8rem; }
  .stat-s         { font-size:1.4rem; }
  .counters-row   { grid-template-columns:1fr 1fr; }
  .ctr-n          { font-size:2.2rem; }
  .ig-grid        { grid-template-columns:1fr; height:auto; }
  .ig-tile-tall   { grid-row:span 1; }
}

@media (min-width:1400px) {
  .wrap { max-width:1360px; }
  .hero-h1 { font-size:6.5rem; }
  .sec-title { font-size:3.2rem; }
}
