/* ========================================
   ETRUSK DENTAL CLINIC - MAIN STYLES
   ======================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* === Elementor Brand Colors === */
  --primary:        #0B0B38;   /* dark navy */
  --accent:         #7e8896;   /* English default — soft slate grey */
  --accent-rgb:     126,136,150;/* rgb of --accent, for rgba() usage */
  --accent-hover:   #69727e;   /* darker accent for hover */
  --accent-2:       #0B0B38;   /* secondary flag colour — subtle accents only (EN: navy) */
  --text-color:     #555574;   /* body text */
  --bg-light:       #f0fffe;   /* section bg */
  --white:          #FFFFFF;
  --divider:        #c8eeec;
  --dark-divider:   rgba(255,255,255,0.15);

  /* legacy aliases — all follow --accent so themes cascade */
  --primary-blue:   var(--accent);
  --primary-dark:   #0B0B38;
  --accent-teal:    var(--accent);
  --green:          var(--accent);
  --green-hover:    var(--accent-hover);
  --top-bar-from:   #0B0B38;
  --top-bar-to:     #12124a;
  --gray-light:     transparent;
  --gray:           #e4fffe;
  --text-dark:      #0B0B38;
  --text-gray:      #555574;
  --border:         #c8eeec;
  --shadow:         0 4px 24px rgba(11,11,56,0.10);
  --shadow-lg:      0 8px 40px rgba(11,11,56,0.15);

  --font-main:      'Plus Jakarta Sans', 'Poppins', sans-serif;
  --font-heading:   'Plus Jakarta Sans', 'Montserrat', sans-serif;
  --font-display:   'Plus Jakarta Sans', 'Unbounded', sans-serif;
  --font-mono:      'IBM Plex Mono', ui-monospace, 'Courier New', monospace;
  --radius:  8px;
  --radius-lg: 16px;
}

/* ===== PER-LANGUAGE FLAG THEMES (accent colour only; navy stays for structure) ===== */
/* English — default soft slate grey (set in :root above) */
html[data-lang="it"] { --accent: #009246; --accent-rgb: 0,146,70;  --accent-hover: #007a3a; --accent-2: #CE2B37; } /* Italy green + red */
html[data-lang="ru"] { --accent: #0039A6; --accent-rgb: 0,57,166;  --accent-hover: #002d85; --accent-2: #D52B1E; } /* Russia blue + red */
html[data-lang="de"] { --accent: #E6A800; --accent-rgb: 230,168,0; --accent-hover: #c28f00; --accent-2: #1A1A1A; } /* Germany gold + black */
html[data-lang="fr"] { --accent: #0055A4; --accent-rgb: 0,85,164;  --accent-hover: #004585; --accent-2: #EF4135; } /* France blue + red */
html[data-lang="sq"] { --accent: #e89089; --accent-rgb: 232,144,137; --accent-hover: #db7a71; --accent-2: #2b2b2b; } /* Albania — soft rose (default) */
/* English (no data-lang) — soften the very-dark navy headings so they don't read as black */
html:not([data-lang]) { --text-dark: #2c2c54; }
/* English — main hero heading uses navy (instead of near-black charcoal); the
   .accent half stays the page's grey tone, giving a navy + grey two-tone. */
html:not([data-lang]) .hero-title { color: var(--text-dark); }

html {
  scroll-behavior: smooth;
  overflow-x: clip;   /* no sideways shifting on mobile; keeps sticky working */
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: transparent;
  line-height: 1.6;
  overflow-x: clip;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

img {
  max-width: 100%;
  display: block;
}

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  font-weight: 700;
}
.btn-primary:hover { background: #0fb5aa; border-color: #0fb5aa; }

.btn-primary-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-primary-outline:hover { background: var(--accent); color: var(--primary); }

.btn-green {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  font-weight: 700;
}
.btn-green:hover { background: #0fb5aa; border-color: #0fb5aa; }

.btn-dark {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-dark:hover { background: #18185a; }

.btn-dark-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-dark-outline:hover { background: var(--primary); color: #fff; }

.btn-wa {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  font-weight: 700;
}
.btn-wa:hover { background: #1ebe5b; border-color: #1ebe5b; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }

.btn-cta-white {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  font-size: 1rem;
  padding: 14px 36px;
}
.btn-cta-white:hover { background: rgba(255,255,255,0.25); }

.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 15px 36px; font-size: 0.95rem; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--accent);
  border-style: solid;
  border-width: 0 0 2px;
  border-image: linear-gradient(90deg, var(--accent-2) 0%, var(--accent-2) 100%) 1;
  padding: 9px 0;
  position: relative;
  z-index: 1000;
}

.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.40);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.top-bar-contacts {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-bar-link {
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.top-bar-link i { color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.top-bar-link:hover { color: #fff; }

.top-bar-divider { color: rgba(255,255,255,0.3); }

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar-social-link {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  transition: color 0.2s;
}
.top-bar-social-link:hover { color: #fff; }

.lang-switcher { position: relative; }
.lang-current {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 5px 11px;
  border-radius: 30px;
  transition: background .18s ease, border-color .18s ease;
}
.lang-current:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.38); }
.lang-current img { border-radius: 2px; display: block; }
.lang-current i { font-size: 0.58rem; transition: transform .2s ease; opacity: .85; }
.lang-switcher.open .lang-current i { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 168px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(11,11,56,0.28);
  padding: 6px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
  z-index: 1200;
}
.lang-switcher.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.lang-menu li { margin: 0; }
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  padding: 9px 12px;
  border-radius: 8px;
  transition: background .15s ease, color .15s ease;
}
.lang-menu a:hover { background: rgba(var(--accent-rgb),0.12); color: var(--accent); }
.lang-menu a img { border-radius: 2px; flex: none; display: block; }
.lang-menu li.is-active a { background: rgba(var(--accent-rgb),0.14); color: var(--accent); }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 999;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.12); }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon svg { width: 48px; height: 48px; }
.logo-img { height: 38px; width: auto; display: block; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary-dark);
  letter-spacing: 0.3px;
}
.logo-sub {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--primary-blue);
  text-transform: uppercase;
}
.logo-country {
  font-size: 0.62rem;
  color: var(--text-gray);
  letter-spacing: 0.5px;
}

.logo-white .logo-name,
.logo-white .logo-sub,
.logo-white .logo-country { color: #fff; }

/* NAV */
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.8px;
  color: var(--text-dark);
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-link i { font-size: 0.6rem; transition: transform 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--primary-blue); }
.nav-item-dropdown:hover .nav-link i { transform: rotate(180deg); }

/* Dropdown */
.nav-item-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 200;
  border-top: 3px solid var(--primary-blue);
}
.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.15s;
}
.dropdown-menu li a:hover {
  background: var(--gray-light);
  color: var(--primary-blue);
  padding-left: 26px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav-close { display: none; }

/* ===== HERO — Flat, accent-tinted (Health Tourism) ===== */
.hero {
  /* colours follow the active language accent (EN = teal, SQ = soft red, …) */
  --h-bg1:   color-mix(in srgb, var(--accent) 20%, #ffffff);
  --h-bg2:   color-mix(in srgb, var(--accent) 30%, #ffffff);
  --h-accent: color-mix(in srgb, var(--accent) 82%, #181818);
  --h-accent-hover: color-mix(in srgb, var(--accent) 66%, #000000);
  position: relative;
  display: block;
  padding: 0;
  background: linear-gradient(180deg, var(--h-bg1) 0%, var(--h-bg2) 100%);
  overflow: visible;
}

/* Hero composite photo (doctor on the right, faded space on the left for text).
   Photo is driven by per-language variables so the size/fit stay identical and
   only the image swaps when the language changes (see html[data-lang=...] below). */
.hero--coral {
  --hero-photo:   url("../img/hero-en.webp");     /* English (default / no data-lang) */
  --hero-photo-m: url("../img/hero-en-m.webp");   /* square crop for mobile */
  background: var(--hero-photo) right 64px / cover no-repeat,
              #f4efe8;
}

/* Per-language hero photo — same size/fit/placement, only the image swaps. */
html[data-lang="sq"] .hero--coral { --hero-photo: url("../img/hero-sq.webp"); --hero-photo-m: url("../img/hero-sq-m.webp"); }
html[data-lang="it"] .hero--coral { --hero-photo: url("../img/hero-it.webp"); --hero-photo-m: url("../img/hero-it-m.webp"); }
html[data-lang="ru"] .hero--coral { --hero-photo: url("../img/hero-ru.webp"); --hero-photo-m: url("../img/hero-ru-m.webp"); }
html[data-lang="de"] .hero--coral { --hero-photo: url("../img/hero-de.webp"); --hero-photo-m: url("../img/hero-de-m.webp"); }
html[data-lang="fr"] .hero--coral { --hero-photo: url("../img/hero-fr.webp"); --hero-photo-m: url("../img/hero-fr-m.webp"); }

.hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 24px 0;
}

.hero-text-col {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-kicker {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--h-accent);
  margin-bottom: 14px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 3.9vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.5px;
  color: #1c1c22;
  margin-bottom: 18px;
  text-shadow: none;
}
.hero-title .accent { color: var(--h-accent); }

.hero-sub {
  color: #43434e;
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 480px;
  min-height: 4.7em;          /* reserve ~3 lines so the form sits at the same spot in every language */
  margin-bottom: 20px;
  text-shadow: none;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}
.hero-btn-red {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(var(--accent-rgb),0.32);
}
.hero-btn-red:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.hero-btn-white {
  background: #fff;
  border-color: #fff;
  color: var(--h-accent);
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(40,20,15,0.14);
}
.hero-btn-white:hover { background: #fff; color: var(--accent); }

/* WHITE FORM CARD — the real form */
.hero-quote-card {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 440px;
  margin-bottom: -255px;   /* lower half spills onto the bg below */
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 26px 60px rgba(40,30,30,0.18);
  padding: 24px 26px;
}
.hero-form-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-form-title i { color: var(--h-accent); }
.hero-quote-card .form-group { margin-bottom: 13px; }
.hero-quote-card .form-group:last-child { margin-bottom: 0; }
.hero-quote-card .form-group label {
  display: block;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.hero-quote-card .form-group input {
  width: 100%;
  background: #f7f7fb;
  border: 1px solid #e6e6ef;
  border-radius: 9px;
  color: var(--primary);
  font-size: 0.9rem;
  padding: 12px 13px;
}
.hero-quote-card .form-group input::placeholder { color: #9a9ab0; }
.hero-quote-card .form-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb),0.16);
  background: #fff;
}
.hero-quote-card .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 13px;
}
.hero-quote-card .btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

/* ===== SITE CHROME — soft top bar + pill menu (ALL pages) ===== */
.top-bar {
  background: linear-gradient(90deg,
    color-mix(in srgb, var(--accent) 15%, #ffffff) 0%,
    color-mix(in srgb, var(--accent) 5%, #ffffff) 100%);   /* soft fade toward white */
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 16%, #ffffff);
}
/* soft top bar → dark text for readability */
.top-bar-cta { color: var(--primary); }
.pulse-dot { background: var(--accent); }
.pulse-dot::after { background: color-mix(in srgb, var(--accent) 35%, transparent); }
.top-bar-link { color: #3c3c46; }
.top-bar-link i { color: var(--accent); }
.top-bar-link:hover { color: var(--primary); }
.top-bar-divider { color: rgba(0,0,0,0.18); }
.top-bar-social-link { color: #4a4a55; }
.top-bar-social-link:hover { color: var(--accent); }
.lang-current { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.12); color: var(--primary); }
.lang-current i { color: var(--primary); }

/* Header: soft pastel band with a floating pill menu */
.header {
  background: color-mix(in srgb, var(--accent) 9%, #ffffff);
  box-shadow: none;
  padding: 9px 0;
}
.header.scrolled { box-shadow: 0 4px 20px rgba(40,20,15,0.10); }
.header-inner {
  height: 56px;
  background: color-mix(in srgb, var(--accent) 5%, #ffffff);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(40,20,15,0.10);
}
.header .nav-link:hover,
.header .nav-link.active { color: color-mix(in srgb, var(--accent) 82%, #181818); }

/* Homepage only: transparent pill that floats over the hero AND stays pinned on scroll */
body.home .header { position: sticky; top: 0; background: transparent; box-shadow: none; z-index: 999; }
body.home .header.scrolled { box-shadow: none; }
body.home .hero { margin-top: -74px; padding-top: 74px; padding-bottom: 110px; }
/* room for the form card that spills out of the hero */
body.home .welcome-section { padding-top: 175px; }

/* Disable legacy hero elements */
.hero-overlay,
.hero-content,
.hero-bottom-text,
.hero-form-wrap,
.hero-form-card,
.hero-photo,
.hero-panel { display: none; }

.form-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 16px;
  text-align: center;
}

.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.req { color: #e53e3e; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.88rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(26,111,196,0.1);
}

.phone-input {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.phone-input:focus-within {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(26,111,196,0.1);
}
.phone-flag {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  background: var(--gray-light);
  border-right: 1.5px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.phone-flag img { border-radius: 2px; }
.phone-input input {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  flex: 1;
}

/* ===== SECTION COMMON ===== */
.section-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.section-watermark-wrap {
  position: relative;
  text-align: center;
  margin-bottom: 16px;
}
.section-watermark-wrap.left { text-align: left; }

.watermark-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 900;
  color: rgba(var(--accent-rgb),0.08);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 4px;
  z-index: 0;
}
.section-watermark-wrap.left .watermark-text {
  left: 0;
  transform: translate(0, -50%);
}

.section-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  color: var(--text-dark);
  letter-spacing: -0.025em;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 48px;
}

.section-subtitle-center {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-dark);
  max-width: 680px;
  margin: 0 auto 48px;
  font-weight: 400;
  line-height: 1.7;
}

.text-blue { color: var(--accent); }

/* ===== WELCOME SECTION ===== */
/* ===== WELCOME / ABOUT ===== */
.welcome-section {
  background: transparent;
  overflow: hidden;
  padding: 90px 0;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ---- left: content ---- */
.welcome-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.welcome-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 10px 0 16px;
}

.welcome-heading span { color: var(--accent); }

.welcome-text {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 22px;
}

.welcome-text strong { color: var(--primary); font-weight: 700; }

/* checklist */
.welcome-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.welcome-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 500;
}

.welcome-check-item i {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

/* stats */
.welcome-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  margin-bottom: 24px;
}

.welcome-stat { display: flex; flex-direction: column; gap: 3px; }

.welcome-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.wsr-num {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.welcome-stat-label {
  font-size: 0.72rem;
  color: var(--text-gray);
  font-weight: 500;
  line-height: 1.4;
}

.welcome-stat-div {
  width: 1px;
  height: 38px;
  background: var(--divider);
  flex-shrink: 0;
}

/* doctor row */
.welcome-doctor-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(var(--accent-rgb),0.2);
  box-shadow: 0 4px 20px rgba(var(--accent-rgb),0.08);
}

.welcome-doctor-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--accent);
}

.welcome-doctor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-doctor-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.welcome-doctor-info strong {
  font-size: 0.92rem;
  color: var(--primary);
  font-weight: 700;
}

.welcome-doctor-info span {
  font-size: 0.75rem;
  color: var(--text-gray);
}

.welcome-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}

.welcome-cta-btn:hover {
  background: #0fb5aa;
  transform: translateX(3px);
}

.welcome-cta-btn--wa { background: #25D366; }
.welcome-cta-btn--wa:hover { background: #1ebe5b; }
.welcome-cta-btn--wa i { font-size: 1.05rem; }

/* ---- right: photo ---- */
.welcome-photo-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* decorative teal block behind the frame */
.welcome-photo-deco {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 65%;
  height: 75%;
  background: linear-gradient(135deg, var(--accent) 0%, #0fb5aa 100%);
  border-radius: 20px;
  opacity: 0.12;
  z-index: 0;
}

.welcome-photo-frame {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 64px rgba(0,0,0,0.13), 0 4px 16px rgba(var(--accent-rgb),0.12);
  z-index: 1;
}

.welcome-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* floating badge on the photo */
.welcome-photo-badge-float {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.welcome-photo-badge-float i {
  font-size: 1.3rem;
  color: var(--accent);
}

.welcome-photo-badge-float div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.welcome-photo-badge-float strong {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 700;
}

.welcome-photo-badge-float span {
  font-size: 0.7rem;
  color: var(--text-gray);
}

/* ===== HOW WE WORK ===== */
.how-section {
  padding: 100px 0 110px;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.how-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb),0.07) 0%, rgba(var(--accent-rgb),0.02) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.how-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1.5px solid rgba(var(--accent-rgb),0.14);
  pointer-events: none;
}

.how-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1.5px solid rgba(var(--accent-rgb),0.10);
  pointer-events: none;
}

.how-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.how-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
  margin-top: 10px;
  margin-bottom: 16px;
}

.how-title span {
  color: var(--accent);
}

.how-subtitle {
  font-size: 0.96rem;
  color: var(--text-gray);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.step-card {
  text-align: center;
  padding: 36px 24px 32px;
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 18px;
  border: 1px solid rgba(11,11,56,0.07);
  box-shadow: 0 4px 20px rgba(11,11,56,0.07), 0 1px 4px rgba(11,11,56,0.04);
  transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.28s;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 32px rgba(11,11,56,0.12), 0 2px 8px rgba(var(--accent-rgb),0.10);
  border-color: rgba(var(--accent-rgb),0.22);
}

.step-card:hover::before {
  opacity: 1;
}

.step-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--accent-rgb),0.14) 0%, rgba(var(--accent-rgb),0.06) 100%);
  border: 1.5px solid rgba(var(--accent-rgb),0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.28s, box-shadow 0.28s;
}

.step-card:hover .step-icon-wrap {
  background: linear-gradient(135deg, rgba(var(--accent-rgb),0.24) 0%, rgba(var(--accent-rgb),0.12) 100%);
  box-shadow: 0 0 0 6px rgba(var(--accent-rgb),0.08);
}

.step-icon-wrap i {
  font-size: 1.3rem;
  color: var(--accent);
}

.step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.855rem;
  color: var(--text-gray);
  line-height: 1.74;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  display: flex;
  align-items: stretch;
  min-height: 320px;
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  overflow: hidden;
  position: relative;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(var(--accent-rgb),0.06) 0%, transparent 55%);
  pointer-events: none;
}

.cta-image {
  flex: 0 0 47%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.cta-ba-card {
  width: 100%;
  max-width: none;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
  cursor: default;
}

/* Otomatik (kendi kendine) tarama — hover gerekmez */
.cta-ba-card .ba-rc-before {
  animation: cta-ba-reveal 7s ease-in-out infinite;
}
.cta-ba-card .ba-rc-sweep {
  animation: cta-ba-beam 7s ease-in-out infinite;
}
.cta-ba-card .ba-rc-tag--after {
  animation: cta-ba-tag 7s ease infinite;
}
.cta-ba-card .ba-rc-after img {
  transform: scale(1);
}
.cta-ba-card .ba-rc-hint { display: none; }

@keyframes cta-ba-reveal {
  0%, 15%   { clip-path: inset(0 0 0 0); }
  40%, 58%  { clip-path: inset(0 100% 0 0); }
  83%, 100% { clip-path: inset(0 0 0 0); }
}
/* Beam position keyframes (15→40, 58→83) match the reveal EXACTLY so the
   image only changes right at the beam. Opacity changes happen during the
   holds (where left is constant) so they never distort the sweep timing. */
@keyframes cta-ba-beam {
  0%,  10% { left: 100%; opacity: 0; }
  15%      { left: 100%; opacity: 0.9; }
  40%      { left: 0%;   opacity: 0.9; }
  46%      { left: 0%;   opacity: 0; }
  53%      { left: 0%;   opacity: 0; }
  58%      { left: 0%;   opacity: 0.9; }
  83%      { left: 100%; opacity: 0.9; }
  90%, 100%{ left: 100%; opacity: 0; }
}
@keyframes cta-ba-tag {
  0%, 36%   { opacity: 0; transform: translateX(6px); }
  42%, 56%  { opacity: 1; transform: translateX(0); }
  62%, 100% { opacity: 0; transform: translateX(6px); }
}

@media (prefers-reduced-motion: reduce) {
  .cta-ba-card .ba-rc-before,
  .cta-ba-card .ba-rc-sweep,
  .cta-ba-card .ba-rc-tag--after { animation: none; }
}

.cta-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 52px 60px 52px 40px;
  gap: 18px;
}

.cta-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
}

.cta-label i {
  font-size: 13px;
}

.cta-content p {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.45;
  margin: 0;
  max-width: 440px;
}

.cta-content p strong {
  color: var(--accent);
}

.cta-content .btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(var(--accent-rgb),0.30);
  transition: transform .25s ease, box-shadow .25s ease;
}

.cta-content .btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(var(--accent-rgb),0.45);
}

/* legacy .cta-text — kept for safety */
.cta-text {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.cta-text p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 400;
}
.cta-text strong { font-weight: 700; }

/* ===== WHO ARE WE ===== */
.who-section {
  padding: 96px 0;
  background: var(--gray-light);
}

/* Split layout */
.who-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* LEFT — content */
.who-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 5px 14px;
  background: rgba(var(--accent-rgb),0.08);
  border-radius: 50px;
  border: 1px solid rgba(var(--accent-rgb),0.22);
}

.who-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--primary);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.who-title-accent {
  font-style: normal;
  color: var(--accent);
}

.who-desc {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Stats row */
.who-stats-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 32px 0 36px;
  padding: 22px 24px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.who-stat-item {
  flex: 1;
  text-align: center;
}
.who-stat-item strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.who-stat-item span {
  font-size: 0.75rem;
  color: var(--text-gray);
  font-weight: 600;
}
.who-stat-div {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

.who-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 28px;
}
.who-btns .btn {
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 0.9rem;
}
.who-btns .btn-wa-lg {
  padding: 14px 28px;
  font-size: 0.9rem;
}

/* RIGHT — photo */
.who-photo-wrap {
  position: relative;
}

.who-photo-deco {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 16px;
  left: 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(var(--accent-rgb),0.15) 0%, rgba(var(--accent-rgb),0.03) 100%);
  border: 1.5px solid rgba(var(--accent-rgb),0.22);
  z-index: 0;
}

.doctor-photo {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(12,39,70,0.16);
  position: relative;
  z-index: 1;
  display: block;
}

.who-photo-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  z-index: 2;
  background: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 28px rgba(12,39,70,0.14);
  border-left: 3px solid var(--accent);
}
.who-photo-badge i {
  font-size: 1.4rem;
  color: var(--accent);
}
.who-photo-badge strong {
  display: block;
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 700;
}
.who-photo-badge span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-gray);
}

