/* ===== KTS Orthodontics – Main CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100;300;400;500;600;700;800;900&display=swap');

/* ── Variables ── */
:root {
  --dark:    #232528;
  --mid:     #748389;
  --cyan:    #4EC3E0;
  --teal:    #01746C;
  --coral:   #D38359;
  --pink:    #FAEDEF;
  --white:   #ffffff;
  --bg:      #FEFEFF;
  --light:   #f4f8fa;
  --border:  #e0e8ec;

  --font: 'Heebo', sans-serif;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(35,37,40,0.10);
  --shadow-lg: 0 8px 40px rgba(35,37,40,0.16);
  --transition: 0.3s ease;
  --max-width: 1190px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { direction: rtl; scroll-behavior: smooth; overflow-x: hidden; overscroll-behavior-x: none; }
body { font-family: var(--font); background: var(--bg); color: var(--dark); font-size: 16px; font-weight: 500; line-height: 1.7; overflow-x: hidden; overscroll-behavior-x: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, textarea, select { font-family: var(--font); }

/* ── Skip link ── */
.skip-link {
  position: fixed; top: -60px; right: 16px; z-index: 2000;
  background: var(--dark); color: var(--white);
  padding: 12px 20px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.95rem;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }

/* ── Typography ── */
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 500; line-height: 1.2; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 500; line-height: 1.3; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 500; line-height: 1.4; }
h4 { font-size: 1rem; font-weight: 500; }

.section-subtitle {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}
.section-header { margin-bottom: 48px; }
.section-header h2 { margin-top: 0.4rem; }
.center { text-align: center; }

/* ── Layout ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 32px; border-radius: 40px;
  font-weight: 700; font-size: 0.97rem;
  border: 2px solid transparent;
  transition: all var(--transition); white-space: nowrap; cursor: pointer;
}
.btn-cyan  { background: var(--cyan);  color: var(--dark);  border-color: var(--cyan);  }
.btn-cyan:hover  { background: var(--teal); border-color: var(--teal); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(78,195,224,0.35); }
.btn-dark  { background: var(--dark);  color: var(--white); border-color: var(--dark);  }
.btn-dark:hover  { background: #3a3e44; border-color: #3a3e44; transform: translateY(-2px); }
.btn-primary { background: var(--cyan); color: var(--dark); border-color: var(--cyan); }
.btn-primary:hover { background: var(--teal); border-color: var(--teal); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark); }

/* ════════════════════════════════ */
/* TOP BAR                          */
/* ════════════════════════════════ */
.site-header {
  position: fixed; top: 38px; right: 84px; left: 84px; z-index: 1000;
  border-radius: 4px;
  box-shadow: 10px 5px 37px rgba(20,48,139,0.06);
}
.topbar .container, .navbar .container { max-width: none; padding: 0 44px; }

.topbar {
  background: var(--white);
  padding: 7px 0 0;
  font-size: 0.875rem;
  border-radius: 4px 4px 0 0;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 7px;
  border-bottom: 1px solid #E6E6E6;
}
.topbar-contact {
  display: flex; align-items: center; gap: 14px;
}
.topbar-hours { color: rgba(255,255,255,0.6); }
.topbar-phone {
  color: var(--dark); font-weight: 300; letter-spacing: 1.1px;
  transition: color var(--transition);
}
.topbar-phone:hover { color: var(--cyan); }
.topbar-social { display: flex; align-items: center; gap: 10px; }
.topbar-social a {
  color: rgba(255,255,255,0.55);
  display: flex; align-items: center;
  transition: color var(--transition);
}
.topbar-social a:hover { color: var(--cyan); }

/* ════════════════════════════════ */
/* NAVBAR                           */
/* ════════════════════════════════ */
.navbar {
  background: var(--white);
  padding: 14px 0;
  border-radius: 0 0 4px 4px;
  transition: padding var(--transition);
}
.navbar.scrolled { padding: 10px 0; }

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.nav-logo { order: 2; }
.logo-img { height: 45px; width: auto; }

.nav-right { display: flex; flex-direction: row; align-items: center; gap: 24px; order: 1; }

.nav-menu { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; }
.nav-link {
  color: var(--dark); font-weight: 500; font-size: 0.9375rem; letter-spacing: 0.2px;
  padding: 7px 11px; border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active { color: #C67C55; }
.arrow { font-size: 0.7rem; }

/* Dropdown */
.nav-item-dropdown { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--dark); border-radius: 0;
  box-shadow: none; min-width: max-content;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all var(--transition); z-index: 100;
}
.nav-item-dropdown:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: block; padding: 13px 20px; color: var(--cyan);
  font-weight: 500; font-size: 0.875rem; white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown a:hover { background: rgba(255,255,255,0.08); }

/* Nav actions */
.nav-actions { display: none; align-items: center; gap: 10px; }
.nav-phone-link {
  color: rgba(255,255,255,0.75); font-size: 0.88rem; font-weight: 600;
  transition: color var(--transition);
}
.nav-phone-link:hover { color: var(--cyan); }

/* Desktop CTA */
.nav-cta-desktop {
  display: inline-flex; align-items: center; justify-content: center;
  background: #13151a; color: var(--coral);
  border-radius: 27px; padding: 15px 30px;
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.2px;
  white-space: nowrap; transition: background var(--transition), color var(--transition);
}
.nav-cta-desktop:hover { background: var(--dark); color: var(--cyan); }

/* Mobile CTA */
.nav-cta-mobile, .nav-whatsapp { display: none; }

/* WhatsApp button (mobile) */
.nav-whatsapp {
  width: 35px; height: 35px;
  background: none; color: #44BE04;
  align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform var(--transition);
}
.nav-whatsapp svg { width: 30px; height: 30px; }
.nav-whatsapp:hover { transform: scale(1.05); }

/* Virtual consultation button (mobile) */
.nav-cta-mobile {
  background: var(--dark); color: var(--coral);
  border: 1px solid var(--cyan); border-radius: 40px;
  padding: 8px 16px; font-size: 0.82rem; font-weight: 700;
  white-space: nowrap;
}
.nav-cta-mobile:hover { background: var(--cyan); color: var(--dark); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 6px;
  padding: 6px; cursor: pointer;
}
.nav-hamburger span { display: block; width: 27px; height: 3px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile overlay */
.nav-mobile {
  display: none; position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: var(--dark); flex-direction: column;
  align-items: center; gap: 4px;
  padding: 80px 24px 32px;
  max-height: 100vh; overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.2rem; font-weight: 700; color: var(--cyan);
  padding: 12px 0;
  width: 100%; text-align: center; transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--white); }
.nav-mobile .mobile-cta { margin-top: 8px; }

/* Collapsible "כתבות ומידע" group inside the mobile menu */
.nav-mobile-dropdown { width: 100%; }
.nav-mobile-dropdown-toggle {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 1.2rem; font-weight: 700; color: var(--cyan);
  padding: 12px 0; width: 100%; text-align: center;
  background: none; border: none; cursor: pointer; font-family: inherit;
  transition: color var(--transition);
}
.nav-mobile-dropdown-toggle:hover { color: var(--white); }
.nav-mobile-dropdown-toggle .arrow { font-size: 0.75em; transition: transform var(--transition); }
.nav-mobile-dropdown.open .nav-mobile-dropdown-toggle .arrow { transform: rotate(180deg); }
.nav-mobile-submenu {
  display: flex; flex-direction: column; align-items: center;
  max-height: 0; overflow: hidden; transition: max-height var(--transition);
}
.nav-mobile-dropdown.open .nav-mobile-submenu { max-height: 600px; }
.nav-mobile-submenu a { font-size: 0.95rem; font-weight: 500; padding: 10px 0; }

/* ════════════════════════════════ */
/* HERO (old – kept for fallback)   */
/* ════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; background: #e8e8e8;
}
.hero-image { position: absolute; inset: 0; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to left, rgba(35,37,40,0.55) 0%, rgba(35,37,40,0.3) 60%, rgba(35,37,40,0.15) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 560px; }
.hero h1 { color: var(--white); text-shadow: 0 2px 12px rgba(0,0,0,0.25); margin-bottom: 0.75rem; }
.hero-sub { color: rgba(255,255,255,0.9); font-size: 1.3rem; font-weight: 600; margin-bottom: 2rem; }

/* ════════════════════════════════ */
/* HERO SPLIT (homepage)            */
/* ════════════════════════════════ */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding: 0;
}

/* RIGHT column: CYAN text panel */
.hero-text-col {
  background: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  padding: 110px 56px 72px;
  text-align: center;
}
.hero-text-inner { max-width: 480px; }
.hero-text-inner h1 {
  color: var(--dark);
  font-size: 52px;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}
.hero-text-inner .hero-sub {
  color: var(--dark); opacity: 0.85;
  font-size: 1rem; font-weight: 500; line-height: 1.65;
  margin-bottom: 0.75rem;
}
.hero-text-inner .hero-desc {
  color: rgba(35,37,40,0.7);
  font-size: 0.9rem; line-height: 1.65;
  margin-bottom: 2rem;
}
.hero-link {
  display: inline-flex; flex-direction: row-reverse; align-items: center; gap: 10px;
  color: var(--dark); font-size: 0.875rem; font-weight: 600;
  transition: color var(--transition);
}
.hero-link:hover { color: var(--teal); }

/* LEFT column: image slideshow */
.hero-slide-col { position: relative; overflow: hidden; }
.hero-slideshow { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  animation: hero-fade 18s infinite;
}
.hero-slide.s1 { background-image: url('/images/hero-slide-1.jpg'); animation-delay: 0s; }
.hero-slide.s2 { background-image: url('/images/hero-slide-2.jpg'); animation-delay: 4.5s; }
.hero-slide.s3 { background-image: url('/images/hero-slide-3.jpg'); animation-delay: 9s; }
.hero-slide.s4 { background-image: url('/images/hero-slide-4.jpg'); animation-delay: 13.5s; }

@keyframes hero-fade {
  0%    { opacity: 1; }
  19.4% { opacity: 1; }  /* 3500/18000 */
  25%   { opacity: 0; }  /* 4500/18000 */
  100%  { opacity: 0; }
}

/* ════════════════════════════════ */
/* TREATMENT METHOD SECTION         */
/* ════════════════════════════════ */
.method-section { padding: 0; background: none; }
.method-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
/* RIGHT col: background image */
.method-bg-col {
  background-size: cover; background-position: center;
  min-height: 380px;
}
/* LEFT col: text */
.method-text-wrap {
  background: var(--white);
  display: flex; align-items: center;
  padding: 0 16%;
}
.method-text-inner { max-width: 100%; }
.method-text-inner h2 {
  margin-bottom: 1.5rem;
  font-size: 52px;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: 1px;
}
.method-list { padding-right: 20px; margin: 0; list-style: disc; }
.method-list li { color: var(--mid); font-size: 0.97rem; line-height: 1.75; margin-bottom: 1rem; }
.method-accent { color: var(--coral); }
a.method-accent:hover { text-decoration: underline; }
.method-product-img { margin-top: 1rem; width: 182px; height: auto; }

/* ════════════════════════════════ */
/* CONTACT / APPOINTMENT SECTION    */
/* ════════════════════════════════ */
.contact-section { padding: 0; }
.contact-split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 640px;
}
/* RIGHT col (first in RTL): CYAN + form */
.contact-form-col {
  background: var(--cyan);
  padding: 22% 16%;
  display: flex; flex-direction: column; justify-content: center;
}
/* LEFT col (second in RTL): background image */
.contact-image-col {
  background-size: cover; background-position: center;
  position: relative; overflow: visible;
}
.contact-heading {
  color: var(--dark);
  margin-bottom: 1.25rem;
  font-size: 52px;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: 1px;
}
/* Live button */
.btn-live {
  display: inline-flex; flex-direction: row-reverse; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 27px;
  background: #13151a; color: #60D359;
  border: 2px dashed #2AFF02;
  font-weight: 600; font-size: 0.875rem;
  margin-bottom: 1.25rem; width: fit-content;
  transition: all var(--transition); cursor: pointer;
}
.btn-live:hover { background: #2a2d33; }
.btn-live svg { fill: currentColor; flex-shrink: 0; }
.contact-sub { color: var(--dark); font-size: 1rem; margin-bottom: 0.5rem; line-height: 1.5; }
.contact-strong { color: var(--dark); font-size: 1rem; font-weight: 700; line-height: 1.5; margin-bottom: 1.5rem; }

/* Form on CYAN background */
.form-group { margin-bottom: 20px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--dark); border-radius: 4px;
  font-size: 0.95rem; color: var(--dark); background: transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; direction: rtl;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--dark); box-shadow: 0 0 0 3px rgba(35,37,40,0.12);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(35,37,40,0.5); }
