/* =============================================
   Fix Phone 24/7 — style.css
   ============================================= */

/* Using native system font stack for an Apple-like premium look —
   renders actual San Francisco on Mac/iOS, Segoe UI on Windows,
   Roboto on Android/ChromeOS. No external font request needed. */

/* ---- CSS Variables (Light & Dark) ---- */
:root {
  --brand: #F35A7B;
  --brand-dk: #C74964;
  --brand-lt: #FFDFE0;
  --dark: #1D1D1F;
  --blue: #147D89;
  --blue-dk: #0F616A;
  --blue-lt: #E9F1F6;

  --text: #1D1D1F;
  --muted: #6E6E73;
  --bg: #ffffff;
  --surf: #E9F1F6;
  --bdr: #DADADC;

  --green: #1A2E09;
  --green-lt: #A2D294;

  --font-head: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --rmd: 8px;
  --rlg: 20px;
  --nav-h: 80px;
}

[data-theme="dark"] {
  --text: #F5F5F7;
  --muted: #98989D;
  --bg: #0f1117;
  --surf: #1C1C1E;
  --bdr: #38383A;
  --brand-lt: rgba(243, 90, 123, 0.16);
  --blue-lt: rgba(20, 125, 137, 0.16);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: #E7ECF5;
  transition: background 0.3s, color 0.3s;
}

h1, h2, h3, h4, .s-title, .logo, .about-card h3 {
  font-family: var(--font-head);
  letter-spacing: -0.01em;
}

[data-theme="dark"] body {
  background: #06070a;
}

/* Site wrapper — boxed "card" container, framed against the page background */
.site-wrap {
  max-width: min(calc(100vw - 0.8in), 1800px);
  margin: 0 auto;
  background: var(--bg);
  box-shadow: 0 0 50px rgba(29,29,31,0.12);
  transition: background 0.3s, box-shadow 0.3s;
}
[data-theme="dark"] .site-wrap {
  box-shadow: 0 0 60px rgba(0,0,0,0.55);
}

/* =============================================
   NAVBAR
   ============================================= */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: var(--nav-h);
  border: 1px solid var(--bdr);
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  margin-bottom: 0.2in;
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* Logo */
.logo { display: flex; align-items: center; gap: 15px; text-decoration: none; color: var(--text); }
.logo-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--brand); display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.logo-icon img { width: 120%; height: 100%; object-fit: cover; }
.logo-icon i { color: #fff; font-size: 20px; }
.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  max-width: 220px;
}
.logo-img-dark { display: none; }
[data-theme="dark"] .logo-img-light { display: none; }
[data-theme="dark"] .logo-img-dark { display: block; }

/* Nav Links */
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a {
  font-size: 14px; color: var(--muted); text-decoration: none;
  transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--blue); border-radius: 2px;
  transition: width 0.25s;
}
.nav-links a:hover,
.nav-links a.nav-link--active { color: var(--blue); font-weight: 600; }
.nav-links a:hover::after,
.nav-links a.nav-link--active::after { width: 100%; }

/* Nav Actions */
.nav-actions { display: flex; gap: 10px; align-items: center; }

.theme-toggle {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid var(--bdr); background: var(--surf);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 18px; transition: all 0.2s;
}
.theme-toggle:hover { border-color: var(--blue); color: var(--blue); }

.nav-call {
  display: flex; align-items: center; gap: 7px;
  background: var(--brand); color: #fff; border: none;
  padding: 9px 18px; border-radius: 8px; font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: var(--font-body); text-decoration: none;
  transition: background 0.2s;
}
.nav-call:hover { background: var(--brand-dk); }
.nav-call:active { transform: scale(0.96); }