/* Büyük doktor fotoğrafı */
.who-photo-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 16px 48px rgba(11,11,56,0.18);
  margin-bottom: 14px;
}
.who-photo-main > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Video block - paragrafın altında */
.who-video-block {
  display: block;
  position: relative;
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  text-decoration: none;
  box-shadow: 0 16px 48px rgba(11,11,56,0.18);
}
.who-video-block img,
.who-video-block video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.who-video-block:hover img { transform: scale(1.04); }

.who-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,56,0.72) 0%, rgba(11,11,56,0.15) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: background 0.3s;
}
.who-video-block:hover .who-video-overlay {
  background: linear-gradient(to top, rgba(11,11,56,0.55) 0%, rgba(11,11,56,0.1) 55%, transparent 100%);
}

.who-video-play {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.who-video-play i {
  font-size: 2rem;
  color: #fff;
  transition: color 0.3s, transform 0.3s;
}
.who-video-block:hover .who-video-play {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.1);
}
.who-video-block:hover .who-video-play i {
  color: var(--primary);
}

.who-video-badge-pill {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
}

/* Doctor card */
.who-doctor-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(11,11,56,0.07);
}

.who-doctor-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(var(--accent-rgb),0.3);
}
.who-doctor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.who-doctor-info {
  flex: 1;
  min-width: 0;
}
.who-doctor-info strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 2px;
}
.who-doctor-info span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-gray);
  margin-bottom: 5px;
}
.who-doctor-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.who-doctor-stars i { font-size: 0.65rem; color: #f5a623; }
.who-doctor-stars span {
  display: inline;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  margin-left: 4px;
}

.who-doctor-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.who-doctor-cta:hover { background: #0fb5aa; }

/* ===== TREATMENTS ===== */
.treatments-section {
  padding: 96px 0;
  background: var(--gray-light);
}

.treatments-intro {
  text-align: center;
  margin-bottom: 44px;
  position: relative;
}

.treatments-intro .section-label {
  margin-bottom: 14px;
}

.treatments-title {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  position: relative;
  display: inline-block;
}

.treatments-accent {
  font-style: normal;
  color: var(--accent);
  position: relative;
}
.treatments-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.5;
}

.treatments-sub {
  font-size: 0.97rem;
  color: var(--text-gray);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===== TREATMENT SLIDER ===== */
.tsl-wrap {
  position: relative;
  overflow: hidden;
  padding: 8px 0 48px;
}

.tsl-track {
  display: flex;
  gap: 16px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  padding: 12px 0;
}

.tsl-item {
  flex: 0 0 38%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 360px;
  opacity: 0.38;
  transform: scale(0.91);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s;
  cursor: pointer;
  box-shadow: none;
}
.tsl-item.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 24px 60px rgba(11,11,56,0.18);
}

.tsl-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tsl-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,56,0.85) 0%, rgba(11,11,56,0.1) 55%, transparent 100%);
  z-index: 1;
}

