/* === TreatMyCar — Shared Stylesheet === */

:root {
  --bg:        #0a0a0a;
  --bg-card:   #141414;
  --bg-card2:  #1c1c1c;
  --border:    #2a2a2a;
  --gold:      #3e90fb;
  --gold-dark: #023a8a;
  --white:     #ffffff;
  --gray:      #a0a0a0;
  --gray-light:#d0d0d0;
  --green:     #4caf7d;
  --radius:    10px;
  --shadow:    0 4px 24px rgba(0,0,0,.5);
  --font:      'Segoe UI', system-ui, -apple-system, sans-serif;
  --max:       1140px;
  --transition: .2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }

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

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

/* ── Section spacing ── */
.section { padding: 80px 0; }
.section--tight { padding: 48px 0; }
.section--dark  { background: var(--bg-card); }

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

.section-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { color: var(--gray); max-width: 600px; margin-bottom: 48px; }

/* ── Navbar ── */
body > header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.navbar {
  position: relative;
  /* Initially transparent */
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-bottom 0.3s ease;
}
/* Scrolled state for the navbar */
body > header.scrolled .navbar {
  background: rgba(10,10,10,.95); /* Grey background when scrolled */
  backdrop-filter: blur(12px); /* Blur when scrolled */
  border-bottom: 1px solid var(--border); /* Border when scrolled */
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.navbar__logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar__logo span { color: var(--gold); }
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.navbar__nav a {
  color: var(--gray-light);
  font-size: .9rem;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
}
.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--white);
  background: var(--bg-card2);
}

/* Dropdown Styles */
.navbar__item.has-dropdown {
  position: relative;
}

.navbar__item.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-icon {
  font-size: 0.7rem;
  transition: transform var(--transition);
}