.nav-wa {
  display: flex; align-items: center; gap: 7px;
  background: #25D366; color: #fff; border: none;
  padding: 9px 16px; border-radius: 8px; font-size: 13px; font-weight: 600;
  text-decoration: none; transition: opacity 0.2s;
}
.nav-wa:hover { opacity: 0.88; }
.nav-wa:active { transform: scale(0.96); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; border: none; background: transparent;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-menu {
  position: fixed; top: 0; right: -100%;
  width: min(320px, 85vw); height: 100vh;
  background: var(--bg); border-left: 0.5px solid var(--bdr);
  z-index: 200; padding: 2rem 1.5rem;
  display: flex; flex-direction: column; gap: 2rem;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }

.mobile-close {
  align-self: flex-end; border: none; background: var(--surf);
  width: 36px; height: 36px; border-radius: 8px;
  cursor: pointer; font-size: 20px; color: var(--text);
  display: flex; align-items: center; justify-content: center;
}

.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.mob-link {
  display: block; padding: .9rem 1rem; font-size: 17px; font-weight: 600;
  color: var(--text); text-decoration: none; border-radius: var(--rmd);
  transition: background 0.2s, color 0.2s;
}
.mob-link:hover { background: var(--blue-lt); color: var(--blue); }

.mob-actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.mob-call {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--brand); color: #fff; padding: 13px; border-radius: 10px;
  font-size: 15px; font-weight: 600; text-decoration: none; transition: background 0.2s;
}
.mob-call:hover { background: var(--brand-dk); }
.mob-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366; color: #fff; padding: 13px; border-radius: 10px;
  font-size: 15px; font-weight: 600; text-decoration: none; transition: opacity 0.2s;
}
.mob-wa:hover { opacity: 0.88; }

.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45);
  z-index: 150; opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
.overlay.show { opacity: 1; pointer-events: all; }

/* =============================================
   HERO CONTENT
   ============================================= */
.hero {
  max-width: 100%;
  margin: 0;
  padding: clamp(1.75rem, 3vw, 2.25rem) clamp(1.5rem, 4vw, 2.5rem);
  background:
    linear-gradient(90deg, rgba(251,243,227,0.92) 0%, rgba(251,243,227,0.7) 40%, rgba(251,243,227,0) 62%),
    url('images/hero/hero-banner-2.jpg') center right / cover no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  aspect-ratio: 3297 / 916;
  min-height: 508px;
  max-height: 668px;
  border-radius: 0;
  border: none;
  box-shadow: 0 20px 50px rgba(29,29,31,0.18);
  margin-bottom: 0.1in;
}
[data-theme="dark"] .hero {
  background:
    linear-gradient(90deg, rgba(29,29,31,0.95) 0%, rgba(29,29,31,0.78) 42%, rgba(29,29,31,0.08) 68%),
    url('images/hero/hero-banner-2.jpg') center right / cover no-repeat;
}
[data-theme="dark"] .hero .btn-book {
  border: 1.5px solid rgba(255,255,255,0.25);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.hero-content {
  width: 100%;
  max-width: min(calc(100vw - 0.8in), 1800px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-inner {
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px; width: fit-content;
  background: rgba(255,255,255,0.85); color: var(--blue-dk);
  border: 0.5px solid #B7DEE3; border-radius: 100px;
  padding: 5px 14px; font-size: 13px; font-weight: 600; margin-bottom: 1.25rem;
  backdrop-filter: blur(4px);
}
[data-theme="dark"] .hero-badge { background: rgba(28,28,30,0.75); color: #7FC4CE; border-color: #1F4A50; }

.hero h1 {
  font-size: clamp(28px, 5vw, 44px); font-weight: 700;
  line-height: 1.15; margin-bottom: 1rem; color: var(--dark);
}
[data-theme="dark"] .hero h1 { color: var(--text); }
.hero h1 span { color: var(--blue); }

.hero p {
  font-size: 16px; color: var(--muted);
  line-height: 1.75; margin-bottom: 1.75rem; max-width: 520px;
}

.hero-cta-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 1rem; }

.btn-call-hero {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--brand); color: #fff; border: none;
  padding: 13px 22px; border-radius: 10px; font-size: 15px; font-weight: 700;
  font-family: var(--font-body); white-space: nowrap; text-decoration: none;
  box-shadow: 0 10px 24px rgba(243,90,123,0.28);
  transition: background 0.2s, transform 0.15s;
}
.btn-call-hero:hover { background: var(--brand-dk); transform: translateY(-1px); }
.btn-call-hero:active { transform: scale(0.96); }

.hero-trust {
  display: flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 600; color: var(--dark);
}
.hero-trust i { color: #F5A623; }
.hero-trust-dot { color: var(--muted); font-weight: 400; }
[data-theme="dark"] .hero-trust { color: var(--text); }

.btn-primary {
  background: var(--brand); color: #fff; border: none;
  padding: 13px 26px; border-radius: 10px; font-size: 15px; font-weight: 600;
  cursor: pointer; font-family: var(--font-body);
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--brand-dk); transform: translateY(-1px); }

.btn-wa {
  background: #25D366; color: #fff; border: none;
  padding: 13px 22px; border-radius: 10px; font-size: 15px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; transition: opacity 0.2s, transform 0.15s;
}
.btn-wa:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-outline {
  background: transparent; color: var(--text); border: 1px solid var(--bdr);
  padding: 13px 22px; border-radius: 10px; font-size: 15px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }

/* Book Now — unified button using the site's existing dark-navy accent
   (keeps it visually distinct from the orange Call button and the
   green WhatsApp button, without introducing an unrelated new color) */
.btn-book {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--dark); color: #fff !important; border: none;
  font-family: var(--font-body); font-weight: 600; white-space: nowrap;
  text-decoration: none; border-radius: 10px;
  transition: background 0.2s, transform 0.15s;
}
.btn-book:hover { background: #14294f; transform: translateY(-1px); }
.btn-book:active { transform: scale(0.96); }
.btn-book--sm { padding: 9px 18px; font-size: 13px; border-radius: 8px; gap: 7px; }
.btn-book--full { padding: 13px; font-size: 15px; font-weight: 700; }
.btn-book--hero { padding: 13px 22px; font-size: 15px; }
.btn-book--lg { padding: 14px 32px; font-size: 16px; font-weight: 700; }

/* Floating trust bubbles over the hero illustration (right side of the photo) */
.hero-bubbles {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
}
.hero-bubbles .bubble { position: absolute; pointer-events: none; }
.b1 { background: var(--brand); left: 58%; bottom: 10%; animation: float 3s ease-in-out infinite; }
.b2 { background: var(--dark); left: 78%; top: 14%; animation: float 3s ease-in-out infinite 1.5s; }

.bubble {
  border-radius: 100px; padding: 7px 15px;
  font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 5px; color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.14);
}

@media (max-width: 900px) {
  .hero-bubbles { display: none; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* =============================================
   HOURS BANNER
   ============================================= */
.hours-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 2rem;
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  flex-wrap: wrap;
}
[data-theme="dark"] .hours-banner {
  background: var(--surf);
  border-bottom: 0.5px solid var(--bdr);
}
.hours-banner i { color: var(--blue); font-size: 15px; }
.hours-sep { opacity: 0.3; margin: 0 4px; }

/* =============================================
   BRANDS STRIP
   ============================================= */
.brands {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0.75rem 1.5rem;
  border-top: 0.5px solid var(--bdr);
  border-bottom: 0.5px solid var(--bdr);
  background: var(--surf);
  text-align: center;
}

.trust-strip {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 1.75rem;
  padding: 0.9rem 1.5rem;
  background: #D0EAF2;
  border-bottom: 0.5px solid var(--bdr);
}
[data-theme="dark"] .trust-strip { background: var(--surf); }
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: var(--dark);
  white-space: nowrap;
}
.trust-item i { color: var(--brand); font-size: 15px; }
[data-theme="dark"] .trust-item { color: var(--text); }
@media (max-width: 640px) {
  .trust-strip { gap: 1rem 1.25rem; padding: 0.8rem 1rem; }
  .trust-item { font-size: 12px; }
}
.brand-logos {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.brand-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.brand-logo-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.09);
  transition: transform 0.25s, box-shadow 0.25s;
}
.brand-logo-item:hover .brand-logo-icon {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 26px rgba(0,0,0,0.14);
}
.brand-logo-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.brand-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