.tsl-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px;
  z-index: 2;
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.45s 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.45s 0.15s;
}
.tsl-item.active .tsl-info {
  transform: translateY(0);
  opacity: 1;
}


.tsl-info h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}

.tsl-info p,
.tsl-info > div {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin: 0 0 14px;
  max-width: 320px;
}
.tsl-info > div p { color: inherit; margin: 0 0 8px; }
.tsl-info > div p:last-child { margin-bottom: 0; }

.tsl-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s;
}
.tsl-btn:hover { background: var(--accent-hover); }

/* Nav buttons */
.tsl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s;
  z-index: 10;
}
.tsl-nav--prev {
  left: 8px;
  background: rgba(255,255,255,0.95);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(11,11,56,0.15);
}
.tsl-nav--next {
  right: 8px;
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(var(--accent-rgb),0.35);
}
.tsl-nav--prev:hover { background: var(--primary); color: #fff; }
.tsl-nav--next:hover { background: #0fb5aa; }

/* Dots */
.tsl-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.tsl-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}
.tsl-dot.active {
  background: var(--accent);
  width: 22px;
  border-radius: 50px;
}

/* ===== BEFORE AFTER ===== */
/* ===== BEFORE / AFTER — Creative Reveal ===== */
.before-after-section {
  position: relative;
  padding-top: 60px;
  /* transparent base so it flows into the unified page field; keep only faint navy depth */
  background:
    radial-gradient(ellipse 700px 500px at 20% 75%,  rgba(11,11,56,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 80% 60%,  rgba(11,11,56,0.04) 0%, transparent 70%);
  overflow: hidden;
}

/* Faint "scanner blueprint" grid — reinforces the scan theme, masked to fade at edges */
.before-after-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(var(--accent-rgb),0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-rgb),0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 42%, #000 0%, transparent 78%);
  mask-image: radial-gradient(ellipse 85% 75% at 50% 42%, #000 0%, transparent 78%);
}

/* Slow-drifting soft teal glow — keeps it alive without leaving the ambiance */
.before-after-section::after {
  content: '';
  position: absolute;
  top: 34%;
  left: 50%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(var(--accent-rgb),0.12) 0%, rgba(var(--accent-rgb),0) 68%);
  animation: ba-bg-drift 16s ease-in-out infinite;
}
@keyframes ba-bg-drift {
  0%, 100% { transform: translate(-68%, -55%) scale(1); }
  50%      { transform: translate(-32%, -42%) scale(1.18); }
}

/* Keep all real content above the background layers */
.before-after-section > * {
  position: relative;
  z-index: 1;
}

/* Dark header strip */
.ba-dark-header {
  padding: 52px 0 36px;
}
.ba-dark-header-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.ba-dark-header-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ba-dark-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ba-dark-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  letter-spacing: -0.02em;
  color: var(--primary);
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 8px;
}
.ba-dark-title em {
  font-style: normal;
  color: var(--accent);
}
.ba-dark-sub {
  font-size: 0.88rem;
  color: var(--text-gray);
  letter-spacing: 0.5px;
}
.ba-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-gray);
  font-weight: 600;
  font-size: 0.88rem;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  padding: 9px 22px;
  transition: all 0.25s;
  white-space: nowrap;
  flex-shrink: 0;
}
.ba-view-all:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Reveal grid */
.ba-reveal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

/* Individual reveal card */
.ba-reveal-card {
  position: relative;
  overflow: hidden;
  height: 360px;
  cursor: pointer;
  border-radius: 16px;
  box-shadow:
    0 8px 32px rgba(11,11,56,0.18),
    0 0 0 1px rgba(11,11,56,0.08),
    0 0 60px rgba(11,11,56,0.10);
  transition: box-shadow 0.4s, transform 0.4s;
}
.ba-reveal-card:hover {
  box-shadow:
    0 16px 48px rgba(11,11,56,0.28),
    0 0 0 1px rgba(11,11,56,0.12),
    0 0 80px rgba(11,11,56,0.16);
  transform: translateY(-4px);
}
.ba-reveal-card--tall {
  height: 360px;
  box-shadow:
    0 12px 40px rgba(11,11,56,0.22),
    0 0 0 1px rgba(11,11,56,0.1),
    0 0 80px rgba(11,11,56,0.13);
}

/* After image — base layer */
.ba-rc-after {
  position: absolute;
  inset: 0;
}
.ba-rc-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.7s ease;
}
.ba-reveal-card:hover .ba-rc-after img {
  transform: scale(1);
}

/* Before image — auto-scanned away by the beam */
.ba-rc-before {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 0);
  z-index: 2;
  transition: clip-path 0.85s cubic-bezier(0.77, 0, 0.175, 1);
}
/* Mouse over → scan the "before" away, revealing the "after" */
.ba-reveal-card:hover .ba-rc-before {
  clip-path: inset(0 100% 0 0);
}
.ba-rc-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}
.ba-rc-before-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,56,0.32) 0%, transparent 45%);
}

/* Vertical scanner beam — follows the mouse-triggered reveal */
.ba-rc-sweep {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  left: 100%;
  z-index: 3;
  background: var(--accent);
  box-shadow: 0 0 10px 1px rgba(var(--accent-rgb),0.45);
  pointer-events: none;
  opacity: 0;
  transition: left 0.85s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.3s ease;
}
.ba-reveal-card:hover .ba-rc-sweep {
  left: 0%;
  opacity: 0.85;
}
/* Soft scanning glow trailing the beam */
.ba-rc-sweep::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 34px;
  background: linear-gradient(to left, rgba(var(--accent-rgb),0.14), transparent);
  pointer-events: none;
}

/* Tags */
.ba-rc-tag {
  position: absolute;
  z-index: 5;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 4px 11px;
  border-radius: 50px;
}
.ba-rc-tag--before {
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
}
.ba-rc-tag--after {
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: var(--primary);
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.4s 0.4s, transform 0.4s 0.4s;
}
.ba-reveal-card:hover .ba-rc-tag--after {
  opacity: 1;
  transform: translateX(0);
}

/* Scan prompt pill — invites hover, fades once the scan begins */
.ba-rc-hint {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(11,11,56,0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(var(--accent-rgb),0.35);
  border-radius: 50px;
  padding: 4px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}
.ba-rc-hint i {
  animation: ba-hint-pulse 1.4s ease-in-out infinite;
}
@keyframes ba-hint-pulse {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 1; }
}
.ba-reveal-card:hover .ba-rc-hint { opacity: 0; }

/* Info bar at bottom */
.ba-rc-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(11,11,56,0.95) 0%, transparent 100%);
}
.ba-rc-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  color: rgba(var(--accent-rgb),0.25);
  line-height: 1;
  flex-shrink: 0;
}
.ba-rc-info strong {
  flex: 1;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}
.ba-rc-dur {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(var(--accent-rgb),0.12);
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid rgba(var(--accent-rgb),0.25);
}

/* CTA */
.ba-dark-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 36px 0 52px;
}

.view-all-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 8px 20px;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.view-all-link:hover { border-color: var(--accent); color: var(--accent); }

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
  background: #dffaf9;
  border-top: 1px solid #b8e8e5;
  border-bottom: 1px solid #b8e8e5;
  overflow: hidden;
  padding: 14px 0;
}
.marquee-inner {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
}
.marquee-inner span {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-blue);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== HAPPY SMILES — Smile Wall ===== */
.happy-smiles-section {
  padding: 96px 0 90px;
  overflow: hidden;
}

.hs-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
  padding: 0 24px;
}
.hs-head .section-label { justify-content: center; display: inline-flex; align-items: center; gap: 8px; }
.hs-head .treatments-sub { margin: 14px auto 0; }

/* Smile wall — full bleed, fades at edges */
.smile-wall {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 56px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.smile-row {
  display: flex;
  overflow: hidden;
}

.smile-track {
  display: flex;
  gap: 18px;
  flex-shrink: 0;
  width: max-content;
  will-change: transform;
}

.smile-row--ltr .smile-track {
  animation: smile-scroll-ltr 55s linear infinite;
}
.smile-row--rtl .smile-track {
  animation: smile-scroll-rtl 55s linear infinite;
}

/* Pause the whole wall on hover for a tactile feel */
.smile-wall:hover .smile-track {
  animation-play-state: paused;
}

@keyframes smile-scroll-ltr {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes smile-scroll-rtl {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.smile-pic {
  margin: 0;
  flex-shrink: 0;
  width: 210px;
  height: 280px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(11,11,56,0.10);
  cursor: zoom-in;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s;
}
/* Treatment-page walls are display-only — no zoom cursor */
.quote-band .smile-pic { cursor: default; }
.smile-pic::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 22px;
  pointer-events: none;
}
.smile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%; /* bias crop toward faces (upper area) so heads aren't cut off */
  display: block;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), filter 0.4s;
  filter: saturate(0.92);
}

/* Subtle feedback on the thumbnail — the real enlarge happens in the overlay below */
.smile-pic:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 22px 50px rgba(var(--accent-rgb),0.28);
  z-index: 2;
}
.smile-pic:hover img {
  filter: saturate(1.1);
}

/* ===== Custom 3D tooth cursor (desktop / fine-pointer only) ===== */
@media (hover: hover) and (pointer: fine) {
  html.tooth-cursor-on,
  html.tooth-cursor-on * { cursor: none !important; }
}
.tooth-cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  pointer-events: none;
  z-index: 99999;
  background: url("../img/tooth.webp") center / contain no-repeat;
  filter: drop-shadow(0 3px 6px rgba(11,11,56,0.35));
  transform: translate(-200px, -200px) translate(-50%, -50%);
  transition: width 0.18s ease, height 0.18s ease, opacity 0.25s ease;
  will-change: transform;
}
.tooth-cursor.is-hover { width: 44px; height: 44px; }
/* Never show the tooth cursor on touch / mobile */
@media (hover: none), (pointer: coarse), (max-width: 768px) {
  .tooth-cursor { display: none !important; }
}

/* ===== Instagram-style full-image preview (hover on desktop / press-hold on mobile) ===== */
.smile-zoom-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 5vw;
  background: rgba(11,11,56,0.80);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.smile-zoom-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  cursor: zoom-out;
}
.smile-zoom-overlay img {
  max-width: 80vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
  transform: scale(0.94);
  transition: transform 0.28s cubic-bezier(0.22,1,0.36,1);
}
.smile-zoom-overlay.is-visible img {
  transform: scale(1);
}

/* Gallery nav arrows + close */
.smile-zoom-nav,
.smile-zoom-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.30);
  background: rgba(255,255,255,0.12);
  color: #fff;
  cursor: pointer;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  z-index: 2;
}
.smile-zoom-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  font-size: 1.25rem;
}
.smile-zoom-prev { left: 3vw; }
.smile-zoom-next { right: 3vw; }
.smile-zoom-nav:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-50%) scale(1.08);
}
.smile-zoom-close {
  top: 24px;
  right: 26px;
  width: 46px;
  height: 46px;
  font-size: 1.1rem;
}
.smile-zoom-close:hover { background: var(--accent); color: var(--primary); }

@media (max-width: 600px) {
  .smile-zoom-nav { width: 44px; height: 44px; font-size: 1rem; }
  .smile-zoom-prev { left: 8px; }
  .smile-zoom-next { right: 8px; }
}

.smiles-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .smile-pic { width: 165px; height: 220px; border-radius: 18px; }
  .smile-pic::after { border-radius: 18px; }
  .smile-wall { gap: 12px; }
  .smile-track { gap: 12px; }
}

@media (max-width: 480px) {
  .smile-pic { width: 135px; height: 180px; }
  .smile-row--ltr .smile-track,
  .smile-row--rtl .smile-track { animation-duration: 38s; }
}

/* Reduced motion: stop the scroll */
@media (prefers-reduced-motion: reduce) {
  .smile-row--ltr .smile-track,
  .smile-row--rtl .smile-track { animation: none; }
}

/* ===== VIDEOS ===== */
.videos-section {
  padding: 96px 0;
}

.videos-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-bottom: 40px;
}

.video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 200px;
  display: block;
  box-shadow: 0 10px 30px rgba(11,11,56,0.12);
  transition: transform 0.35s, box-shadow 0.35s;
}
.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(var(--accent-rgb),0.22);
}

/* featured spans both rows on the left */
.video-card--main {
  grid-row: 1 / span 2;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.video-card:hover img { transform: scale(1.06); }

.video-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,56,0.88) 0%, rgba(11,11,56,0.15) 55%, transparent 100%);
  z-index: 1;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.video-play i { color: #fff; font-size: 1.2rem; margin-left: 3px; }
.video-card:hover .video-play {
  background: var(--accent);
  border-color: var(--accent);
  transform: translate(-50%, -50%) scale(1.1);
}
.video-card:hover .video-play i { color: var(--primary); }

/* pulsing ring around play button on featured */
.video-card--main .video-play::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  animation: video-pulse 2s ease-out infinite;
}
@keyframes video-pulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.45); opacity: 0; }
}