.navbar__item.has-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(20, 20, 20, 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  list-style: none;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

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

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: 6px;
  color: var(--gray-light);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.dropdown-menu a:hover {
  background: var(--bg-card2);
  color: var(--white);
  padding-left: 20px;
}

.navbar__cta {
  background: var(--gold);
  color: white !important;
  font-weight: 700;
  border-radius: 6px;
  padding: 8px 18px !important;
}
.navbar__cta:hover { background: var(--gold-dark) !important; color: var(--bg) !important; }

/* Mobile nav toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .navbar__toggle { display: flex; }
  .navbar__nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: rgba(10,10,10,.98);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }
  .navbar__nav.open { display: flex; }
  .navbar__nav a { padding: 12px 16px; width: 100%; }

  /* Mobile Dropdown Adjustments */
  .navbar__item.has-dropdown .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding-left: 24px;
    min-width: auto;
  }

  .navbar__item.has-dropdown.active .dropdown-menu {
    display: block;
  }

  .navbar__item.has-dropdown > a {
    justify-content: space-between;
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}
.btn--primary { background: var(--gold); color: white; }
.btn--primary:hover { background: var(--gold-dark); color: var(--bg); transform: translateY(-2px); }
.btn--primary:hover { background: var(--gold-dark); color: var(--bg); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--white); border: 1.5px solid var(--border); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--ghost  { background: transparent; color: var(--gray); padding: 10px 0; }
.btn--ghost:hover { color: var(--white); }
.btn--sm { padding: 10px 20px; font-size: .85rem; }
.btn--whatsapp { background: #25d366; color: #fff; }
.btn--whatsapp:hover { background: #1ebe5d; color: #fff; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.hero__main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
}
.hero__stats {
  display: flex;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero__stat {
  flex: 1;
  padding: 20px 32px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.hero__stat:last-child { border-right: none; }
.hero__stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.hero__stat-value {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/vw-van-hero.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,.72);
}
.hero__content { max-width: 640px; position: relative; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(3,77,173,.12);
  border: 1px solid rgba(3,77,173,.25);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
  letter-spacing: .05em;
}
.hero__title { margin-bottom: 20px; }
.hero__title em { color: var(--gold); font-style: normal; }
.hero__subtitle { color: var(--gray); font-size: 1.1rem; margin-bottom: 32px; }
.hero__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.hero__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: var(--gray-light);
}
.hero__feature::before {
  content: '✓';
  width: 22px; height: 22px;
  background: rgba(76,175,125,.15);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.card:hover { border-color: rgba(3,77,173,.3); transform: translateY(-2px); }
.card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.card__title { margin-bottom: 10px; }
.card__text { color: var(--gray); font-size: .95rem; }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* ── Service card ── */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover { border-color: rgba(3,77,173,.4); transform: translateY(-3px); box-shadow: var(--shadow); }
.service-card__img {
  height: 200px;
  background: var(--bg-card2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.service-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card__price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 12px;
}
.service-card__price s { font-size: 1rem; color: var(--gray); font-weight: 400; margin-left: 8px; }
.service-card__title { margin-bottom: 12px; }
.service-card__list { list-style: none; margin-bottom: 20px; flex: 1; }
.service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--gray-light);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}
.service-card__list li:last-child { border-bottom: none; }
.service-card__list li::before {
  content: '✓';
  color: var(--green);
  font-size: .75rem;
  font-weight: 700;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ── USP bar ── */
.usp-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 32px;
  border-right: 1px solid var(--border);
  flex: 1;
  min-width: 200px;
}
.usp-item:last-child { border-right: none; }
.usp-item__icon { font-size: 1.5rem; flex-shrink: 0; }
.usp-item__label { font-size: .75rem; color: var(--gray); text-transform: uppercase; letter-spacing: .05em; }
.usp-item__value { font-weight: 700; font-size: .95rem; }

/* ── Reviews ── */
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.review-card__stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-card__text { color: var(--gray-light); font-size: .95rem; margin-bottom: 16px; font-style: italic; }
.review-card__author { font-weight: 700; font-size: .9rem; }
.review-card__date { color: var(--gray); font-size: .8rem; }

/* ── FAQ ── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 8px;
}
.faq-item__question {
  background: var(--bg-card);
  padding: 18px 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.faq-item__question:hover { background: var(--bg-card2); }
.faq-item__question::after { content: '+'; color: var(--gold); font-size: 1.4rem; font-weight: 300; }
.faq-item.open .faq-item__question { border-bottom: 1px solid var(--border); }
.faq-item.open .faq-item__question::after { content: '−'; }
.faq-item__answer {
  display: none;
  background: var(--bg-card);
  padding: 18px 24px;
  color: var(--gray-light);
  font-size: .95rem;
}
.faq-item.open .faq-item__answer { display: block; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--gray);
  padding: 16px 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { color: var(--border); }
.breadcrumb span { color: var(--gray-light); }

/* ── Page header ── */
.page-header {
  background: linear-gradient(135deg, #0a0a0a, #111);
  padding: 104px 0 40px;
  border-bottom: 1px solid var(--border);
}
.page-header__badge { margin-bottom: 16px; }
.page-header__title { margin-bottom: 12px; }
.page-header__title em { color: var(--gold); font-style: normal; }
.page-header__subtitle { color: var(--gray); font-size: 1.1rem; max-width: 580px; }

/* ── Checklist ── */
.checklist { list-style: none; }
.checklist li {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  font-size: .95rem;
  color: var(--gray-light);
  border-bottom: 1px solid var(--border);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(76,175,125,.15);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Two-column layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Stat boxes ── */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; }
.stat-box {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.stat-box__num { font-size: 2rem; font-weight: 800; color: var(--gold); }
.stat-box__label { font-size: .8rem; color: var(--gray); margin-top: 4px; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(3,77,173,.1), rgba(3,77,173,.03));
  border: 1px solid rgba(3,77,173,.2);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}
.cta-banner__title { margin-bottom: 12px; }
.cta-banner__subtitle { color: var(--gray); margin-bottom: 28px; }
.cta-banner__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand { font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; }
.footer__brand span { color: var(--gold); }
.footer__tagline { color: var(--gray); font-size: .9rem; margin-bottom: 20px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 36px; height: 36px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--gray);
  transition: all var(--transition);
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); }
.footer__heading { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gray); margin-bottom: 16px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__links a { color: var(--gray-light); font-size: .9rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  color: var(--gray);
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ── Contact form ── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .85rem; font-weight: 600; color: var(--gray-light); margin-bottom: 8px; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-size: .95rem;
  font-family: var(--font);
  transition: border-color var(--transition);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; }