/* =============================================
   SECTION BASE
   ============================================= */
section {
  max-width: min(calc(100vw - 0.8in), 1800px);
  margin: 0 auto;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) clamp(1.25rem, 4vw, 2.5rem);
}
.s-eye {
  font-size: 11px; font-weight: 600; color: var(--blue);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: .5rem;
}
.s-title { font-size: clamp(22px, 3vw, 28px); font-weight: 700; margin-bottom: .5rem; }
.s-sub { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 500px; margin-bottom: 0; }

/* Google reviews link */
.google-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 6px;
}
.google-reviews-link:hover { text-decoration: underline; }
.google-reviews-link i { font-size: 13px; }

/* =============================================
   SERVICES
   ============================================= */
.svc-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 12px; margin-top: 1.5rem;
}
.svc-card {
  background: var(--surf); border: 2px solid var(--brand);
  border-radius: var(--rmd); padding: 0.9rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.svc-card:hover {
  border-color: var(--brand-dk); transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(243, 90, 123, 0.14);
}
.svc-ico {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--blue-lt); display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), background 0.25s;
}
.svc-ico i { font-size: 20px; color: var(--blue); }
.svc-card:hover .svc-ico { transform: scale(1.12) rotate(-6deg); background: var(--brand-lt); }
.svc-n { font-size: 13px; font-weight: 600; margin-bottom: 4px; line-height: 1.3; }
.svc-d { font-size: 11.5px; color: var(--muted); line-height: 1.45; }
.svc-meta {
  display: flex; flex-direction: column; gap: 3px;
  margin-top: 8px; font-size: 11px; color: var(--muted);
}
.svc-meta span { display: inline-flex; align-items: center; gap: 4px; }
.svc-meta i { font-size: 12px; color: var(--blue); }
.svc-p { font-size: 12px; font-weight: 700; color: var(--brand); margin-top: 8px; }

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