.video-card-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.video-cat {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
}
.video-card-meta strong {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  line-height: 1.3;
}
.video-card--main .video-card-meta strong { font-size: 1.3rem; }
.video-dur {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.7);
}

.videos-cta { text-align: center; }
.videos-cta .fab.fa-youtube { color: #ff0000; }

@media (max-width: 768px) {
  .videos-grid { grid-template-columns: 1fr; }
  .video-card--main { grid-row: auto; }
  .video-card { min-height: 200px; }
}

/* ===== TREATMENT DETAILS GRID ===== */
.treatment-details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.treatment-detail-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  border: 1.5px solid var(--border);
  transition: all 0.2s;
}
.treatment-detail-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 4px 16px rgba(26,111,196,0.1);
  transform: translateY(-2px);
}
.treatment-detail-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.treatment-duration {
  display: inline-block;
  background: rgba(26,111,196,0.1);
  color: var(--primary-blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.treatment-detail-card p {
  font-size: 0.82rem;
  color: var(--text-gray);
  line-height: 1.65;
}

.btn-primary-solid {
  background: var(--accent);
  color: var(--primary);
  border: 2px solid var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.25s;
}
.btn-primary-solid:hover { background: #0fb5aa; border-color: #0fb5aa; }

/* ===== BLOGS ===== */
.blogs-section {
  padding: 96px 0;
  background: var(--gray-light);
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  height: 220px;
  overflow: hidden;
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-image img { transform: scale(1.06); }

.blog-content {
  padding: 24px;
}
.blog-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.45;
  margin-bottom: 10px;
}
.blog-content p {
  font-size: 0.87rem;
  color: var(--text-gray);
  line-height: 1.65;
  margin-bottom: 16px;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-blue);
  font-size: 0.85rem;
  font-weight: 600;
  transition: gap 0.2s;
}
.blog-read-more:hover { gap: 10px; }

.blogs-view-all {
  text-align: center;
  margin-top: 36px;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 96px 0;
  background: var(--gray-light);
}

.faq-grid {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--primary-blue); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: background 0.2s, color 0.2s;
}
.faq-item.open .faq-question {
  background: var(--primary-blue);
  color: #fff;
}
.faq-question i {
  flex-shrink: 0;
  font-size: 0.8rem;
  transition: transform 0.3s;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p {
  padding: 18px 22px;
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.75;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 96px 0;
  background: var(--gray-light);
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 16px 0 40px;
  flex-wrap: wrap;
}
.rating-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: var(--shadow);
}
.rating-badge .stars { display: flex; gap: 3px; }
.rating-badge .stars i { color: #f59e0b; font-size: 0.9rem; }
.rating-badge--google { text-decoration: none; transition: box-shadow .2s, transform .2s; }
.rating-badge--google:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.rating-google-g { font-size: 1.1rem; color: #4285F4; }
.rating-brand { font-weight: 700; font-size: 0.92rem; color: var(--text-dark); }
.rating-num {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.rating-sep { color: var(--text-gray); }
.rating-count {
  font-size: 0.85rem;
  color: var(--text-gray);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px 28px;
  box-shadow: 0 4px 28px rgba(11,11,56,0.07);
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(11,11,56,0.12);
}
/* Swipe dots — shown on mobile only (active dot is a wider pill) */
.testi-dots { display: none; justify-content: center; gap: 7px; margin-top: 20px; }
.testi-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(var(--accent-rgb),0.3);
  border: none; padding: 0; cursor: pointer; transition: all 0.3s;
}
.testi-dot.active { background: var(--accent); width: 22px; border-radius: 50px; }

.testi-quote {
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.25;
  font-weight: 700;
  user-select: none;
}

.testimonial-stars { display: flex; gap: 3px; }
.testimonial-stars i { color: #f59e0b; font-size: 0.85rem; }

.testi-text {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-avatar--teal {
  background: var(--accent);
  color: var(--primary);
}

.testi-author strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary);
}
.testi-author span {
  font-size: 0.75rem;
  color: var(--text-gray);
}

/* ===== WHATSAPP POPUP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

.wa-toggle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 16px rgba(var(--accent-rgb),0.45);
  transition: all 0.25s;
  font-family: var(--font-main);
}
.wa-toggle:hover {
  background: #0fb5aa;
  box-shadow: 0 5px 20px rgba(var(--accent-rgb),0.55);
  transform: translateY(-2px) scale(1.06);
}
.wa-toggle i { font-size: 1.2rem; }
.wa-toggle span { display: none; }

.wa-popup {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.14);
  width: 230px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.97);
  transition: all 0.25s ease;
  transform-origin: bottom right;
}
.wa-popup.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wa-popup-header {
  background: var(--primary);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}
.wa-popup-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.wa-popup-info { flex: 1; }
.wa-popup-info strong { display: block; font-size: 0.78rem; letter-spacing: 0.3px; }
.wa-popup-info span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 4px;
}
.wa-online-dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
}
.wa-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  font-size: 0.75rem;
  padding: 2px 4px;
  transition: color 0.2s;
}
.wa-close:hover { color: #fff; }

.wa-popup-body {
  padding: 12px 14px;
  background: #f7f7f7;
}
.wa-message p { font-size: 0.78rem; color: var(--text-color); margin-bottom: 1px; }
.wa-message p:first-child { font-weight: 700; color: var(--primary); }

.wa-popup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--accent);
  color: var(--primary);
  padding: 10px;
  font-weight: 700;
  font-size: 0.78rem;
  transition: background 0.2s;
}
.wa-popup-btn:hover { background: #0fb5aa; }
.wa-popup-btn i { font-size: 0.85rem; }

/* ===== CONTACT — Redesigned ===== */
.contact-section {
  padding: 96px 0;
}

.contact-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 36px;
}
.contact-head .section-label { display: inline-flex; align-items: center; gap: 8px; }
.contact-head .treatments-sub { margin: 14px auto 0; }

/* Quick contact chips */
.contact-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}
.contact-chips--below {
  margin-top: 28px;
  margin-bottom: 0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.blog-cta,
.treatments-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.contact-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 4px 18px rgba(11,11,56,0.06);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.contact-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(var(--accent-rgb),0.16);
  border-color: rgba(var(--accent-rgb),0.4);
}
.contact-chip i {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(var(--accent-rgb),0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-chip--wa i { background: rgba(37,211,102,0.14); color: #25D366; }
.contact-chip strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary);
}
.contact-chip span {
  font-size: 0.78rem;
  color: var(--text-gray);
}

/* Main card: navy aside + form */
.contact-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 56px rgba(11,11,56,0.12);
  margin-bottom: 24px;
}

/* LEFT aside — soft, light language-tinted surface */
.contact-aside {
  position: relative;
  background:
    linear-gradient(155deg, rgba(var(--accent-rgb),0.16) 0%, rgba(var(--accent-rgb),0.05) 100%),
    #fdf9f7;
  overflow: hidden;
}
.contact-aside::before {
  content: '';
  position: absolute;
  top: -70px;
  right: -70px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb),0.10);
  pointer-events: none;
}
.contact-aside::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb),0.07);
  pointer-events: none;
}
.contact-aside-inner {
  position: relative;
  z-index: 1;
  padding: 40px 34px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.contact-aside-inner h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.contact-aside-sub {
  font-size: 0.85rem;
  color: #6a6a7a;
  line-height: 1.6;
  margin-bottom: 28px;
}

.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}
.contact-lines li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-line-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(var(--accent-rgb),0.12);
  border: 1px solid rgba(var(--accent-rgb),0.22);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-line-ico--alert { color: #e25c54; background: rgba(226,92,84,0.1); border-color: rgba(226,92,84,0.25); }
.contact-lines li > div { display: flex; flex-direction: column; gap: 2px; padding-top: 2px; }
.contact-line-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(11,11,56,0.5);
}
.contact-lines a,
.contact-line-text {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.5;
}
.contact-lines a:hover { color: var(--accent); }

.contact-aside-socials {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(11,11,56,0.1);
}
.contact-aside-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb),0.1);
  border: 1px solid rgba(var(--accent-rgb),0.2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.22s;
}
.contact-aside-socials a:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* RIGHT form side */
.contact-card--solo {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.contact-formside {
  padding: 40px 38px;
}
.contact-formside .form-group { margin-bottom: 16px; }
.contact-formside .form-group:last-of-type { margin-bottom: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
  font-size: 0.76rem;
  color: var(--text-gray);
}
.contact-form-note i { color: var(--accent); }

/* Full-width map */
.contact-section .contact-map {
  margin-top: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(11,11,56,0.10);
  border: 1px solid var(--border);
}
.contact-section .contact-map iframe { display: block; }

@media (max-width: 860px) {
  .contact-chips { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-formside { padding: 32px 24px; }
}

/* ===== FOOTER ===== */
.footer {
  /* Light tint — same soft accent colour as the navbar */
  background: color-mix(in srgb, var(--accent) 9%, #ffffff);
  color: rgba(11,11,56,0.75);
  border-top: 1px solid color-mix(in srgb, var(--accent) 22%, #ffffff);
}

.footer-top { padding: 64px 0 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(11,11,56,0.6);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(11,11,56,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(11,11,56,0.65);
  font-size: 0.9rem;
  transition: all 0.2s;
  border: 1px solid rgba(11,11,56,0.12);
}
.footer-social a:hover { background: var(--primary-blue); color: #fff; border-color: var(--primary-blue); }

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(11,11,56,0.62);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--primary-blue);
  font-size: 1.1rem;
}
.footer-links a:hover { color: var(--accent); }

.footer-contact-col { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-col h4 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(11,11,56,0.7);
}
.footer-contact-item i {
  width: 28px;
  height: 28px;
  background: rgba(11,11,56,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.footer-contact-item a:hover { color: var(--accent); }

/* Footer accordion body wrapper (injected by JS) — keep contact items spaced on desktop */
.footer-contact-col .footer-col-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(11,11,56,0.1);
  padding: 20px 0;
}
.footer-bottom p {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(11,11,56,0.45);
}

/* ===== WHATSAPP FLOAT ===== */
/* ===== RESPONSIVE ===== */
/* ===== CONTACT MAP ===== */
.contact-map { margin-top: 20px; border-radius: var(--radius); overflow: hidden; }

/* ===== SOFT AMBIENT BLOBS ===== */
body {
  background-color: #cef0ed;
  background-image:
    radial-gradient(circle 600px at 12% 16%, rgba(255,255,255,1.0)  0%, rgba(255,255,255,0) 68%),
    radial-gradient(circle 540px at 88% 10%, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0) 68%),
    radial-gradient(circle 640px at 48% 56%, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0) 68%),
    radial-gradient(circle 500px at 5%  88%, rgba(255,255,255,0.93) 0%, rgba(255,255,255,0) 68%),
    radial-gradient(circle 480px at 95% 82%, rgba(255,255,255,0.91) 0%, rgba(255,255,255,0) 68%),
    radial-gradient(circle 380px at 72% 36%, rgba(var(--accent-rgb),0.22)  0%, rgba(var(--accent-rgb),0)  68%),
    radial-gradient(circle 320px at 28% 72%, rgba(var(--accent-rgb),0.16)  0%, rgba(var(--accent-rgb),0)  68%);
  background-attachment: fixed;
}

/* Açık bölümler şeffaf — body blobları tüm sayfadan görünsün */
.welcome-section,
.who-section,
.treatments-section,
.happy-smiles-section,
.blogs-section,
.faq-section,
.testimonials-section,
.contact-section {
  background: transparent;
}

@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .tg-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 200px 200px 200px; }
  .tg-card--featured { grid-column: span 2; }
  .treatment-details-grid { grid-template-columns: repeat(2, 1fr); }
  .blogs-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .treatments-title { font-size: clamp(1.7rem, 5.5vw, 2.4rem); }
}

@media (max-width: 768px) {
  /* Mobilde fixed attachment bozulduğu için scroll'a döndür */
  body { background-attachment: scroll; }

  .tsl-item { flex: 0 0 80%; height: 300px; }
  .tsl-info h3 { font-size: 1.3rem; }
  .tsl-info p { font-size: 0.82rem; }
  .tsl-nav { width: 40px; height: 40px; font-size: 0.85rem; }

  /* Mobile: normal sticky header (no float), photo as a top band, text below it */
  body.home .header {
    position: sticky;
    background: color-mix(in srgb, var(--accent) 18%, #ffffff);
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  }
  body.home .hero { margin-top: 0; padding-top: 0; }

  /* Hero — photo on top, text + form stacked below */
  .hero { display: block; min-height: auto; padding-bottom: 0; }
  body.home .hero { padding-bottom: 0; }
  /* Square mobile photo fills a top band; text starts right after it */
  .hero--coral {
    background:
      linear-gradient(180deg, rgba(250,247,242,0) 0%, rgba(250,247,242,0) 84vw, #faf7f2 100vw) no-repeat,
      var(--hero-photo-m) top center / 100% auto no-repeat,
      #faf7f2;
  }
  .hero-inner { max-width: 100%; padding: calc(100vw + 8px) 22px 0; }
  .hero-text-col { width: 100%; max-width: 100%; align-items: stretch; }
  .hero-title { font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero-sub { max-width: 100%; }
  .hero-cta-row { width: 100%; }
  .hero-cta-row .btn { flex: 1 1 auto; justify-content: center; }
  .hero-quote-card { width: 100%; max-width: 100%; margin-bottom: -150px; }
  body.home .welcome-section { padding-top: 185px; }
  .blogs-grid { grid-template-columns: 1fr; }
  /* Patient testimonials — horizontal swipe carousel with dots */
  .testimonials-grid {
    display: flex;
    grid-template-columns: none;
    max-width: 100%;
    margin: 0;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 2px 6px;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .testimonial-card { flex: 0 0 87%; scroll-snap-align: center; }
  .testimonial-card:hover { transform: none; }   /* no hover lift on touch */
  .testi-dots { display: flex; }
  .treatment-details-grid { grid-template-columns: 1fr 1fr; }
  .reviews-rating { gap: 16px; }
  /* Nav mobile — full-screen overlay */
  .hamburger { display: flex; }
  .nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    padding: 84px 24px 40px;
    transform: translateX(100%);
    transition: transform 0.32s ease;
    z-index: 1002;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.open { transform: translateX(0); }

  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
    color: var(--primary);
    font-size: 1.15rem;
    cursor: pointer;
    transition: background 0.2s;
  }
  .nav-close:active { background: rgba(0,0,0,0.12); }

  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list > li { border-bottom: 1px solid rgba(0,0,0,0.06); }
  .nav-link {
    padding: 16px 4px;
    width: 100%;
    font-size: 1.05rem;
    justify-content: space-between;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    padding-left: 16px;
    padding-bottom: 8px;
    display: none;
  }
  .dropdown-menu li a { font-size: 0.95rem; padding: 10px 4px; }
  .nav-item-dropdown.open .dropdown-menu { display: block; }
  .nav-item-dropdown.open .nav-link i { transform: rotate(180deg); }

  /* lock background scroll while the full-screen menu is open */
  body.menu-open { overflow: hidden; }
  body.menu-open .whatsapp-float { display: none; }

  /* Hero */
  .hero-content { flex-direction: column; padding: 60px 20px 80px; }
  .hero-form-wrap { width: 100%; }
  .hero-bottom-text { font-size: 0.7rem; letter-spacing: 2px; }

  /* Sections */
  .welcome-section { padding: 60px 0; }
  .welcome-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .welcome-photo-col { order: -1; }
  .welcome-photo-deco { display: none; }
  .welcome-cta-btn { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 14px; }
  .who-split { grid-template-columns: 1fr; gap: 40px; }
  .cta-banner { flex-direction: column; }
  .cta-image { flex: none; width: 100%; justify-content: center; padding: 0; }
  .cta-ba-card { max-width: none; height: 300px; }
  .cta-content { flex: none; padding: 28px 28px 44px; align-items: center; text-align: center; }
  .cta-content p { font-size: 1.15rem; text-align: center; }
  .cta-label { justify-content: center; }
  .tg-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 180px 180px 180px; gap: 8px; }
  .tg-card--featured { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 0; }

  /* Footer accordion — collapse columns into tappable dropdowns */
  .footer-links,
  .footer-contact-col { border-bottom: 1px solid rgba(11,11,56,0.1); }
  .footer-acc-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0 !important;
    padding: 16px 0;
    user-select: none;
  }
  .footer-acc-toggle::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(11,11,56,0.55);
    border-bottom: 2px solid rgba(11,11,56,0.55);
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    margin-left: 12px;
    flex-shrink: 0;
  }
  .footer-links.open .footer-acc-toggle::after,
  .footer-contact-col.open .footer-acc-toggle::after { transform: rotate(-135deg); }
  .footer-col-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .footer-links.open .footer-col-body,
  .footer-contact-col.open .footer-col-body { max-height: 600px; padding-bottom: 16px; }

  /* Top bar — keep only language + social on mobile */
  .top-bar-inner { justify-content: center; gap: 12px; }
  .top-bar-cta,
  .top-bar-contacts { display: none; }
  .ba-reveal-grid { grid-template-columns: 1fr; max-height: none; gap: 10px; }
  .ba-reveal-card, .ba-reveal-card--tall { height: 280px; margin-top: 0; }
  .ba-dark-header-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .tg-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 160px 160px 160px; gap: 6px; }
  .tg-card--featured { grid-column: span 2; }
  .tg-card-label span { font-size: 0.82rem; }
  .hero-title { font-size: 1.8rem; }
}