.form-select option { background: var(--bg-card); }

/* ── Tag / Badge ── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.badge--gold { background: rgba(3,77,173,.15); color: var(--gold); border: 1px solid rgba(3,77,173,.3); }
.badge--green { background: rgba(76,175,125,.15); color: var(--green); border: 1px solid rgba(76,175,125,.3); }

/* ── Divider ── */
.divider { border: none; border-top: 1px solid var(--border); margin: 48px 0; }

/* ── Utilities ── */
.text-gold  { color: var(--gold); }
.text-gray  { color: var(--gray); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.flex  { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.items-center { align-items: center; }

/* ── Responsive ── */
@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .hero { min-height: auto; }
  .hero__main { padding: 100px 20px 48px; }
  .hero__stats { flex-wrap: wrap; }
  .hero__stat { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,.15); }
  .cta-banner { padding: 32px 20px; }
  .usp-item { padding: 16px 20px; }
  h1 { font-size: 2rem; }
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Image compare ── */
.js-img-compare {
  max-width: 860px;
  margin: 0 auto 18px;
}

.images-compare-container {
  display: inline-block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.images-compare-before {
  will-change: clip;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.images-compare-after {
  pointer-events: none;
}

.images-compare-before img,
.images-compare-after img {
  max-width: 100%;
  height: auto;
  display: block;
}

.images-compare-separator {
  position: absolute;
  background: #fff;
  height: 100%;
  width: 1px;
  z-index: 4;
  left: 0;
  top: 0;
}

.images-compare-handle {
  height: 42px;
  width: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  border: 3px solid #fff;
  border-radius: 1000px;
  box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
  z-index: 3;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.images-compare-left-arrow,
.images-compare-right-arrow {
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute;
  top: 50%;
  margin-top: -6px;
}

.images-compare-left-arrow {
  border-right: 6px solid #fff;
  left: 50%;
  margin-left: -17px;
}

.images-compare-right-arrow {
  border-left: 6px solid #fff;
  right: 50%;
  margin-right: -17px;
}

.images-compare-label {
  font-family: sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  color: rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.7);
  padding: 10px;
  border-radius: 5px;
  pointer-events: none;
  display: none;
}

.images-compare-container .images-compare-label {
  display: inherit;
}

.images-compare-before .images-compare-label {
  left: 10px;
}

.images-compare-after .images-compare-label {
  left: auto;
  right: 10px;
}

.img-compare-actions {
  text-align: center;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Before / After Slider ── */
.ba-slider {
  position: relative;
  max-width: 860px;
  height: 700px;
  margin: 0 auto;
  border-radius: var(--radius);
  cursor: col-resize;
  user-select: none;
  touch-action: pan-y;
  overflow: hidden;
}

.ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.ba-img--before {
  clip-path: inset(0 50% 0 0);
  object-position: 50% 40%;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}

.ba-handle__line {
  flex: 1;
  width: 2px;
  background: rgba(255,255,255,0.8);
}

.ba-handle__circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.5);
  flex-shrink: 0;
}

.ba-label {
  position: absolute;
  top: 14px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: 20px;
  pointer-events: none;
  z-index: 11;
}

.ba-label--left  { left:  14px; }
.ba-label--right { right: 14px; }

/* ── Sticky WhatsApp FAB ── */
.fab-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  z-index: 9999;
  transition: transform 0.2s, box-shadow 0.2s;
}
.fab-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  color: #fff;
}
@media (max-width: 600px) {
  .fab-wa span { display: none; }
  .fab-wa { padding: 16px; border-radius: 50%; font-size: 1.4rem; }
}