/* =============================================
   WHY US
   ============================================= */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px; margin-top: 2rem;
}
.why-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 1rem; border: 2px solid var(--brand); border-radius: var(--rmd);
  background: var(--bg); transition: border-color 0.2s;
}
.why-item:hover { border-color: var(--brand-dk); }
.why-dot {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--blue-lt); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.why-dot i { font-size: 18px; color: var(--blue); }
.why-t { font-size: 14px; font-weight: 600; display: block; margin-bottom: 3px; }
.why-d { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* =============================================
   REVIEWS
   ============================================= */
.rev-slider {
  position: relative; margin-top: 2rem;
  overflow-x: auto; overflow-y: hidden;
  cursor: grab; user-select: none;
  scrollbar-width: none; -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.rev-slider::-webkit-scrollbar { display: none; }
.rev-slider.dragging { cursor: grabbing; }
.rev-track {
  display: flex; gap: 14px; width: max-content;
  animation: rev-scroll var(--rev-duration, 45s) linear infinite;
}
.rev-slider.paused .rev-track,
.rev-slider.dragging .rev-track { animation-play-state: paused; }
@keyframes rev-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--rev-shift, -50%)); }
}
.rev {
  flex: 0 0 270px; width: 270px;
  background: var(--surf); border: 2px solid var(--brand);
  border-radius: var(--rlg); padding: 0.9rem 1rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.rev:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.07); border-color: var(--brand-dk); }
.stars { color: #F59E0B; font-size: 13px; margin-bottom: 6px; }
.rev-txt {
  font-size: 13px; color: var(--muted); line-height: 1.55;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4; overflow: hidden;
}
.rev.expanded .rev-txt { -webkit-line-clamp: unset; overflow: visible; }
.rev-more {
  display: none; background: none; border: none; padding: 6px 0 0; margin: 0;
  font-size: 12px; font-weight: 700; color: var(--blue); cursor: pointer; font-family: var(--font-body);
}
.rev.has-more .rev-more { display: inline-block; }
.rev-who { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.ava {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: #fff; flex-shrink: 0;
  overflow: hidden;
}
.ava img { width: 100%; height: 100%; object-fit: cover; }
.rev-name { font-size: 14px; font-weight: 600; }
.rev-loc { font-size: 11px; color: var(--muted); }

@media (max-width: 640px) {
  .rev { flex: 0 0 240px; width: 240px; padding: 0.85rem 0.9rem; }
}

/* =============================================
   BOOKING FORM
   ============================================= */
.form-wrap {
  max-width: 860px; margin: 2rem auto 0;
  background: var(--surf); border: 2px solid var(--dark);
  border-radius: var(--rlg); padding: 2rem;
  box-shadow: 0 10px 32px rgba(29, 29, 31, 0.14);
}
.form-progress { margin-bottom: 1.5rem; }
.form-progress-track {
  width: 100%; height: 6px; border-radius: 999px;
  background: var(--bdr); overflow: hidden; margin-bottom: 8px;
}
.form-progress-fill {
  height: 100%; width: 0%; border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--blue));
  transition: width 0.4s ease;
}
.form-progress-label { font-size: 12.5px; font-weight: 600; color: var(--muted); }
.booking-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px; border-radius: var(--rmd);
  border: 1.5px solid rgba(243, 90, 123, 0.45);
  background: var(--bg); color: var(--text);
  font-family: var(--font-body); font-size: 14px;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(243, 90, 123, 0.14);
}
.form-group input.invalid,
.form-group select.invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }

.err { font-size: 12px; color: #ef4444; min-height: 16px; }

.form-contact-note {
  font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 7px;
  background: var(--blue-lt); border-radius: var(--rmd); padding: 10px 14px;
}
.form-contact-note i { color: var(--blue); font-size: 16px; flex-shrink: 0; }
.form-contact-note a { color: var(--blue); font-weight: 600; text-decoration: none; }
.form-contact-note a:hover { text-decoration: underline; }

.form-submit {
  background: var(--brand); color: #fff; border: none;
  padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 600;
  cursor: pointer; font-family: var(--font-body);
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.15s; align-self: flex-start;
}
.form-submit:hover { background: var(--brand-dk); transform: translateY(-1px); }
.form-submit:active { transform: scale(0.98); }
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

/* Success State */
.form-success {
  display: none; text-align: center; padding: 2.5rem 1rem;
}
.form-success i { font-size: 52px; color: var(--green); margin-bottom: 1rem; display: block; }
.form-success h3 { font-size: 20px; font-weight: 700; margin-bottom: .5rem; }
.form-success p { font-size: 14px; color: var(--muted); }

/* Error State */
.form-error-msg {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 14px;
  border-radius: var(--rmd);
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #ef4444;
  font-size: 13px;
  margin-top: 1rem;
}
.form-error-msg i { font-size: 18px; flex-shrink: 0; }
.form-error-msg a { color: #ef4444; font-weight: 600; }
.form-error-msg.show { display: flex; }

/* =============================================
   FOOTER
   ============================================= */


/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .site-wrap { max-width: 100%; box-shadow: none; }
  .nav-links { display: none; }
  .nav-wa { display: none; }
  .hamburger { display: flex; }

  .hero {
    padding: 3rem 1.25rem 2.5rem;
    background:
      linear-gradient(180deg, rgba(251,243,227,0.95) 0%, rgba(251,243,227,0.9) 60%, rgba(251,243,227,0.65) 100%),
      url('images/hero/hero-banner-2.jpg') center right / cover no-repeat;
  }
  [data-theme="dark"] .hero {
    background:
      linear-gradient(180deg, rgba(29,29,31,0.95) 0%, rgba(29,29,31,0.9) 60%, rgba(29,29,31,0.7) 100%),
      url('images/hero/hero-banner-2.jpg') center right / cover no-repeat;
  }

  section { padding: 1.75rem 1.25rem; }
  .brands { padding: 1.25rem 1.25rem; }
  .brand-logos { gap: 1.25rem; }
  .brand-logo-icon { width: 50px; height: 50px; border-radius: 14px; }
  .brand-logo-icon img { width: 32px; height: 32px; }

  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 1.25rem; }

  footer { flex-direction: column; align-items: flex-start; padding: 1.25rem; }
  .ft-links { gap: 1rem; }

  .hours-banner { padding: 10px 1.25rem; font-size: 12px; }
  .hours-sep { display: none; }
}

@media (max-width: 480px) {
  .nav { padding: 0 1rem; }
  .nav-call span { display: none; }
  .btn-primary, .btn-wa, .btn-outline, .btn-book { justify-content: center; }
}

/* Spinner for submit button */
.spin { display: inline-block; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* =============================================
   ABOUT SECTION
   ============================================= */
#about { padding: clamp(1.75rem, 3.5vw, 2.75rem) clamp(1.25rem, 4vw, 2.5rem) clamp(0.75rem, 1.5vw, 1.25rem); }

.about-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 100%;
}

/* Text side */
.about-p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.1rem;
  text-align: justify;
}
.about-p strong { color: var(--text); font-weight: 600; }
.about-p em { color: var(--blue); font-style: normal; font-weight: 600; }

/* Visual side */
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
  max-width: 380px;
  width: 100%;
  margin-left: auto;
}

.about-card {
  background: var(--dark);
  color: #fff;
  border-radius: 16px;
  padding: 1.75rem;
}
[data-theme="dark"] .about-card {
  background: var(--surf);
  border: .5px solid var(--bdr);
}
.about-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(243,90,123,.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.about-card-icon i { font-size: 22px; color: var(--blue); }
.about-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.about-card > p { font-size: 13px; color: #9ca3af; line-height: 1.6; }

.about-divider {
  height: .5px;
  background: rgba(255,255,255,.1);
  margin: 1.1rem 0;
}
[data-theme="dark"] .about-divider { background: var(--bdr); }

.about-hours { display: flex; flex-direction: column; gap: 6px; }
.ah-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #d1d5db;
}
.ah-row span:first-child { color: #fff; font-weight: 500; }

.about-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
  margin-top: .25rem;
}
.about-cta:hover { background: var(--brand-dk); }

/* Stats row */
.about-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.about-stat {
  background: var(--surf);
  border: .5px solid var(--bdr);
  border-radius: var(--rmd);
  padding: 1rem;
  text-align: center;
  transition: border-color .2s;
}
.about-stat:hover { border-color: var(--blue); }
.as-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 4px;
}
.as-lbl { font-size: 11px; color: var(--muted); line-height: 1.4; }