/* ========================================
   SUB-PAGES — shared banner & layout
   (additive — used by about / treatments / media / contact pages)
   ======================================== */
section[id] { scroll-margin-top: 100px; }

.page-hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb),0.14) 0%, rgba(var(--accent-rgb),0.04) 58%, rgba(var(--accent-rgb),0.10) 100%),
    #fdf9f7;
  padding: 76px 0 66px;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(var(--accent-rgb),0.16), transparent 48%),
    radial-gradient(circle at 86% 86%, rgba(var(--accent-rgb),0.10), transparent 52%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-label {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 0.75rem; letter-spacing: 3px;
  color: var(--accent); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.page-hero-title {
  font-family: var(--font-heading);
  font-weight: 800; font-size: clamp(2rem, 4vw, 3.1rem);
  color: var(--text-dark); letter-spacing: 1px; text-transform: uppercase; line-height: 1.1;
}
.page-hero-title em { color: var(--accent); font-style: normal; }
.page-hero-sub {
  color: #5b5b6b; max-width: 600px;
  margin: 16px auto 0; font-size: 1rem; line-height: 1.7;
}
.page-hero-breadcrumb {
  margin-top: 22px; font-size: 0.82rem; color: #6a6a7a;
  display: flex; align-items: center; justify-content: center; gap: 9px;
}
.page-hero-breadcrumb a { color: var(--accent); }
.page-hero-breadcrumb a:hover { color: var(--primary); }
.page-hero-breadcrumb i { font-size: 0.58rem; opacity: 0.6; }

.page-section { padding: 84px 0; }
.page-section--alt { background: rgba(var(--accent-rgb), 0.05); }
.page-section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.page-section-head .section-label { display: inline-flex; align-items: center; gap: 8px; justify-content: center; }
.page-section-head .treatments-sub { margin: 14px auto 0; }

/* value / benefit cards */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; }
.value-card {
  background: #fff; border: 1.5px solid rgba(var(--accent-rgb), 0.16); border-radius: var(--radius-lg);
  padding: 32px 26px; transition: all 0.25s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.value-card-ico {
  width: 56px; height: 56px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(var(--accent-rgb),0.12); color: var(--accent); font-size: 1.35rem; margin-bottom: 18px;
}
.value-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.08rem; color: var(--text-dark); margin-bottom: 10px; }
.value-card p { font-size: 0.92rem; color: var(--text-gray); line-height: 1.7; }

.page-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   TREATMENTS PAGE — "Specialty Ledger" (redesign)
   Brand: navy #0B0B38 + teal #14CCC0 · IBM Plex Mono for clinical readouts
   ============================================ */

/* hero readout line */
.tx-hero-stats {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 10px 22px; margin-top: 30px;
}
.tx-hero-stats span {
  display: inline-flex; align-items: center; gap: 9px;
  color: #5b5b6b; font-size: 0.88rem; font-weight: 500; letter-spacing: 0.2px;
}
.tx-hero-stats span + span { position: relative; padding-left: 22px; }
.tx-hero-stats span + span::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
}
.tx-hero-stats i { color: rgba(var(--accent-rgb),0.75); font-size: 0.82rem; }
.tx-hero-stats b {
  font-family: var(--font-mono); font-weight: 600; font-size: 1rem;
  color: var(--accent); letter-spacing: 0.5px;
}

/* layout: sticky specialty rail + procedure column */
.tx-catalogue { background: transparent; padding: 44px 0 60px; }
.tx-layout { display: grid; grid-template-columns: 256px 1fr; gap: 54px; align-items: start; }

/* ---- ledger rail (signature) ---- */
.tx-rail { position: sticky; top: 104px; align-self: start; }
.tx-rail-inner { display: flex; flex-direction: column; }
.tx-rail-label {
  font-family: var(--font-mono); font-size: 0.66rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: #0c9b91;
  padding: 0 0 16px 20px;
}
.tx-rail-item {
  position: relative; display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 12px;
  padding: 13px 8px 13px 18px; border-left: 2px solid var(--border);
  cursor: pointer; transition: border-color 0.25s ease, background 0.25s ease;
}
.tx-rail-item:hover { background: rgba(var(--accent-rgb),0.07); }
.tx-rail-item.active { border-left-color: var(--accent); background: rgba(var(--accent-rgb),0.06); }
.tx-rail-num {
  font-family: var(--font-mono); font-size: 0.76rem; font-weight: 600;
  color: var(--text-gray); transition: color 0.25s ease;
}
.tx-rail-name {
  font-family: var(--font-heading); font-weight: 700; font-size: 0.92rem;
  color: var(--text-gray); letter-spacing: 0.2px; transition: color 0.25s ease;
}
.tx-rail-count {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
  color: rgba(11,11,56,0.32);
}
.tx-rail-item.active .tx-rail-num { color: var(--accent); }
.tx-rail-item.active .tx-rail-name { color: var(--primary); }

/* ---- procedure column ---- */
.tx-main { min-width: 0; }
.tx-cat { scroll-margin-top: 100px; }
.tx-cat + .tx-cat { margin-top: 60px; padding-top: 56px; border-top: 1px solid var(--border); }

.tx-cat-header { display: flex; align-items: center; gap: 18px; margin-bottom: 4px; }
.tx-cat-icon {
  width: 60px; height: 60px; border-radius: 17px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--accent);
  background: linear-gradient(145deg, #12124a, var(--primary));
  box-shadow: 0 12px 26px rgba(11,11,56,0.20);
}
.tx-cat-heading { flex: 1; min-width: 0; }
.tx-cat-index {
  font-family: var(--font-mono); font-weight: 600; font-size: 0.7rem;
  letter-spacing: 1.5px; color: #0c9b91; display: block; margin-bottom: 5px;
}
.tx-cat-heading h2 {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem;
  color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.4px; line-height: 1.12;
}
.tx-cat-count {
  flex: none; align-self: center;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.5px;
  color: #0c9b91; background: rgba(var(--accent-rgb),0.1);
  padding: 8px 14px; border-radius: 10px; white-space: nowrap;
}
.tx-cat-sub { color: var(--text-gray); font-size: 0.95rem; margin: 0 0 26px 78px; max-width: 720px; }

.tx-sub {
  font-family: var(--font-mono); font-weight: 600; font-size: 0.7rem;
  letter-spacing: 2px; text-transform: uppercase; color: var(--primary);
  margin: 34px 0 16px; display: flex; align-items: center; gap: 12px;
}
.tx-sub::before { content: ""; width: 20px; height: 2px; background: var(--accent); border-radius: 2px; flex: none; }
.tx-sub::after { content: ""; flex: 1; height: 1px; background: var(--border); }

/* ---- treatment categories: section head ---- */
.tx-section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.tx-section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
  background: rgba(var(--accent-rgb),0.10); padding: 7px 16px; border-radius: 30px; margin-bottom: 18px;
}
.tx-section-title {
  font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--text-dark); line-height: 1.15; margin: 0 0 14px;
}
.tx-section-title em { font-style: normal; color: var(--accent); }
.tx-section-sub { color: var(--text-gray); font-size: 1rem; line-height: 1.6; margin: 0; }

/* ---- treatment category cards (6 cards → each links to its own page) ---- */
.tx-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tx-cat-card {
  position: relative; display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--border); border-radius: 24px; overflow: hidden;
  text-decoration: none; color: inherit; box-shadow: 0 6px 20px rgba(11,11,56,0.05);
  transition: transform 0.3s cubic-bezier(.22,.61,.36,1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.tx-cat-card::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; z-index: 4;
  background: linear-gradient(90deg, var(--accent), #5fe6dc);
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.tx-cat-card:hover { transform: translateY(-8px); box-shadow: 0 28px 54px rgba(11,11,56,0.16); border-color: rgba(var(--accent-rgb),0.5); }
.tx-cat-card:hover::after { transform: scaleX(1); }

/* media + overlaid title */
.tx-cat-card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--primary); }
.tx-cat-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(.22,.61,.36,1); }
.tx-cat-card:hover .tx-cat-card-media img { transform: scale(1.08); }

/* media gallery cards use tall portrait photos — give them a taller frame
   and focus the crop on the face so heads aren't sliced off */