.form-group textarea { resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input[type="checkbox"] { width: auto; flex-shrink: 0; margin-top: 3px; }
.form-check label { font-size: 0.83rem; color: var(--dark); line-height: 1.5; }
.form-check label a { text-decoration: underline; color: var(--dark); }
.contact-submit-btn {
  display: block; width: fit-content; padding: 20px 40px; font-size: 0.875rem; margin-top: 8px;
  background: #13151a; color: var(--coral);
  border: 1px solid #13151a; border-radius: 27px;
  font-weight: 600; font-family: var(--font); cursor: pointer;
  transition: all var(--transition);
}
.contact-submit-btn:hover { background: #2a2d33; }
.form-msg { padding: 12px 16px; border-radius: var(--radius); margin-top: 12px; font-weight: 600; font-size: 0.9rem; }
.form-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.form-error   { background: #fdecea; color: #c62828; border: 1px solid #ef9a9a; }

/* ════════════════════════════════ */
/* BENEFITS (white 5-column)        */
/* ════════════════════════════════ */
.benefits-section { background: var(--white); padding: 10px 0; }
.benefits-5col {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  padding: 0 8%;
}
.benefits-title-col {
  display: flex; align-items: center; justify-content: center;
}
.benefits-title-col h2 {
  font-size: 52px;
  font-weight: 500;
  color: var(--dark);
  line-height: 60px;
  letter-spacing: 1px;
  text-align: center;
}
.benefit-box { text-align: center; padding: 20px; }
.benefit-box-icon {
  margin-bottom: 12px;
}
.benefit-box-icon svg { width: 66px; height: 66px; fill: var(--cyan); }
.benefit-box h3 { font-size: 24px; font-weight: 500; margin-bottom: 8px; color: var(--dark); }
.benefit-box p  { color: var(--mid); font-size: 0.88rem; line-height: 1.65; }

/* ════════════════════════════════ */
/* TREATMENTS                       */
/* ════════════════════════════════ */
.treatments-section { background: var(--light); padding: 72px 0; }
.treatments-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.treatment-card {
  display: flex; flex-direction: column;
  background: var(--white); border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none; color: inherit;
}
.treatment-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.treatment-image { height: 220px; overflow: hidden; }
.treatment-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.treatment-card:hover .treatment-image img { transform: scale(1.05); }
.treatment-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.treatment-tag {
  display: inline-block; background: rgba(78,195,224,0.12);
  color: var(--cyan); font-size: 0.75rem; font-weight: 700;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 10px;
  letter-spacing: 0.08em;
}
.treatment-body h3 { margin-bottom: 10px; }
.treatment-body p  { color: var(--mid); font-size: 0.9rem; flex: 1; margin-bottom: 18px; }

/* ════════════════════════════════ */
/* TOPBAR LOCATIONS                 */
/* ════════════════════════════════ */
.topbar-locations {
  display: flex; align-items: center; gap: 7px;
  color: var(--dark); font-size: 0.875rem; font-weight: 300; letter-spacing: 1.1px;
}
.topbar-locations a { display: flex; align-items: center; gap: 5px; }
.topbar-locations svg { flex-shrink: 0; color: var(--cyan); }
.topbar-sep { color: rgba(35,37,40,0.25); margin: 0 4px; }
.topbar-wa {
  display: flex; align-items: center; gap: 5px;
  color: var(--dark); font-size: 0.875rem; font-weight: 300; letter-spacing: 1.1px;
  transition: color var(--transition);
}
.topbar-wa:hover { color: #25D366; }
.topbar-wa svg { color: #25D366; }

/* ════════════════════════════════ */
/* ABOUT / DOCTOR                   */
/* ════════════════════════════════ */
.about-section { padding: 0; margin: clamp(64px, 5vw, 80px) 0 clamp(40px, 4vw, 60px); }
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 76vh;
}
/* RIGHT col (first in RTL): CYAN background + text */
.about-content {
  background: var(--cyan);
  padding: 0 16%;
  display: flex; flex-direction: column; justify-content: center;
}
.about-content h2 {
  color: var(--dark);
  margin-bottom: 1.25rem;
  font-size: 52px;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: 1px;
}
.about-content p { color: rgba(35,37,40,0.8); margin-bottom: 1rem; font-size: 0.97rem; line-height: 1.75; }
.about-content a, .about-accent { color: var(--coral); text-decoration: none; }
.about-content a:hover { text-decoration: underline; }
.about-brands { display: flex; flex-direction: column; align-items: center; gap: 18px; margin-top: 22px; }
.brand-logo { width: auto; display: block; }
.brand-logo-inv { height: 32px; opacity: 0.85; }
.brand-logo-spark { height: 44px; opacity: 0.9; }
/* LEFT col (second in RTL): white + photo centered */
.about-photo-wrap {
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  padding: 64px 40px;
  position: relative; overflow: visible;
}
.about-photo-circle {
  width: 320px; height: 400px;
  overflow: hidden;
}
.about-photo-circle img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* Values standalone section */
.values-standalone { background: var(--white); padding: 4% 8% 0; }
.values-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.value-card { text-align: right; padding: 20px 0 45px 90px; }
.value-icon { margin-bottom: 12px; }
.value-icon svg { fill: var(--cyan); width: 66px; height: 66px; }
.value-card h3 { margin-bottom: 10px; font-size: 24px; font-weight: 500; color: var(--dark); }
.value-card p  { color: var(--mid); font-size: 0.88rem; line-height: 1.65; }
.values-heading-col {
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 20px;
}
.values-heading-col h2 {
  font-size: 36px;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: 1px;
  color: var(--dark);
}

/* ════════════════════════════════ */
/* PATIENT GALLERY                  */
/* ════════════════════════════════ */
.gallery-section { background: var(--bg); padding: 0; }
.gallery-split {
  display: grid; grid-template-columns: 1fr 1fr;
}
/* RIGHT col: media */
.gallery-media-col { padding: 0; background: var(--bg); min-width: 0; }
.gallery-screenshot-wrap { margin: 10px; padding-top: 16%; text-align: center; }
.gallery-screenshot {
  width: 100%; max-width: 100%; border-radius: 8px 0 0 8px;
  display: block; object-fit: cover;
}
.gallery-grid-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  margin: 10px;
}
.gallery-item {
  border-radius: 4px; overflow: hidden; aspect-ratio: 3/2;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease; display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-video-wrap {
  position: relative;
  margin: 10px;
  aspect-ratio: 16/9; border-radius: 4px; overflow: hidden;
}
.gallery-video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}
/* LEFT col: white background */
.gallery-text-col {
  padding: 0;
  background: var(--white);
  display: flex; flex-direction: column; justify-content: center;
  min-width: 0;
}
.gallery-text-inner {
  padding: 5% 14% 0 16%;
}
.gallery-heading {
  font-family: var(--font);
  font-size: 52px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 60px;
  letter-spacing: 1px;
}
.gallery-desc {
  color: var(--mid);
  font-size: 0.97rem; line-height: 1.75; margin-bottom: 0;
}
.gallery-desc a, .gallery-accent { color: var(--coral); text-decoration: underline; }

/* Before/After comparison slider */
.ba-slider {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  box-sizing: border-box;
  min-width: 0;
  aspect-ratio: 612 / 325;
  max-width: 612px;
  margin: 50px 21px 20px 67px;
  border-radius: 4px;
}
.ba-before-img,
.ba-after-img {
  position: absolute;
  inset: 0;
}
.ba-before-img {
  z-index: 1;
  clip-path: inset(0 50% 0 0);
}
.ba-after-img { z-index: 0; }
.ba-before-img img,
.ba-after-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  -webkit-user-drag: none; user-select: none; -webkit-user-select: none;
}
.ba-labels {
  position: absolute; inset: 0;
  z-index: 3;
  pointer-events: none;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 12px 12px;
}
.ba-label-before,
.ba-label-after {
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.82rem; font-weight: 700;
}
.ba-label-before { background: rgba(35,37,40,0.7); color: #fff; }
.ba-label-after  { background: var(--cyan); color: var(--dark); }
.ba-handle {
  position: absolute;
  top: 0; left: 50%;
  width: 44px; height: 100%;
  z-index: 2;
  transform: translateX(-50%);
  display: flex; align-items: center; justify-content: center;
}
.ba-handle-line {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 3px; height: 100%;
  background: rgba(255,255,255,0.9);
}
.ba-handle-circle {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.ba-handle-circle::before {
  content: '◀▶';
  font-size: 10px; color: var(--dark);
  letter-spacing: -3px;
}

/* ════════════════════════════════ */
/* FAQ SECTION                      */
/* ════════════════════════════════ */
.faq-section { padding: 0; margin-top: 50px; }
.faq-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.faq-deco-col { background-size: cover; background-position: center; min-height: 340px; min-width: 0; }
.faq-content-col { background: var(--cyan); padding: 0 23%; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: visible; min-width: 0; }
.faq-tooth {
  position: absolute; top: -5%; right: -13%; z-index: 2; pointer-events: none;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--coral);
  display: flex; align-items: center; justify-content: center;
}
.faq-tooth svg { fill: var(--cyan); width: 54px; height: 54px; display: block; transform: rotate(347deg); }
.about-tooth {
  position: absolute; top: 5%; right: 17%; z-index: 2; pointer-events: none;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--cyan);
  display: flex; align-items: center; justify-content: center;
}
.about-tooth svg { fill: var(--coral); width: 54px; height: 54px; display: block; transform: rotate(19deg); }
.contact-tooth {
  position: absolute; top: -6.9%; right: 54.7%; z-index: 2; pointer-events: none;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--coral);
  display: flex; align-items: center; justify-content: center;
}
.contact-tooth svg { fill: var(--cyan); width: 54px; height: 54px; display: block; transform: rotate(19deg); }
.faq-heading {
  margin-bottom: 32px;
  font-size: 52px;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: 1px;
  color: var(--dark);
}
.swiper-faq { width: 100%; }
.faq-slide { background: #fff; border-radius: 3px; padding: 24px; margin-bottom: 12px; position: relative; }
.faq-slide::after {
  content: '';
  position: absolute;
  bottom: -9px;
  right: 58px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 9px solid #fff;
}
.faq-slide h4 { font-size: 24px; font-weight: 500; margin: 8px 0 16px; color: var(--dark); line-height: 1.2; }
.faq-slide p { color: var(--dark); font-size: 16px; line-height: 1.5; margin: 0; }
.swiper-faq-pagination { margin-top: 24px; position: relative !important; bottom: auto !important; text-align: right; }
.swiper-faq-pagination .swiper-pagination-bullet { background: var(--dark); opacity: 0.35; width: 13px; height: 13px; }
.swiper-faq-pagination .swiper-pagination-bullet-active { opacity: 1; }

/* ════════════════════════════════ */
/* FORM CHECKBOX                    */
/* ════════════════════════════════ */
.form-check input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; accent-color: var(--dark); }

/* ════════════════════════════════ */
/* TESTIMONIALS                     */
/* ════════════════════════════════ */
.testimonials-section { background: var(--light); padding: 72px 0; }
.swiper-testimonials { margin-top: 0; padding-bottom: 52px !important; }
.testimonial-card {
  background: var(--white); border-radius: 16px;
  padding: 32px; box-shadow: var(--shadow); height: auto;
}
.testimonial-stars { color: #f5c000; font-size: 1rem; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial-text { color: var(--dark); font-size: 0.95rem; line-height: 1.75; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--coral));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 1.1rem; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author span  { font-size: 0.8rem; color: var(--mid); }


/* ════════════════════════════════ */
/* MAP                              */
/* ════════════════════════════════ */
.map-section { height: 380px; }
.map-section iframe { width: 100%; height: 100%; border: none; display: block; }

/* ════════════════════════════════ */
/* TREATMENTS section (removed)     */
/* keep for sub-pages compatibility */
/* ════════════════════════════════ */
.treatments-section { background: var(--light); padding: 72px 0; }
.treatments-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.treatment-card {
  display: flex; flex-direction: column;
  background: var(--white); border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none; color: inherit;
}
.treatment-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.treatment-image { height: 220px; overflow: hidden; }
.treatment-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.treatment-card:hover .treatment-image img { transform: scale(1.05); }
.treatment-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.treatment-tag {
  display: inline-block; background: rgba(78,195,224,0.12);
  color: var(--cyan); font-size: 0.75rem; font-weight: 700;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 10px;
  letter-spacing: 0.08em;
}
.treatment-body h3 { margin-bottom: 10px; }
.treatment-body p  { color: var(--mid); font-size: 0.9rem; flex: 1; margin-bottom: 18px; }

/* ════════════════════════════════ */
/* FOOTER                           */
/* ════════════════════════════════ */
.footer { background: var(--white); color: rgba(35,37,40,0.7); padding: 0; }
.footer-5col {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.5fr;
  gap: 32px;
  padding: 64px 40px 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-logo { height: 38px; width: auto; margin-bottom: 16px; display: block; }
.footer-copyright { font-size: 0.78rem; color: rgba(35,37,40,0.45); margin-top: 14px; line-height: 1.6; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--light); color: rgba(35,37,40,0.75);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.social-icon:hover { background: var(--cyan); color: var(--dark); transform: translateY(-3px); }
.footer-col h3 {
  color: var(--dark); font-size: 0.88rem; font-weight: 700; margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }
.footer-col ul li a, .footer-col p { font-size: 0.88rem; color: rgba(35,37,40,0.65); line-height: 1.7; }
.footer-col p a { color: var(--coral); }
.footer-col ul li a:hover, .footer-col p a:hover { color: var(--cyan); }
.footer-col p { margin-bottom: 6px; }
.footer-map { display: flex; align-items: flex-start; }
.footer-map iframe { width: 100%; border-radius: 8px; min-height: 200px; }
.footer-bottom {
  border-top: 1px solid rgba(35,37,40,0.08);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  max-width: 1400px; margin: 0 auto;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(35,37,40,0.45); }
.footer-bottom-links a:hover { color: var(--cyan); }

/* ════════════════════════════════ */
/* COOKIE BANNER                    */
/* ════════════════════════════════ */
#cookie-banner {
  position: fixed; bottom: 0; right: 0; left: 0; z-index: 9999;
  background: var(--dark); color: var(--white);
  padding: 16px 24px; display: flex;
  align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  transform: translateY(100%); transition: transform 0.4s ease;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { font-size: 0.86rem; color: rgba(255,255,255,0.8); }
#cookie-banner p a { color: var(--cyan); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
#cookie-accept {
  background: var(--cyan); color: var(--dark); font-weight: 700;
  padding: 9px 22px; border-radius: 40px; font-size: 0.88rem;
  transition: background var(--transition); cursor: pointer; border: none;
}
#cookie-accept:hover { background: #1DDAD9; }
#cookie-decline {
  background: transparent; color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.3); padding: 9px 18px;
  border-radius: 40px; font-size: 0.88rem; cursor: pointer;
  transition: all var(--transition);
}
#cookie-decline:hover { border-color: rgba(255,255,255,0.7); color: white; }