/* Responsive */
@media (max-width: 768px) {
  .about-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual { position: static; }
  #about { padding: 1.75rem 1.25rem; }
}

/* =============================================
   FOOTER — Full redesign
   ============================================= */
/* ---- Floating WhatsApp Button ---- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 10px 28px rgba(0,0,0,0.32); }
.wa-float:active { transform: scale(0.94); }
@media (max-width: 640px) {
  .wa-float { width: 50px; height: 50px; font-size: 24px; right: 16px; bottom: 16px; }
}

/* ---- Gallery Lightbox ---- */
.lightbox {
  position: fixed; inset: 0; z-index: 1200;
  background: rgba(11,20,41,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: min(88vw, 900px); max-height: 84vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: scale(0.94);
  transition: transform 0.25s ease;
}
.lightbox.open .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; cursor: pointer; transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; cursor: pointer; transition: background 0.2s;
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }
@media (max-width: 640px) {
  .lightbox-close { top: 14px; right: 14px; width: 38px; height: 38px; font-size: 17px; }
  .lightbox-arrow { width: 40px; height: 40px; font-size: 17px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

footer { padding: 0; border-top: 0.5px solid var(--bdr); width: 100%; max-width: min(calc(100vw - 0.8in), 1800px); margin: 0 auto; display: block; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1.25rem;
  max-width: min(calc(100vw - 0.8in), 1800px);
  margin: 0 auto;
  padding: 1.25rem clamp(1.25rem, 4vw, 2.5rem) 0.85rem;
  background: var(--dark);
  color: #fff;
  width: 100%;
  box-sizing: border-box;
}
.ft-brand-col { display: flex; flex-direction: column; gap: 8px; }
.ft-logo { width: 190px; max-width: 100%; height: auto; }
[data-theme="dark"] .ft-logo { filter: none; }
.ft-tagline { font-size: 12px; color: #aaa; width: 190px; max-width: 100%; }
.ft-social { display: flex; gap: 8px; margin-top: 2px; }
.ft-social a {
  width: 30px; height: 30px; border-radius: 7px;
  background: rgba(255,255,255,0.1); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; text-decoration: none; transition: background 0.2s;
}
.ft-social a:hover { background: var(--blue); }

.ft-col h4 { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 6px; letter-spacing: 0.5px; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.ft-col ul li { font-size: 12px; color: #aaa; display: flex; align-items: center; gap: 7px; }
.ft-col ul li i { font-size: 13px; color: var(--blue); flex-shrink: 0; }
.ft-col ul li a { color: #aaa; text-decoration: none; transition: color 0.2s; }
.ft-col ul li a:hover { color: var(--blue); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; box-sizing: border-box;
  padding: 0.6rem 2rem; background: #0a0a14;
  font-size: 11px; color: #9ca3af; flex-wrap: wrap; gap: 0.5rem;
}
.ft-bottom-links { display: flex; gap: 1.25rem; }
.ft-bottom-links a { color: #9ca3af; text-decoration: none; transition: color 0.2s; }
.ft-bottom-links a:hover { color: var(--blue); }

/* Responsive footer */
@media (max-width: 768px) {
  footer { width: 100% !important; max-width: 100% !important; margin: 0 !important; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 1.5rem; padding: 2rem 1.25rem; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 1rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; padding: 0; gap: 0.5rem; }
}
@media (max-width: 480px) {
  footer { width: 100% !important; max-width: 100% !important; }
  .footer-top { grid-template-columns: 1fr; padding: 1.5rem 1rem; }
}

/* =============================================
   FOOTER BOTTOM FIX — align with page margin
   ============================================= */
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
  max-width: min(calc(100vw - 0.8in), 1800px);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  box-sizing: border-box;
}

/* WHY GRID — equal size cards after removing Walk-In */
.why-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
}

/* FOOTER SERVICES column links */
.ft-col ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}
.ft-col ul li a:hover { color: var(--blue); }

/* LOGO in navbar — size fix */
.logo-img {
  height: 55px !important;
  width: auto;
  object-fit: contain;
}

/* =============================================
   MOBILE ONLY — Navbar & Logo size fix
   ============================================= */
@media (max-width: 768px) {
  .logo-img {
    height: 36px !important;
    max-width: 130px !important;
  }
  .nav-call {
    padding: 7px 10px !important;
    font-size: 11px !important;
    gap: 5px !important;
  }
  .nav-call i { font-size: 13px !important; }
}

/* Book Now navbar — mobile small */
@media (max-width: 768px) {
  .btn-book--sm {
    padding: 7px 10px !important;
    font-size: 11px !important;
    gap: 5px !important;
    border-radius: 7px !important;
  }
}

/* =============================================
   REPAIR GALLERY (coverflow carousel)
   ============================================= */
/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 1.75rem; max-width: 760px; }
.faq-item {
  border: 1.5px solid var(--bdr); border-radius: var(--rmd);
  background: var(--surf); overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:has(.faq-q[aria-expanded="true"]) { border-color: var(--brand); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 16px 18px; background: none; border: none; cursor: pointer;
  text-align: left; font-size: 14.5px; font-weight: 600; color: var(--text);
  font-family: inherit;
}
.faq-q i { flex-shrink: 0; font-size: 16px; color: var(--brand); transition: transform 0.25s ease; }
.faq-q[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 18px;
}
.faq-a p { font-size: 13.5px; color: var(--muted); line-height: 1.7; padding-bottom: 16px; }
.faq-item.open .faq-a { max-height: 220px; }

.gallery-band {
  position: relative;
  background: linear-gradient(180deg, #E9F1F6 0%, #D0EAF2 100%);
  overflow: hidden;
}
.gallery-band::before, .gallery-band::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(70px);
  pointer-events: none; z-index: 0;
}
.gallery-band::before {
  width: 340px; height: 340px; top: -80px; left: -80px;
  background: rgba(243,90,123,0.22);
}
.gallery-band::after {
  width: 380px; height: 380px; bottom: -100px; right: -80px;
  background: rgba(20,125,137,0.18);
}
[data-theme="dark"] .gallery-band { background: linear-gradient(180deg, var(--surf) 0%, var(--bg) 100%); }
.gallery-band section, .gallery-band .gallery-coverflow, .gallery-band .gallery-nav { position: relative; z-index: 1; }

.gallery-heading-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.gallery-count-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.75); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.6);
  padding: 8px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 700; color: var(--dark);
  white-space: nowrap; margin-bottom: 4px;
}
.gallery-count-badge i { color: var(--brand); font-size: 15px; }
[data-theme="dark"] .gallery-count-badge { background: rgba(28,28,30,0.75); border-color: var(--bdr); color: var(--text); }

.gallery-counter {
  font-size: 13px; font-weight: 700; color: var(--muted);
  min-width: 52px; text-align: center; letter-spacing: 0.3px;
}

@media (max-width: 640px) {
  .gallery-band::before, .gallery-band::after { display: none; }
  .gallery-heading-row { flex-direction: column; align-items: flex-start; }
}

.gallery-coverflow {
  position: relative;
  height: 480px;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-track { position: relative; width: 100%; height: 100%; }
.gallery-slide {
  position: absolute; top: 50%; left: 50%;
  width: 300px; height: 420px;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 45px rgba(29,29,31,0.18);
  transition: transform 0.5s cubic-bezier(.22,.61,.36,1), opacity 0.5s ease, filter 0.5s ease;
  cursor: pointer;
  background: var(--surf);
}
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.gallery-slide.pos-0 { transform: translate(-50%,-50%) scale(1); opacity: 1; z-index: 5; filter: none; cursor: zoom-in; }
.gallery-slide.pos-0::after {
  content: '🔍';
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(11,20,41,0.55); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; opacity: 0; transition: opacity 0.2s;
}
.gallery-slide.pos-0:hover::after { opacity: 1; }
.gallery-slide.pos-l1 { transform: translate(calc(-50% - 250px),-50%) scale(0.82); opacity: 0.75; z-index: 4; filter: brightness(0.82); }
.gallery-slide.pos-r1 { transform: translate(calc(-50% + 250px),-50%) scale(0.82); opacity: 0.75; z-index: 4; filter: brightness(0.82); }
.gallery-slide.pos-l2 { transform: translate(calc(-50% - 460px),-50%) scale(0.66); opacity: 0.4; z-index: 3; filter: brightness(0.7); }
.gallery-slide.pos-r2 { transform: translate(calc(-50% + 460px),-50%) scale(0.66); opacity: 0.4; z-index: 3; filter: brightness(0.7); }
.gallery-slide.pos-hidden { transform: translate(-50%,-50%) scale(0.5); opacity: 0; z-index: 1; pointer-events: none; }

.gallery-nav { display: flex; justify-content: center; gap: 12px; margin-top: 1.75rem; }
.gallery-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--bdr); background: var(--bg); color: var(--text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color 0.2s, color 0.2s, transform 0.2s;
  font-size: 17px;
}
.gallery-arrow:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }

@media (max-width: 768px) {
  .gallery-coverflow { height: 360px; }
  .gallery-slide { width: 220px; height: 310px; }
  .gallery-slide.pos-l1 { transform: translate(calc(-50% - 150px),-50%) scale(0.78); }
  .gallery-slide.pos-r1 { transform: translate(calc(-50% + 150px),-50%) scale(0.78); }
  .gallery-slide.pos-l2, .gallery-slide.pos-r2 { opacity: 0; pointer-events: none; }
}

/* =============================================
   SOCIAL SHOWCASE (TikTok)
   ============================================= */
.social-band {
  background: var(--dark);
  overflow: hidden;
}
#social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  flex-wrap: wrap;
}
.social-video-col {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}
.social-content-col {
  flex: 1 1 360px;
  max-width: 460px;
}
.social-eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; color: var(--brand);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1rem;
}
.social-heading {
  font-size: clamp(24px, 3.2vw, 32px); font-weight: 800; color: #fff;
  line-height: 1.25; margin-bottom: 1rem;
}
.social-desc {
  font-size: 15px; color: #B8BAC4; line-height: 1.75; margin-bottom: 1.75rem;
}
.social-cta {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--brand); color: #fff !important;
  padding: 14px 24px; border-radius: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 14.5px;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.social-cta:hover { background: var(--brand-dk); transform: translateY(-1px); }