.tx-grid--media .tx-cat-card-media { aspect-ratio: 4 / 5; }
.tx-grid--media .tx-cat-card-media img { object-position: center 22%; }
.tx-cat-card-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,40,0.92) 2%, rgba(8,8,40,0.45) 38%, rgba(8,8,40,0) 70%);
}

/* glass icon badge (top-left) */
.tx-cat-card-icon {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  width: 46px; height: 46px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
  background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.tx-cat-card:hover .tx-cat-card-icon { background: var(--accent); border-color: var(--accent); transform: rotate(-6deg) scale(1.05); }

/* title overlaid on the photo */
.tx-cat-card-overlay { position: absolute; left: 22px; right: 22px; bottom: 18px; z-index: 3; }
.tx-cat-card-title {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.32rem;
  color: #fff; margin: 0; line-height: 1.2; text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

/* body */
.tx-cat-card-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.tx-cat-card-desc { font-size: 0.95rem; color: var(--text-gray); line-height: 1.65; margin: 0 0 22px; flex: 1; }
.tx-cat-card-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem;
  color: var(--text-dark); letter-spacing: 0.02em;
  transition: color 0.25s ease;
}
.tx-cat-card:hover .tx-cat-card-link { color: var(--accent); }
.tx-cat-card-arrow {
  width: 36px; height: 36px; border-radius: 50%; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(var(--accent-rgb),0.12); color: var(--accent); font-size: 0.8rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.tx-cat-card:hover .tx-cat-card-arrow { background: var(--accent); color: #fff; transform: translateX(4px); }

@media (max-width: 980px) { .tx-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (max-width: 600px) { .tx-grid { grid-template-columns: 1fr; } .tx-section-head { margin-bottom: 34px; } }

/* ---- treatment detail page: alternating reading rows ---- */
.tx-detail { background: transparent; padding: 44px 0 60px; }
.tx-back {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 40px;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem;
  color: var(--accent); text-decoration: none;
}
.tx-back i { transition: transform 0.25s ease; }
.tx-back:hover i { transform: translateX(-4px); }

/* form (left) + info & accordion (right) */
.tx-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 44px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

/* LEFT — sticky quote form */
.tx-form-col { position: sticky; top: 100px; }
.tx-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px 24px 28px;
  box-shadow: 0 18px 44px rgba(11,11,56,0.10);
}
.tx-form-title {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.02rem;
  color: var(--primary); margin: 0 0 18px;
}
.tx-form-title i { color: var(--accent); }
.tx-quote-form .form-group { margin-bottom: 14px; }
.tx-quote-form label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 6px;
}
.tx-quote-form .req { color: var(--accent); }

/* RIGHT — intro + accordion */
.tx-info-col { min-width: 0; }
.tx-info-intro {
  position: relative;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--primary);
  margin: 0 0 30px;
}
.tx-accordion { display: flex; flex-direction: column; gap: 14px; }
.tx-accordion .faq-item.open .faq-answer { max-height: 1600px; }

/* blog article content (right column) */
.tx-info-col .tx-h {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.16rem;
  color: var(--primary);
  margin: 28px 0 10px;
}
.tx-info-col .tx-p {
  font-size: 1rem;
  line-height: 1.8;
  color: #3d3d5c;
  margin: 0 0 14px;
}

@media (max-width: 900px) {
  .tx-layout { grid-template-columns: 1fr; gap: 30px; }
  .tx-form-col { position: static; order: 2; }
  .tx-info-col { order: 1; }
}
@media (max-width: 600px) {
  .tx-info-intro { font-size: 1rem; }
  .tx-info-intro::first-letter { font-size: 2.8rem; }
}

/* ---- responsive ---- */
@media (max-width: 1023px) {
  .tx-layout { grid-template-columns: 1fr; gap: 0; }
  .tx-rail { top: 80px; margin: 0 -24px 28px; z-index: 50; }
  .tx-rail-inner {
    flex-direction: row; gap: 8px; overflow-x: auto; scrollbar-width: none;
    padding: 11px 24px; background: rgba(240,255,254,0.94);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .tx-rail-inner::-webkit-scrollbar { display: none; }
  .tx-rail-label { display: none; }
  .tx-rail-item {
    flex: none; border-left: none; border: 1.5px solid var(--border);
    border-radius: 30px; background: #fff; padding: 9px 16px; gap: 9px; white-space: nowrap;
  }
  .tx-rail-item .tx-rail-count { display: none; }
  .tx-rail-item.active { background: var(--primary); border-color: var(--primary); }
  .tx-rail-item.active .tx-rail-name { color: #fff; }
  .tx-rail-item.active .tx-rail-num { color: var(--accent); }
  .tx-cat { scroll-margin-top: 150px; }
}
@media (max-width: 860px) {
  .value-grid { grid-template-columns: 1fr; }
  .page-section { padding: 60px 0; }
}
@media (max-width: 600px) {
  .tx-catalogue { padding: 40px 0 60px; }
  .tx-cat-icon { width: 52px; height: 52px; font-size: 1.2rem; border-radius: 14px; }
  .tx-cat-header { gap: 14px; }
  .tx-cat-heading h2 { font-size: 1.2rem; }
  .tx-cat-sub { margin-left: 0; }
  .tx-cat-count { display: none; }
  .tx-cards { grid-template-columns: 1fr; }
  .tx-cat + .tx-cat { margin-top: 44px; padding-top: 44px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .tx-card, .tx-card-dot, .tx-rail-item { transition: none; }
  .tx-card:hover { transform: none; }
}

/* ===================== PLAN YOUR CARE (treatment planner) ===================== */
.calc-section {
  position: relative; overflow: hidden;
  /* transparent base so it flows into the unified page field; keep the accent glow */
  background:
    radial-gradient(760px 460px at 12% 0%, rgba(var(--accent-rgb),0.10), transparent 62%),
    radial-gradient(640px 420px at 92% 100%, rgba(var(--accent-rgb),0.08), transparent 60%);
}
.calc { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }

/* header */
.calc-head { text-align: center; margin-bottom: 36px; }
.calc-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
  background: rgba(var(--accent-rgb),0.12); padding: 6px 14px; border-radius: 30px; margin-bottom: 16px;
}
.calc-title { font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--text-dark); margin: 0 0 12px; }
.calc-sub { color: var(--text-gray); font-size: 0.98rem; max-width: 600px; margin: 0 auto; line-height: 1.65; }

/* layout */
.calc-grid { display: grid; grid-template-columns: 1fr 0.95fr; gap: 32px; align-items: start; }
.calc-inputs { display: flex; flex-direction: column; gap: 20px; counter-reset: calcstep; }
.calc-field {
  counter-increment: calcstep;
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: 22px 24px 24px; box-shadow: 0 6px 20px rgba(11,11,56,0.05);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.calc-field:hover { border-color: rgba(var(--accent-rgb),0.4); box-shadow: 0 12px 28px rgba(11,11,56,0.08); }
.calc-field-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 20px; }
.calc-label {
  display: flex; align-items: center; font-family: var(--font-heading); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.03em; text-transform: uppercase; color: var(--text-dark); margin: 0;
}
.calc-label::before {
  content: counter(calcstep); display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%; margin-right: 11px; flex: none;
  background: rgba(var(--accent-rgb),0.14); color: var(--accent); font-size: 0.74rem; font-weight: 800; letter-spacing: 0;
}
.calc-count {
  flex: none; display: inline-flex; align-items: center; justify-content: center; min-width: 46px; height: 38px; padding: 0 12px;
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: var(--accent);
  background: rgba(var(--accent-rgb),0.10); border: 1px solid rgba(var(--accent-rgb),0.22); border-radius: 11px; line-height: 1;
}
.calc-scale { display: flex; justify-content: space-between; margin-top: 9px; font-size: 0.7rem; font-weight: 600; color: var(--text-gray); opacity: .7; }

/* slider with draggable tooth thumb */
.calc-range {
  width: 100%; height: 8px; border-radius: 8px; -webkit-appearance: none; appearance: none;
  background: rgba(var(--accent-rgb),0.18); accent-color: var(--accent); cursor: pointer; outline: none;
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none; width: 34px; height: 34px; border: none; box-shadow: none;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M12 2.4C7.4 2.4 4.4 5.5 4.4 9.6c0 2.4 1 4.2 1.9 6.2 .8 1.7 1.2 3.5 1.5 5.1 .3 1.6 .7 2.7 1.7 2.7 1 0 1.4-1.1 1.7-2.8 .2-1.1 .4-2 1.1-2 .7 0 .9 .9 1.1 2 .3 1.7 .7 2.8 1.7 2.8 1 0 1.4-1.1 1.7-2.7 .3-1.6 .7-3.4 1.5-5.1 .9-2 1.9-3.8 1.9-6.2 0-4.1-3-7.2-7.6-7.2z'/%3E%3C/svg%3E") center / contain no-repeat;
  filter: drop-shadow(0 2px 3px rgba(11,11,56,0.4)); cursor: grab;
}
.calc-range::-webkit-slider-thumb:active { cursor: grabbing; }
.calc-range::-moz-range-thumb {
  width: 34px; height: 34px; border: none;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M12 2.4C7.4 2.4 4.4 5.5 4.4 9.6c0 2.4 1 4.2 1.9 6.2 .8 1.7 1.2 3.5 1.5 5.1 .3 1.6 .7 2.7 1.7 2.7 1 0 1.4-1.1 1.7-2.8 .2-1.1 .4-2 1.1-2 .7 0 .9 .9 1.1 2 .3 1.7 .7 2.8 1.7 2.8 1 0 1.4-1.1 1.7-2.7 .3-1.6 .7-3.4 1.5-5.1 .9-2 1.9-3.8 1.9-6.2 0-4.1-3-7.2-7.6-7.2z'/%3E%3C/svg%3E") center / contain no-repeat;
  filter: drop-shadow(0 2px 3px rgba(11,11,56,0.4)); cursor: grab;
}
.calc-hint { display: block; font-size: 0.82rem; color: var(--text-gray); margin-top: 12px; }

/* option rows — radio (single-select) and checkbox (multi-select) */
.calc-options, .calc-addons { display: flex; flex-direction: column; gap: 11px; }
.calc-opt, .calc-addon {
  width: 100%; text-align: left; cursor: pointer; color: var(--text-dark);
  display: flex; align-items: flex-start; gap: 13px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 16px; box-shadow: 0 4px 14px rgba(11,11,56,0.04);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease;
}
.calc-opt:hover, .calc-addon:hover { border-color: rgba(var(--accent-rgb),0.5); box-shadow: 0 10px 22px rgba(11,11,56,0.08); transform: translateY(-1px); }
.calc-opt.is-active { border-color: var(--accent); background: rgba(var(--accent-rgb),0.07); box-shadow: 0 10px 24px rgba(var(--accent-rgb),0.14); }
.calc-addon.is-active { border-color: var(--accent); background: rgba(var(--accent-rgb),0.06); }

.calc-radio {
  flex: none; width: 20px; height: 20px; border-radius: 50%; margin-top: 1px;
  border: 2px solid rgba(var(--accent-rgb),0.35); background: #fff; position: relative; transition: border-color .2s ease;
}
.calc-opt.is-active .calc-radio { border-color: var(--accent); }
.calc-opt.is-active .calc-radio::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--accent); }

.calc-addon-check {
  flex: none; width: 22px; height: 22px; border-radius: 7px; margin-top: 1px;
  border: 1.5px solid rgba(var(--accent-rgb),0.35); display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.68rem; color: transparent; transition: all .2s ease;
}
.calc-addon.is-active .calc-addon-check { background: var(--accent); border-color: var(--accent); color: #fff; }

.calc-opt-body, .calc-addon-body { display: block; min-width: 0; }
.calc-opt-name { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 0.94rem; color: var(--text-dark); }
.calc-addon-name { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.calc-opt-desc, .calc-addon-desc { display: block; font-size: 0.8rem; color: var(--text-gray); margin-top: 3px; line-height: 1.45; }

/* summary card */
.calc-summary { background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 28px; box-shadow: 0 26px 60px rgba(11,11,56,0.12); position: sticky; top: 100px; }
.calc-summary-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 16px; margin-bottom: 18px; border-bottom: 1px solid var(--border); }
.calc-summary-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.08rem; color: var(--text-dark); margin: 0; }

.calc-cur { display: inline-flex; background: var(--bg-light); border: 1px solid var(--border); border-radius: 30px; padding: 3px; gap: 2px; }
.calc-cur-btn { border: none; background: transparent; cursor: pointer; font-family: var(--font-heading); font-weight: 700; font-size: 0.88rem; color: var(--text-gray); width: 32px; height: 28px; border-radius: 30px; transition: background .2s ease, color .2s ease; }
.calc-cur-btn:hover { color: var(--text-dark); }
.calc-cur-btn.is-active { background: var(--accent); color: var(--primary); }