/* ════════════════════════════════ */
/* ACCESSIBILITY WIDGET             */
/* ════════════════════════════════ */
#accessibility-btn {
  position: fixed; bottom: 160px; left: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--dark); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); z-index: 900;
  transition: background var(--transition); cursor: pointer;
}
#accessibility-btn:hover { background: var(--cyan); color: var(--dark); }
#accessibility-panel {
  display: none; position: fixed; bottom: 216px; left: 24px;
  background: var(--white); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 18px 20px;
  z-index: 901; width: 250px;
  max-height: 80vh; overflow-y: auto;
}
#accessibility-panel.open { display: block; }
#accessibility-panel h4 { font-size: 0.95rem; margin-bottom: 14px; color: var(--dark); }
.a11y-option {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 0.84rem; cursor: pointer;
}
.a11y-option:last-child { border-bottom: none; }
.a11y-toggle {
  width: 34px; height: 18px; background: var(--border);
  border-radius: 9px; position: relative; transition: background var(--transition); flex-shrink: 0;
}
.a11y-toggle::after {
  content: ''; position: absolute; top: 2px; right: 2px;
  width: 14px; height: 14px; background: white;
  border-radius: 50%; transition: transform var(--transition);
}
.a11y-toggle.on { background: var(--cyan); }
.a11y-toggle.on::after { transform: translateX(-16px); }