@media (max-width: 700px) {
  #social { flex-direction: column; text-align: center; }
  .social-content-col { max-width: 400px; }
  .social-eyebrow { justify-content: center; }
  .social-cta { width: 100%; justify-content: center; }
}

/* =============================================
   COMPARISON TABLE
   ============================================= */
#comparison { text-align: center; padding-top: clamp(1.5rem, 3vw, 2.5rem); }
#comparison .s-sub { margin: 0 auto; }
.compare-wrap {
  margin-top: 1.5rem;
  overflow-x: auto;
  border-radius: var(--rlg);
  border: 2px solid var(--brand);
  box-shadow: 0 10px 32px rgba(243, 90, 123, 0.14);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 420px;
}

.compare-table thead tr {
  background: var(--dark);
  color: #fff;
}

.compare-table th {
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.compare-table th.col-feature {
  width: 28%;
  color: #aaa;
}

.compare-table th.col-others {
  width: 32%;
  color: #ccc;
}

.compare-table th.col-us {
  width: 40%;
  color: var(--blue);
  font-size: 15px;
}

.compare-table tbody tr {
  border-bottom: 0.5px solid var(--bdr);
  transition: background 0.2s;
}

.compare-table tbody tr:last-child {
  border-bottom: none;
}

.compare-table tbody tr:hover {
  background: var(--surf);
}

.compare-table td {
  padding: 0.7rem 1rem;
  color: var(--muted);
  vertical-align: middle;
}

.compare-table td:first-child {
  color: var(--text);
  font-weight: 500;
}

.us-val {
  color: var(--text) !important;
  font-weight: 500;
}

.save-badge {
  display: inline-block;
  background: var(--green-lt);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 6px;
  vertical-align: middle;
}

[data-theme="dark"] .save-badge {
  background: rgba(162, 210, 148, 0.2);
  color: var(--green-lt);
}

.compare-cta {
  text-align: center;
  padding: 1.75rem;
  background: var(--surf);
  border-top: 0.5px solid var(--bdr);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .compare-wrap {
    border-radius: var(--rmd);
    -webkit-overflow-scrolling: touch;
  }
  .compare-table {
    font-size: 13px;
  }
  .compare-table th,
  .compare-table td {
    padding: 0.75rem 1rem;
  }
  .compare-table th.col-us {
    font-size: 13px;
  }
  .save-badge {
    display: block;
    margin: 4px 0 0 0;
    width: fit-content;
  }
  .compare-cta a {
    font-size: 14px !important;
    padding: 12px 24px !important;
    width: 100%;
    justify-content: center;
  }
}