.calc-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.calc-metric { background: var(--bg-light); border: 1px solid var(--border); border-radius: 14px; padding: 16px; }
.calc-metric-label { font-size: 0.64rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-gray); }
.calc-metric-val { font-family: var(--font-heading); font-size: 1.65rem; font-weight: 800; color: var(--accent); margin-top: 5px; }
.calc-metric-val small { font-size: 0.8rem; font-weight: 500; color: var(--text-gray); }
.calc-metric--muted .calc-metric-val { color: var(--text-dark); }

.calc-foot { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border); }
.calc-total-row { display: flex; justify-content: space-between; align-items: baseline; margin: 0 0 16px; gap: 12px; }
.calc-total-label { font-size: 0.92rem; color: var(--text-gray); }
.calc-total-val { font-family: var(--font-heading); font-size: 2.1rem; font-weight: 800; color: var(--text-dark); }
.calc-cta {
  display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%;
  background: var(--accent); color: var(--primary); border: none; cursor: pointer;
  font-family: var(--font-heading); font-weight: 700; font-size: 0.94rem;
  padding: 15px; border-radius: 13px; text-decoration: none;
  box-shadow: 0 14px 30px rgba(var(--accent-rgb),0.30); transition: transform .2s ease, filter .2s ease;
}
.calc-cta:hover { transform: translateY(-2px); filter: brightness(1.05); }
.calc-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 16px; margin-top: 16px; }
.calc-trust span { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-heading); font-size: 0.7rem; font-weight: 600; color: var(--text-gray); }
.calc-trust i { color: var(--accent); }
.calc-disclaimer { font-size: 0.66rem; text-align: center; color: var(--text-gray); opacity: .75; margin-top: 12px; line-height: 1.55; }

/* responsive */
@media (max-width: 860px) { .calc-grid { grid-template-columns: 1fr; gap: 32px; } .calc-summary { position: static; } }
@media (max-width: 420px) { .calc-metrics { grid-template-columns: 1fr; } }

/* ===================== MEET OUR TEAM ===================== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  padding: 30px 22px; text-align: center; box-shadow: 0 6px 20px rgba(11,11,56,0.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(11,11,56,0.12); border-color: rgba(var(--accent-rgb),0.45); }
.team-avatar {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 18px; overflow: hidden;
  border: 3px solid rgba(var(--accent-rgb),0.28);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-avatar--icon {
  display: flex; align-items: center; justify-content: center;
  background: rgba(var(--accent-rgb),0.12); color: var(--accent); font-size: 2.1rem; border: none;
}
.team-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.06rem; color: var(--text-dark); margin: 0 0 5px; }
.team-role {
  display: block; font-family: var(--font-heading); font-weight: 600; font-size: 0.74rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.team-bio { font-size: 0.86rem; color: var(--text-gray); line-height: 1.55; margin: 0; }
@media (max-width: 980px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr; } }



/* ============================================================
   ABOUT PAGE STYLES — arnavutluk4 style.css icinden alindi
   (yalnizca about sayfasi tasarimi; baska hicbir sey degismedi)
   ============================================================ */
.phone-country {
  flex: 0 0 auto;
  max-width: 104px;
  border: none;
  border-right: 1.5px solid var(--border);
  background: var(--gray-light);
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  padding: 0 6px;
  cursor: pointer;
  outline: none;
}

/* ===== BOTTOM QUOTE FORM BAND — form only + WhatsApp button ===== */
.quote-band { padding: 56px 0; }

/* WhatsApp redirect button (right above the form) */
.quote-band-wa { text-align: center; margin-bottom: 22px; }
.btn-wa-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(37,211,102,0.35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-wa-lg:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(37,211,102,0.5); }
.btn-wa-lg i { font-size: 1.25rem; }

/* form only — centered card, no side text */
.quote-band-form {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 20px 50px rgba(11,11,56,0.10);
}
.qbf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.qbf-grid .full { grid-column: 1 / -1; }
.quote-band-form label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.quote-band-form .req { color: var(--accent); }
.quote-band-form input,
.quote-band-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  resize: vertical;
}
.quote-band-form input:focus,
.quote-band-form textarea:focus,
.quote-band-form select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(var(--accent-rgb),0.12); }
@media (max-width: 560px) { .quote-band-form { padding: 24px; } .qbf-grid { grid-template-columns: 1fr; } }

/* ===================== ABOUT · WHY CHOOSE US ===================== */
.wcu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.wcu-item {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 18px 20px; box-shadow: 0 6px 20px rgba(11,11,56,0.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.wcu-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(var(--accent-rgb),0.45); }
.wcu-ico {
  flex: 0 0 auto; width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(var(--accent-rgb),0.12); color: var(--accent); font-size: 1.3rem;
}
.wcu-item h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--text-dark); margin: 0; line-height: 1.35; }
@media (max-width: 880px) { .wcu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .wcu-grid { grid-template-columns: 1fr; } }

/* ===================== ABOUT · 5-DAY SMILE MAKEOVER ===================== */
.smk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.smk-intro .section-label { display: inline-flex; align-items: center; gap: 8px; }
.smk-intro .treatments-sub { margin: 14px 0 24px; }
.smk-badge {
  display: inline-flex; align-items: baseline; gap: 10px;
  background: rgba(var(--accent-rgb),0.12); color: var(--accent);
  border-radius: 16px; padding: 12px 24px;
}
.smk-badge strong { font-family: var(--font-heading); font-weight: 800; font-size: 2.6rem; line-height: 1; }
.smk-badge span { font-family: var(--font-heading); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.85rem; }
.smk-steps { display: flex; flex-direction: column; gap: 16px; }
.smk-step {
  display: flex; gap: 18px; align-items: flex-start;
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 20px 24px; box-shadow: 0 6px 20px rgba(11,11,56,0.05);
}
.smk-step-num {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff; font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem;
}
.smk-step h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: var(--text-dark); margin: 2px 0 6px; }
.smk-step p { font-size: 0.9rem; color: var(--text-gray); line-height: 1.6; margin: 0; }
@media (max-width: 880px) { .smk-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ===================== ABOUT · TEAM CATEGORIES ===================== */
.team-cat-title {
  font-family: var(--font-heading); font-weight: 700; font-size: 0.92rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
  text-align: center; margin: 40px 0 22px;
}
.team-cat-title:first-of-type { margin-top: 12px; }
.team-grid--cat { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.team-grid--cat .team-card { flex: 0 1 260px; }
.team-email { display: block; font-size: 0.8rem; color: var(--text-gray); margin: -2px 0 10px; word-break: break-word; }
.team-email a { color: var(--text-gray); text-decoration: none; }
.team-email a:hover { color: var(--accent); }
.team-card--placeholder { border-style: dashed; }

/* ===================== ABOUT · INTRO (watermark + 3-col + form) ===================== */
.about-intro { padding: 64px 0 56px; }
.about-intro-head { position: relative; text-align: center; max-width: 860px; margin: 0 auto; padding-top: 26px; }
.about-watermark {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 5rem); letter-spacing: 0.06em;
  color: rgba(var(--accent-rgb), 0.13); white-space: nowrap;
  text-transform: uppercase; pointer-events: none; z-index: 0; line-height: 1;
}
.about-intro-label {
  position: relative; z-index: 1; display: inline-block;
  font-family: var(--font-heading); font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-dark); font-size: 0.92rem; margin-bottom: 16px;
}
.about-intro-welcome {
  position: relative; z-index: 1; margin: 0 auto; max-width: 760px;
  font-size: 1.12rem; line-height: 1.7; color: var(--text-gray); font-weight: 500;
}

.about-intro-grid {
  display: grid; grid-template-columns: 1fr 1.05fr 1fr; gap: 40px;
  align-items: center; margin: 50px 0 44px;
}
.about-intro-col p { font-size: 0.88rem; line-height: 1.85; color: var(--text-gray); margin: 0 0 18px; }
.about-intro-col p:last-child { margin-bottom: 0; }
.about-intro-photo img {
  width: 100%; display: block; border-radius: 18px;
  box-shadow: 0 26px 60px rgba(11,11,56,0.16);
}

.about-intro-form {
  max-width: 680px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border); border-radius: 22px;
  padding: 32px; box-shadow: 0 18px 50px rgba(11,11,56,0.08);
}
.about-intro-form .form-group { margin-bottom: 16px; }

@media (max-width: 900px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-intro-photo { order: -1; max-width: 380px; margin: 0 auto; }
}
@media (max-width: 560px) {
  .about-intro-form { padding: 24px; }
  .about-intro-welcome { font-size: 1rem; }
}

/* ===================== ABOUT · TEAM refined profile cards ===================== */
.team-grid--cat { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; }
.team-grid--cat .team-card {
  flex: 0 1 268px; padding: 18px 20px 22px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.team-photo {
  width: 100%; aspect-ratio: 4 / 5; margin: 0 0 16px;
  border-radius: 16px; overflow: hidden; background: rgba(var(--accent-rgb), 0.07);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.team-photo--icon {
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 3rem; background: rgba(var(--accent-rgb), 0.10);
}
.team-grid--cat .team-name {
  font-family: var(--font-heading); font-weight: 500; font-size: 1.06rem;
  color: var(--text-dark); margin: 0 0 9px; line-height: 1.3;
}
.team-surname { font-weight: 800; }
.team-role-pill {
  display: inline-block; font-family: var(--font-heading); font-weight: 600;
  font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); background: rgba(var(--accent-rgb), 0.12);
  padding: 5px 14px; border-radius: 999px; margin: 0 0 14px;
}
.team-divider { width: 40px; height: 2px; background: rgba(var(--accent-rgb), 0.30); border-radius: 2px; margin: 0 0 14px; }
.team-grid--cat .team-bio { font-size: 0.85rem; color: var(--text-gray); line-height: 1.6; margin: 0 0 16px; }
.team-contact { display: flex; gap: 10px; margin-top: auto; }
.team-contact a {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(var(--accent-rgb), 0.10); color: var(--accent); font-size: 0.85rem;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.team-contact a:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }


/* ============================================================
   HOW WE WORK + BLOG + HAPPY SMILES GALLERY
   (arnavutluk4 style.css icinden alindi — yeni bolumler icin)
   ============================================================ */
/* ===== HOW WE WORK ===== */
.how-section { padding: 96px 0 90px; }
.how-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  padding: 0 24px;
}
.how-head .section-label { display: inline-flex; align-items: center; gap: 8px; }
.how-head .treatments-sub { margin: 14px auto 0; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.how-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 26px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.how-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
/* connector arrows between steps */
.how-grid .how-step:not(:last-child)::after {
  content: "\f054"; /* fa chevron-right */
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute;
  top: 50%; right: -16px;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 0.9rem;
  z-index: 2;
}
.how-step-num {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: rgba(var(--accent-rgb),0.18);
  letter-spacing: -0.02em;
}
.how-step-ico {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(var(--accent-rgb),0.12);
  color: var(--accent);
  font-size: 1.6rem;
}
.how-step h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--text-dark);
  margin: 0 0 10px;
}
.how-step p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}
.how-cta { text-align: center; margin-top: 48px; }
@media (max-width: 980px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .how-grid .how-step:not(:last-child)::after { display: none; }
}
@media (max-width: 540px) {
  .how-grid { grid-template-columns: 1fr; }
}