/* Font size stepper */
.a11y-stepper {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.84rem;
}
.a11y-stepper-btns { display: flex; gap: 6px; }
.a11y-step {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--light); color: var(--dark);
  font-weight: 700; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.a11y-step:hover { background: var(--cyan); }

/* Panel footer links */
.a11y-footer {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border);
}
.a11y-footer a { font-size: 0.78rem; color: var(--mid); }
.a11y-footer a:hover { color: var(--cyan); }

/* High contrast */
body.high-contrast { --bg:#000; --dark:#fff; --mid:#ccc; --border:#555; --light:#111; }
body.high-contrast .benefit-card,
body.high-contrast .testimonial-card,
body.high-contrast .treatment-card,
body.high-contrast .contact-form-col { background: #333; }
body.high-contrast .navbar { background: #000; }

/* Font size steps (zoom keeps every unit — px and rem alike — in proportion) */
body.a11y-font-1 { zoom: 1.1; }
body.a11y-font-2 { zoom: 1.2; }
body.a11y-font-3 { zoom: 1.3; }
body.a11y-font-4 { zoom: 1.4; }
body.a11y-font--1 { zoom: 0.9; }
body.a11y-font--2 { zoom: 0.8; }

/* Readable font */
body.a11y-readable, body.a11y-readable * { font-family: Arial, Helvetica, sans-serif !important; }

/* Highlight headings */
body.a11y-headings h1, body.a11y-headings h2, body.a11y-headings h3,
body.a11y-headings h4, body.a11y-headings h5, body.a11y-headings h6 {
  outline: 2px dashed var(--coral) !important; outline-offset: 3px;
  background: rgba(211,131,89,0.08) !important;
}

/* Highlight links & buttons */
body.a11y-links a, body.a11y-links button, body.a11y-links .btn {
  outline: 2px solid var(--cyan) !important; outline-offset: 2px;
  text-decoration: underline !important;
}

/* Stop animations / flashing */
body.a11y-no-motion *, body.a11y-no-motion *::before, body.a11y-no-motion *::after {
  animation-play-state: paused !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

/* Keyboard navigation emphasis */
body.a11y-keyboard *:focus {
  outline: 3px solid var(--cyan) !important; outline-offset: 2px !important;
}

/* ════════════════════════════════ */
/* CHAT WIDGET                      */
/* ════════════════════════════════ */
#chat-btn {
  position: fixed; bottom: 24px; left: 24px;
  height: 56px; padding: 0 20px 0 18px; border-radius: 28px;
  background: var(--coral); color: var(--white);
  display: flex; align-items: center; gap: 9px; white-space: nowrap;
  box-shadow: var(--shadow); z-index: 900;
  transition: background var(--transition); cursor: pointer;
  animation: chat-btn-pulse 2.5s ease-in-out infinite;
}
#chat-btn:hover { background: var(--dark); color: var(--white); }
#chat-btn svg { flex-shrink: 0; }
.chat-btn-text { font-size: 0.9rem; font-weight: 700; }

@keyframes chat-btn-pulse {
  0%, 100% { box-shadow: var(--shadow), 0 0 0 0 rgba(211,131,89,0.55); }
  50%      { box-shadow: var(--shadow), 0 0 0 9px rgba(211,131,89,0); }
}
@media (prefers-reduced-motion: reduce) {
  #chat-btn { animation: none; }
}

#chat-panel {
  display: none; flex-direction: column;
  position: fixed; bottom: 92px; left: 24px;
  width: 360px; max-width: calc(100vw - 32px); max-height: 520px;
  background: var(--white); border-radius: 16px;
  box-shadow: var(--shadow-lg); overflow: hidden;
  z-index: 901;
}
#chat-panel.open { display: flex; }

.chat-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; background: var(--dark); color: var(--white); flex-shrink: 0;
}
.chat-header h4 { font-size: 0.92rem; }
.chat-header-actions { display: flex; align-items: center; gap: 10px; }
.chat-reset-btn {
  font-size: 0.76rem; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3); border-radius: 20px;
  padding: 4px 10px; transition: all var(--transition);
}
.chat-reset-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.6); }
.chat-close-btn {
  width: 26px; height: 26px; display: flex; align-items: center; justify-content: center;
  color: var(--white); border-radius: 50%; transition: background var(--transition); font-size: 0.9rem;
}
.chat-close-btn:hover { background: rgba(255,255,255,0.15); }

.chat-messages {
  flex: 1; overflow-y: auto; padding: 16px 18px;
  display: flex; flex-direction: column; gap: 12px;
  background: var(--light);
  overscroll-behavior: contain; /* בלי זה, גלילה שמגיעה לקצה הרשימה "עוברת" לגלול את האתר ברקע ב-iOS */
}
.chat-msg {
  max-width: 82%; padding: 10px 14px; border-radius: 14px;
  font-size: 0.86rem; line-height: 1.6;
  white-space: pre-wrap; word-break: break-word;
}
.chat-msg-user {
  align-self: flex-start; background: var(--cyan); color: var(--dark);
  border-bottom-right-radius: 4px;
}
.chat-msg-bot {
  align-self: flex-end; background: var(--white); color: var(--dark);
  box-shadow: var(--shadow); border-bottom-left-radius: 4px;
}
.chat-msg-error { background: var(--pink); }
.chat-msg strong { font-weight: 800; }
.chat-msg a { color: var(--teal); text-decoration: underline; font-weight: 600; }

.chat-typing {
  align-self: flex-end; display: flex; gap: 4px;
  padding: 12px 14px; background: var(--white); border-radius: 14px; box-shadow: var(--shadow);
}
.chat-typing span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--mid);
  animation: chat-typing-bounce 1.2s infinite ease-in-out;
}
.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes chat-typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30%           { transform: translateY(-4px); opacity: 1; }
}