/* ===== BLOG ===== */
.blog-section { padding: 96px 0 100px; }
.blog-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  padding: 0 24px;
}
.blog-head .section-label { display: inline-flex; align-items: center; gap: 8px; }
.blog-head .treatments-sub { margin: 14px auto 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.blog-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.blog-card:hover .blog-thumb img { transform: scale(1.06); }
.blog-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 30px;
}
.blog-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.blog-meta {
  display: flex;
  gap: 18px;
  font-size: 0.76rem;
  color: var(--text-gray);
  margin-bottom: 12px;
}
.blog-meta i { color: var(--accent); margin-right: 5px; }
.blog-body h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.35;
  margin: 0 0 10px;
}
.blog-body p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0 0 18px;
}
.blog-readmore {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
}
.blog-readmore i { transition: transform .2s ease; }
.blog-readmore:hover i { transform: translateX(4px); }
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ===== HAPPY SMILES — static gallery (media page) ===== */
.smile-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 52px;
}
.smile-gallery-item {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  position: relative;
  box-shadow: 0 10px 30px rgba(11,11,56,0.10);
}
.smile-gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 18px;
  pointer-events: none;
}
.smile-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 25%;
  display: block;
  filter: saturate(0.95);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), filter 0.4s;
}
.smile-gallery-item:hover img { transform: scale(1.06); filter: saturate(1.1); }
@media (max-width: 900px) { .smile-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .smile-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ========================================
   APPENDED OVERRIDES (later-wins) — 3 requested tweaks
   ======================================== */

/* 1) Subpage hero — slimmer, no description */
.page-hero { padding: 40px 0 34px; }
.page-hero-sub { display: none; }
.page-hero-label { margin-bottom: 10px; }
.page-hero-breadcrumb { margin-top: 16px; }

/* 2) Remove section-boundary divider lines (only the section-spanning
   top/bottom rules drawn with var(--divider); form/card/stat-div/team
   borders are intentionally left untouched). */
.welcome-stats {
  border-top: none;
  border-bottom: none;
}

/* 3) Single unified ambient field — language-tinted blobs over a calm light base.
   Accent blobs sit ON TOP (listed first) so the selected flag colour reads clearly. */
body {
  background-color: #ffffff;
  background-image:
    /* language (flag) colour — stronger, clearly visible */
    radial-gradient(circle 560px at 80% 16%, rgba(var(--accent-rgb),0.38) 0%, rgba(var(--accent-rgb),0) 70%),
    radial-gradient(circle 520px at 16% 60%, rgba(var(--accent-rgb),0.30) 0%, rgba(var(--accent-rgb),0) 70%),
    radial-gradient(circle 460px at 94% 86%, rgba(var(--accent-rgb),0.26) 0%, rgba(var(--accent-rgb),0) 70%),
    radial-gradient(circle 420px at 40% 96%, rgba(var(--accent-rgb),0.22) 0%, rgba(var(--accent-rgb),0) 70%),
    /* soft white highlights to keep it airy and readable */
    radial-gradient(circle 620px at 10% 12%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 64%),
    radial-gradient(circle 560px at 90% 50%, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0) 64%),
    radial-gradient(circle 560px at 46% 44%, rgba(255,255,255,0.80) 0%, rgba(255,255,255,0) 64%),
    radial-gradient(circle 500px at 6%  86%, rgba(255,255,255,0.80) 0%, rgba(255,255,255,0) 64%);
  background-attachment: fixed;
}
/* English (grey) — boost the ambient blobs so the grey reads with the same ambiance as the coloured languages */
html:not([data-lang]) body {
  background-image:
    radial-gradient(circle 560px at 80% 16%, rgba(var(--accent-rgb),0.62) 0%, rgba(var(--accent-rgb),0) 70%),
    radial-gradient(circle 520px at 16% 60%, rgba(var(--accent-rgb),0.52) 0%, rgba(var(--accent-rgb),0) 70%),
    radial-gradient(circle 460px at 94% 86%, rgba(var(--accent-rgb),0.46) 0%, rgba(var(--accent-rgb),0) 70%),
    radial-gradient(circle 420px at 40% 96%, rgba(var(--accent-rgb),0.40) 0%, rgba(var(--accent-rgb),0) 70%),
    radial-gradient(circle 620px at 10% 12%, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0) 64%),
    radial-gradient(circle 560px at 90% 50%, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0) 64%),
    radial-gradient(circle 560px at 46% 44%, rgba(255,255,255,0.76) 0%, rgba(255,255,255,0) 64%),
    radial-gradient(circle 500px at 6%  86%, rgba(255,255,255,0.76) 0%, rgba(255,255,255,0) 64%);
}
/* Albanian (rose) — gentler ambient blobs for a softer background */
html[data-lang="sq"] body {
  background-image:
    radial-gradient(circle 560px at 80% 16%, rgba(var(--accent-rgb),0.20) 0%, rgba(var(--accent-rgb),0) 70%),
    radial-gradient(circle 520px at 16% 60%, rgba(var(--accent-rgb),0.16) 0%, rgba(var(--accent-rgb),0) 70%),
    radial-gradient(circle 460px at 94% 86%, rgba(var(--accent-rgb),0.14) 0%, rgba(var(--accent-rgb),0) 70%),
    radial-gradient(circle 420px at 40% 96%, rgba(var(--accent-rgb),0.11) 0%, rgba(var(--accent-rgb),0) 70%),
    radial-gradient(circle 620px at 10% 12%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 64%),
    radial-gradient(circle 560px at 90% 50%, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0) 64%),
    radial-gradient(circle 560px at 46% 44%, rgba(255,255,255,0.80) 0%, rgba(255,255,255,0) 64%),
    radial-gradient(circle 500px at 6%  86%, rgba(255,255,255,0.80) 0%, rgba(255,255,255,0) 64%);
}
@media (max-width: 768px) { body { background-attachment: scroll; } }
/* subpage hero decorative blob stays off (slimmer heroes) */
.page-hero::before { background: none; }
/* Hero photo height (per request) */
.hero { min-height: clamp(580px, 76vh, 760px); }

/* ===== DENTAL TREATMENTS — card grid (was a slider) ===== */
.treatments-section .tsl-wrap { overflow: visible; padding: 8px 0 8px; }
.treatments-section .tsl-track {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  transform: none !important; transition: none; will-change: auto; padding: 4px 0;
}
.treatments-section .tsl-item {
  flex: none; width: auto; height: 360px;
  opacity: 1; transform: none; box-shadow: 0 16px 40px rgba(11,11,56,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
}
.treatments-section .tsl-item:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(11,11,56,0.20); }
.treatments-section .tsl-info { transform: none; opacity: 1; }
.treatments-section .tsl-nav,
.treatments-section .tsl-dots { display: none; }
@media (max-width: 900px) { .treatments-section .tsl-track { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .treatments-section .tsl-track { grid-template-columns: 1fr; } }

/* ===== MEET OUR TEAM — image-top profile cards (redesign) ===== */
#team .team-cat-title {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em;
  color: var(--text-gray); text-transform: uppercase; margin: 46px 0 26px;
}
#team .team-grid--cat {
  display: grid; grid-template-columns: repeat(auto-fit, 264px);
  justify-content: center; gap: 28px;
  max-width: 1140px; margin-left: auto; margin-right: auto;
}
#team .team-grid--cat .team-card {
  width: auto; flex: none; text-align: left;
  display: flex; flex-direction: column; align-items: stretch;
  padding: 0; overflow: hidden;
  background: #fff; border: 1px solid rgba(11,11,56,0.06);
  border-radius: 18px; box-shadow: 0 12px 30px rgba(11,11,56,0.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
#team .team-grid--cat .team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(11,11,56,0.13);
  border-color: rgba(var(--accent-rgb),0.30);
}
/* photo flush at the top (4:3) */
#team .team-photo {
  width: 100%; aspect-ratio: 4 / 3; height: auto;
  border-radius: 0; margin: 0; box-shadow: none; flex: none;
  background: rgba(var(--accent-rgb),0.07);
}
#team .team-photo img { object-position: center 22%; }
#team .team-photo--icon { font-size: 2.8rem; background: rgba(var(--accent-rgb),0.08); color: rgba(var(--accent-rgb),0.5); }
/* text body — inset via margins (no markup change), contacts pinned to bottom */
#team .team-name { margin: 18px 20px 8px; font-size: 1.08rem; }
#team .team-role-pill { align-self: flex-start; margin: 0 20px 12px; }
#team .team-divider { margin: 0 20px 12px; }
#team .team-bio { margin: 0 20px 18px; font-size: 0.85rem; }
#team .team-contact { justify-content: flex-start; margin: auto 20px 20px; }
/* clean placeholders (no harsh dashed border) */
#team .team-card--placeholder { border-style: solid; border-color: rgba(11,11,56,0.06); background: #fcfdfd; }

/* ===========================================================
   MOBILE — horizontal swipe carousels (phones, <=600px)
   how-we-work / treatments / blogs / before-after become
   side-scrolling galleries with snap. Layout-only; nothing
   else on the page is touched.
   =========================================================== */
@media (max-width: 600px) {

  /* shared side-scroll behaviour */
  .how-grid,
  .treatments-section .tsl-track,
  .blog-grid,
  .value-grid,
  .wcu-grid,
  .tx-grid,
  .ba-reveal-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;            /* Firefox */
  }
  .how-grid::-webkit-scrollbar,
  .treatments-section .tsl-track::-webkit-scrollbar,
  .blog-grid::-webkit-scrollbar,
  .value-grid::-webkit-scrollbar,
  .wcu-grid::-webkit-scrollbar,
  .tx-grid::-webkit-scrollbar,
  .ba-reveal-grid::-webkit-scrollbar { display: none; }  /* WebKit */

  /* how we work */
  .how-grid { gap: 16px; padding: 8px 0 12px; }
  .how-grid .how-step { flex: 0 0 78%; scroll-snap-align: start; }

  /* dental treatments */
  .treatments-section .tsl-track { gap: 16px; padding: 8px 0 12px; }
  .treatments-section .tsl-item { flex: 0 0 80%; scroll-snap-align: start; }

  /* blogs */
  .blog-grid { gap: 16px; padding: 8px 0 12px; }
  .blog-card { flex: 0 0 82%; scroll-snap-align: start; }

  /* our core values */
  .value-grid { gap: 16px; margin-top: 8px; padding: 8px 0 12px; }
  .value-card { flex: 0 0 82%; scroll-snap-align: start; }

  /* why choose us */
  .wcu-grid { gap: 16px; margin-top: 8px; padding: 8px 0 12px; }
  .wcu-item { flex: 0 0 82%; scroll-snap-align: start; }

  /* treatment categories */
  .tx-grid { gap: 16px; padding: 8px 0 12px; }
  .tx-cat-card { flex: 0 0 82%; scroll-snap-align: start; }

  /* before / after */
  .ba-reveal-grid { gap: 14px; padding: 8px 24px 48px; }
  .ba-reveal-card,
  .ba-reveal-card--tall { flex: 0 0 82%; scroll-snap-align: start; }
}

/* Swipe-carousel dot indicators — only shown on the mobile carousels above,
   so users can see there are more cards to swipe through. Built by JS
   (insertSwipeDots) and matched to the testimonials dot style. */
.swipe-dots { display: none; }
@media (max-width: 600px) {
  .swipe-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
  }
  .swipe-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
  }
  .swipe-dot.active {
    background: var(--accent);
    width: 22px;
    border-radius: 50px;
  }
}

/* ===========================================================
   WhatsApp — mobile fixed bottom action bar (<=768px)
   Round float becomes a full-width 2-button bar:
   [ Call Us ]  [ WhatsApp ]  — like the reference.
   Desktop keeps the round floating button untouched.
   =========================================================== */
.wa-mobile-bar { display: none; }
@media (max-width: 768px) {
  .whatsapp-float {
    left: 0; right: 0; bottom: 0; top: auto;
    padding: 0;
  }
  .whatsapp-float .wa-toggle,
  .whatsapp-float .wa-popup { display: none !important; }

  .wa-mobile-bar {
    display: flex;
    width: 100%;
    box-shadow: 0 -2px 14px rgba(0,0,0,0.18);
  }
  .whatsapp-float .wa-mbar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 10px;
    border-radius: 0;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
  }
  .whatsapp-float .wa-mbar-btn i { font-size: 1.05rem; }
  .whatsapp-float .wa-mbar-btn span { display: inline; }  /* keep labels visible on small phones */
  .whatsapp-float .wa-mbar-call { background: var(--primary); }
  .whatsapp-float .wa-mbar-wa   { background: #25D366; }
  .whatsapp-float .wa-mbar-call:hover { background: var(--primary); color: #fff; }
  .whatsapp-float .wa-mbar-wa:hover   { background: #1ebe5b; color: #fff; }
}

/* ===== THANK YOU PAGE ===== */
.ty-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72vh;
  padding: 90px 0;
  background:
    radial-gradient(680px 420px at 16% 10%, rgba(var(--accent-rgb),0.16), transparent 62%),
    radial-gradient(620px 420px at 88% 92%, rgba(var(--accent-rgb),0.10), transparent 60%);
  overflow: hidden;
}
.ty-card {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(var(--accent-rgb),0.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(11,11,56,0.12), 0 4px 16px rgba(var(--accent-rgb),0.10);
  padding: 58px 44px 48px;
}
.ty-check {
  width: 100px;
  height: 100px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb),0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ty-pop .5s cubic-bezier(.2,.9,.3,1.4) both;
}
.ty-check-svg { width: 62px; height: 62px; }
.ty-check-circle {
  stroke: var(--accent);
  stroke-width: 3;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: ty-draw .6s ease .2s forwards;
}
.ty-check-mark {
  stroke: var(--accent);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: ty-draw .35s ease .65s forwards;
}
@keyframes ty-draw { to { stroke-dashoffset: 0; } }
@keyframes ty-pop {
  0%   { transform: scale(.5); opacity: 0; }
  100% { transform: scale(1);  opacity: 1; }
}
.ty-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--primary);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.ty-text {
  color: var(--text-gray);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto 32px;
}
.ty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.ty-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  text-decoration: none;
  transition: color .2s ease;
}
.ty-phone i { color: var(--accent); }
.ty-phone:hover { color: var(--accent); }

@media (max-width: 520px) {
  .ty-section { min-height: 66vh; padding: 60px 0; }
  .ty-card { padding: 40px 22px 34px; }
  .ty-actions .btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .ty-check, .ty-check-circle, .ty-check-mark { animation: none; }
  .ty-check-circle, .ty-check-mark { stroke-dashoffset: 0; }
}