.chat-input-row {
  display: flex; align-items: flex-end; gap: 8px;
  padding: 12px 14px; border-top: 1px solid var(--border); flex-shrink: 0;
}
.chat-input-row textarea {
  flex: 1; resize: none; border: 1px solid var(--border); border-radius: 10px;
  padding: 8px 12px; font-size: 0.86rem; max-height: 100px;
  font-family: var(--font); color: var(--dark);
}
.chat-input-row textarea:focus { outline: none; border-color: var(--cyan); }
.chat-send-btn {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--dark); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.chat-send-btn:hover:not(:disabled) { background: var(--cyan); color: var(--dark); }
.chat-send-btn:disabled { opacity: 0.5; cursor: default; }

@media (max-width: 480px) {
  #chat-panel.open {
    position: fixed; inset: 0; width: 100%; max-width: 100%; height: 100%; max-height: 100%;
    border-radius: 0; bottom: 0; right: 0;
    z-index: 1500; /* מעל ה-site-header (1000) כדי שהכפתורים בכותרת הצ'ט לא יוסתרו מתחת לתפריט */
  }
  #chat-btn {
    bottom: 20px; left: 20px;
    height: 52px; padding: 0 16px 0 14px;
  }
  .chat-btn-text { font-size: 0.84rem; }

  /* נועל את הגלילה של הרקע כשהצ'ט פתוח במסך מלא, כדי שגלילה בתוך הצ'ט לא תגלול את האתר מתחתיו */
  body.chat-open { overflow: hidden; }

  /* מתחת ל-16px, ספארי ב-iOS מגדיל זום אוטומטית בפוקוס על שדה קלט - מה שדוחף את כפתור השליחה מחוץ למסך */
  .chat-input-row textarea { font-size: 16px; }
}

/* ════════════════════════════════ */
/* PAGE HERO (inner pages)          */
/* ════════════════════════════════ */
.page-hero {
  background: var(--dark); padding: 140px 0 72px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(78,195,224,0.10), rgba(211,131,89,0.07));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,0.68); font-size: 1.05rem; max-width: 580px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; font-size: 0.84rem; color: rgba(255,255,255,0.45); }
.breadcrumb a { color: rgba(255,255,255,0.45); }
.breadcrumb a:hover { color: var(--cyan); }

/* ════════════════════════════════ */
/* ACCORDION / FAQ                  */
/* ════════════════════════════════ */
.accordion { display: flex; flex-direction: column; gap: 10px; margin-top: 36px; }
.accordion-item { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.accordion-header {
  width: 100%; background: none; display: flex;
  align-items: center; justify-content: space-between;
  padding: 18px 22px; font-size: 0.97rem; font-weight: 700;
  color: var(--dark); cursor: pointer; text-align: right; gap: 12px;
  transition: background var(--transition);
}
.accordion-header:hover { background: var(--light); }
.accordion-header.active { color: var(--cyan); }
.accordion-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--light); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 1.1rem;
  color: var(--mid); transition: transform var(--transition), background var(--transition);
}
.accordion-header.active .accordion-icon { transform: rotate(45deg); background: var(--cyan); color: var(--dark); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion-body.open { max-height: 400px; }
.accordion-body-inner { padding: 0 22px 18px; color: var(--mid); font-size: 0.93rem; line-height: 1.75; }

/* ════════════════════════════════ */
/* POST CONTENT                     */
/* ════════════════════════════════ */
.post-content { max-width: 800px; margin: 0 auto; }
.post-content h2 { margin: 2rem 0 0.9rem; }
.post-content h3 { margin: 1.7rem 0 0.7rem; color: var(--cyan); }
.post-content p  { margin-bottom: 1.1rem; }
.post-content ul, .post-content ol { padding-right: 20px; margin-bottom: 1.1rem; }
.post-content li { margin-bottom: 7px; }
.post-content .highlight-box {
  background: rgba(78,195,224,0.09); border-right: 4px solid var(--cyan);
  padding: 18px 22px; border-radius: 0 var(--radius) var(--radius) 0; margin: 1.4rem 0;
}

/* ════════════════════════════════ */
/* ARTICLE PAGE — HERO              */
/* ════════════════════════════════ */
.article-hero { padding: 0; }
.article-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 64vh;
}
.article-hero-text {
  background: var(--cyan);
  display: flex; flex-direction: column; justify-content: center;
  padding: 150px 8% 64px;
}
.article-breadcrumb { color: rgba(35,37,40,0.55); margin-bottom: 18px; }
.article-breadcrumb a { color: rgba(35,37,40,0.55); }
.article-breadcrumb a:hover { color: var(--dark); }
.article-hero-text h1 {
  color: var(--dark);
  font-size: 42px; line-height: 1.25; letter-spacing: 0.5px;
  margin-bottom: 24px; max-width: 620px;
}
.article-excerpt {
  color: rgba(35,37,40,0.75);
  font-size: 1.05rem; line-height: 1.6;
  margin-bottom: 26px; max-width: 560px;
}
.article-byline { display: flex; align-items: center; gap: 14px; margin-bottom: 30px; }
.article-byline-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; object-position: top center;
  border: 2px solid rgba(35,37,40,0.15);
}
.article-byline-info h4 { color: var(--dark); margin-bottom: 2px; }
.article-byline-info span { color: rgba(35,37,40,0.65); font-size: 0.82rem; }
.article-hero-btn { width: fit-content; }
.article-hero-photo {
  background: var(--white);
  display: flex; align-items: stretch; justify-content: center;
  padding: 0;
}
.article-photo-circle { width: 100%; height: 100%; }
.article-photo-circle img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ════════════════════════════════ */
/* ARTICLE — BODY WRAP              */
/* ════════════════════════════════ */
.article-body-section { background: var(--bg); }

/* ════════════════════════════════ */
/* ARTICLE — BEFORE/AFTER SNIPPET   */
/* ════════════════════════════════ */
.article-gallery-section { background: var(--light); }
.article-gallery-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.article-gallery-inner h2 { margin-bottom: 8px; }
.article-gallery-inner p { color: var(--mid); margin-bottom: 32px; }
.article-gallery-inner .ba-slider { margin: 0 auto; max-width: 612px; }
.article-gallery-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 900px; margin: 0 auto;
}
.article-gallery-grid .ba-slider { max-width: 100%; margin: 0; }
@media (max-width: 700px) {
  .article-gallery-grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* ════════════════════════════════ */
/* ARTICLE — SOCIAL SHARE           */
/* ════════════════════════════════ */
.article-share { background: var(--white); padding: 40px 0; }
.article-share-inner {
  max-width: 800px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.article-share-label { font-weight: 700; color: var(--dark); }
.article-share-row { display: flex; gap: 12px; }
.article-share-btn {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  color: var(--white); transition: transform var(--transition), opacity var(--transition);
}
.article-share-btn:hover { transform: translateY(-3px); opacity: 0.9; }
.article-share-btn.share-mail { background: var(--dark); }
.article-share-btn.share-wa   { background: var(--teal); }
.article-share-btn.share-fb   { background: var(--coral); }
.article-share-btn svg { width: 18px; height: 18px; fill: currentColor; }

/* ════════════════════════════════ */
/* ARTICLE — MID CTA BANNER         */
/* ════════════════════════════════ */
.article-cta {
  background:
    linear-gradient(rgba(35,37,40,0.72), rgba(35,37,40,0.72)),
    url('/images/article-hero-benefits.webp') center/cover no-repeat;
  padding: 64px 0;
}
.article-cta-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.article-cta-inner h2 { color: var(--white); margin-bottom: 20px; }
.article-cta-inner .btn { margin: 0 auto; }

/* ════════════════════════════════ */
/* ARTICLE — RELATED POSTS          */
/* ════════════════════════════════ */
.article-related { background: var(--light); }
.article-related h2 { text-align: center; margin-bottom: 40px; }
.article-related-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  max-width: 900px; margin: 0 auto;
}
.article-related-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
}
.article-related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.article-related-card-img { width: 100%; height: 220px; object-fit: cover; display: block; }
.article-related-card-body { padding: 28px; }
.article-related-card h3 { margin-bottom: 14px; }
.article-related-card h3 a { color: var(--dark); }
.article-related-card h3 a:hover { color: var(--cyan); }
.article-related-card a.article-related-link { color: var(--coral); font-weight: 700; font-size: 0.88rem; }
.article-related-card a.article-related-link:hover { text-decoration: underline; }

/* ════════════════════════════════ */
/* ARTICLE — NEWSLETTER             */
/* ════════════════════════════════ */
.article-newsletter { background: var(--dark); text-align: center; }
.article-newsletter-inner { max-width: 560px; margin: 0 auto; }
.article-newsletter-inner h3 { color: var(--white); margin-bottom: 24px; font-weight: 500; }
.article-newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.article-newsletter-form input[type="email"] {
  flex: 1; min-width: 220px; padding: 13px 18px;
  border-radius: 40px; border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06); color: var(--white); font-size: 0.95rem;
  outline: none; transition: border-color var(--transition);
}
.article-newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.5); }
.article-newsletter-form input[type="email"]:focus { border-color: var(--cyan); }
.article-newsletter-form button {
  padding: 13px 30px; border-radius: 40px;
  background: var(--cyan); color: var(--dark); font-weight: 700; font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}
.article-newsletter-form button:hover { background: var(--teal); color: var(--white); }

@media (max-width: 900px) {
  .article-hero-split { grid-template-columns: 1fr; min-height: auto; }
  .article-hero-text { padding: 130px 7% 40px; }
  .article-hero-photo { padding: 0; order: -1; min-height: 260px; }
  .article-related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .article-hero-text h1 { font-size: 30px; }
  .article-share-inner { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════ */
/* RESPONSIVE                       */
/* ════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-5col { grid-template-columns: 1fr 1fr 1fr; }
  .footer-map { grid-column: 1 / -1; }
  .about-photo-circle { width: 260px; height: 260px; }
  .benefits-5col { grid-template-columns: 1fr 1fr 1fr; }
  .benefits-title-col { grid-column: 1 / -1; text-align: center; padding-right: 0; }
  .gallery-grid-inner { grid-template-columns: repeat(2, 1fr); }
  .values-4col { grid-template-columns: 1fr 1fr; }
  .value-card { padding: 20px 0 32px 40px; }
  .method-text-inner h2,
  .about-content h2,
  .faq-heading,
  .contact-heading,
  .gallery-heading,
  .benefits-title-col h2,
  .hero-text-inner h1 { font-size: 36px; line-height: 1.2em; }
}

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-slide-col { min-height: 55vw; }
  .method-split { grid-template-columns: 1fr; }
  .method-bg-col { min-height: 300px; }
  .method-text-wrap { padding: 52px 32px; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-image-col { min-height: 300px; }
  .about-split       { grid-template-columns: 1fr; min-height: auto; }
  .about-content     { padding: 48px 16%; }
  .about-photo-wrap  { min-height: 320px; order: -1; }
  .about-photo-circle { width: 260px; height: 260px; }
  .values-4col { grid-template-columns: 1fr 1fr; }
  .value-card { padding: 20px 0 32px 40px; }
  .gallery-split { grid-template-columns: 1fr; }
  .gallery-text-col { padding: 0; }
  .gallery-text-inner { padding: 40px 32px 0; }
  .ba-slider { margin: 32px 20px 24px; max-width: 100%; }
  .gallery-screenshot-wrap { padding-top: 0; }
  .gallery-media-col { padding: 0; }
  .treatments-grid   { grid-template-columns: 1fr; }
  .faq-split { grid-template-columns: 1fr; }
  .faq-deco-col { min-height: 220px; }
  .faq-content-col { padding: 52px 32px; }
}

@media (max-width: 767px) {
  section { padding: 52px 0; }
  .topbar, .nav-phone-link, .nav-cta-desktop, .nav-menu { display: none; }
  .nav-actions { display: flex; }
  .nav-whatsapp, .nav-cta-mobile { display: flex; }
  .nav-hamburger { display: flex; }
  .site-header { top: 0; right: 0; left: 0; border-radius: 0; box-shadow: none; }
  .navbar { background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,0.08); border-radius: 0; }
  .navbar .container { padding: 0 16px; }
  .nav-inner { gap: 12px; }
  .nav-right { order: 0; }
  .nav-logo { order: 2; flex-shrink: 0; }
  .logo-img { height: 32px; }
  .nav-actions { order: 1; gap: 8px; }
  .nav-whatsapp { order: 3; }
  .nav-cta-mobile { order: 2; padding: 8px 12px; }
  .nav-hamburger { order: 1; }
  .logo-img { filter: none; object-fit: contain; }
  .nav-hamburger span { background: var(--cyan); }
  .about-photo-wrap { padding: 0; min-height: auto; }
  .about-photo-circle { width: 100%; height: auto; aspect-ratio: 1 / 1; }
  .hero-text-col { padding: 90px 28px 52px; }
  .benefits-5col { grid-template-columns: 1fr 1fr; gap: 16px; }
  .benefits-title-col { grid-column: 1 / -1; }
  .values-4col { grid-template-columns: 1fr; }
  .values-heading-col { order: -1; padding: 0 20px 12px; }
  .value-card { text-align: center; padding: 20px 0 32px; }
  .gallery-text-col { order: -1; }
  .gallery-grid-inner, .gallery-video-wrap { display: none; }
  .footer-5col { grid-template-columns: 1fr 1fr; padding: 40px 24px 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .method-text-inner h2,
  .about-content h2,
  .values-heading-col h2,
  .faq-heading,
  .contact-heading,
  .gallery-heading,
  .benefits-title-col h2,
  .hero-text-inner h1 { font-size: 28px; line-height: 1.2em; }
}

@media (max-width: 540px) {
  .container { padding: 0 16px; }
  .footer-5col { grid-template-columns: 1fr; }
  .contact-form-col { padding: 48px 24px; }
  .benefits-5col { grid-template-columns: 1fr; }
  .gallery-grid-inner { grid-template-columns: 1fr 1fr; }
  .hero-text-col { padding: 90px 20px 48px; }
}

/* ════════════════════════════════ */
/* ════════════════════════════════ */
/* INNER PAGE LAYOUTS               */
/* ════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.about-grid .about-content {
  background: transparent;
  padding: 0;
}
.about-grid .about-content h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; line-height: 1.3; margin-bottom: 1rem; }
.about-grid .about-photo-wrap {
  background: transparent;
  padding: 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.benefit-icon-wrap { font-size: 2.2rem; margin-bottom: 14px; }
.benefit-card h3 { margin-bottom: 10px; }
.benefit-card p { color: var(--mid); font-size: 0.93rem; line-height: 1.65; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 52px 0 32px;
}
.footer-contact-list { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 8px; color: rgba(255,255,255,0.7); }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════ */
/* SCROLL ANIMATIONS                */
/* ════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }
