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

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700&display=swap');

/* ---- CSS Variables (Light & Dark) ---- */
:root {
  --brand: #FF5722;
  --brand-dk: #E64A19;
  --brand-lt: #FFF3EF;
  --dark: #1A1A2E;

  --text: #1a1a1a;
  --muted: #6b7280;
  --bg: #ffffff;
  --surf: #f9f9f9;
  --bdr: #e5e7eb;

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

[data-theme="dark"] {
  --text: #f0f0f0;
  --muted: #9ca3af;
  --bg: #0f1117;
  --surf: #1a1d27;
  --bdr: #2d3148;
  --brand-lt: rgba(255, 87, 34, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Sora', sans-serif;
  color: var(--text);
  background: #E3F6FC;
  transition: background 0.3s, color 0.3s;
}

[data-theme="dark"] body {
  background: #0a0a0f;
}

/* Site wrapper — creates the 1-inch side gutters */
.site-wrap {
  max-width: calc(100% - 2.5in);
  margin: 0 auto;
  background: var(--bg);
  box-shadow: 0 0 40px rgba(0,0,0,0.10);
  transition: background 0.3s;
}

/* =============================================
   NAVBAR
   ============================================= */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: var(--nav-h);
  border-bottom: 3.5px solid var(--bdr);
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  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;
}
[data-theme="dark"] .logo-img {
  filter: brightness(0) invert(1);
}

/* 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(--brand); border-radius: 2px;
  transition: width 0.25s;
}
.nav-links a:hover,
.nav-links a.nav-link--active { color: var(--brand); 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(--brand); color: var(--brand); }

.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: 'Sora', sans-serif; text-decoration: none;
  transition: background 0.2s;
}
.nav-call:hover { background: var(--brand-dk); }

.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; }

/* 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(--brand-lt); color: var(--brand); }

.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; }

/* =============================================
   BANNER SLIDER
   ============================================= */
.banner-slider {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  background: var(--dark);
  margin-top: .5cm;
  border: 3px solid #D97757;
  border-radius: 20px;
}

/* Individual slides */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.9s ease, transform 0.9s ease;
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}
.slide.exit {
  opacity: 0;
  transform: scale(0.97);
}

/* Subtle dark overlay so text on top would still be readable */
.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.22) 100%);
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.88);
  color: var(--dark);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.slider-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}
.slider-prev { left: 14px; }
.slider-next { right: 14px; }

/* Dot indicators */
.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.slider-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* Progress bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--brand);
  z-index: 10;
  transition: width linear;
}

/* Pause hint */
.slider-pause-hint {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  z-index: 10;
  letter-spacing: 0.5px;
  pointer-events: none;
}

@media (max-width: 768px) {
  .banner-slider { height: 220px; }
  .slider-arrow { width: 32px; height: 32px; font-size: 16px; }
  .slider-pause-hint { display: none; }
}

/* =============================================
   HERO CONTENT
   ============================================= */
.hero {
  padding: 1rem 2rem 3.5rem;
  background: linear-gradient(135deg, var(--brand-lt) 0%, var(--bg) 60%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand-lt); color: var(--brand);
  border: 0.5px solid #FFB89A; border-radius: 100px;
  padding: 5px 14px; font-size: 13px; font-weight: 600; margin-bottom: 1.25rem;
}

.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(--brand); }

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

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.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: 'Sora', sans-serif;
  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(--brand); color: var(--brand); transform: translateY(-1px); }

/* Hero Stats */
.hero-stats {
  display: flex; gap: 1rem; margin-top: 1rem;
  padding-top: 1rem; border-top: 0.5px solid var(--bdr); flex-wrap: wrap;
}
.stat-val { font-size: 24px; font-weight: 700; color: var(--brand); }
.stat-lbl { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* Hero Phone Visual */
.hero-visual {
  position: absolute; right: 6rem; top: 50%; transform: translateY(-50%);
  width: 190px; height: 330px; background: var(--dark);
  border-radius: 32px; border: 6px solid #2d2d4a;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
}
.phone-notch {
  width: 60px; height: 8px; background: #2d2d4a;
  border-radius: 100px; position: absolute; top: 10px;
}
.phone-screen {
  width: 85%; height: 68%; background: #16213e;
  border-radius: 16px; display: flex; align-items: center;
  justify-content: center; flex-direction: column; gap: 8px;
}
.phone-icon { font-size: 34px; color: var(--brand); }
.phone-text { font-size: 10px; color: #aaa; text-align: center; line-height: 1.5; }

.bubble {
  position: absolute; border-radius: 100px; padding: 6px 14px;
  font-size: 11px; font-weight: 600; display: flex; align-items: center; gap: 5px; color: #fff;
}
.b1 { background: var(--brand); left: -3.5rem; bottom: 4rem; animation: float 3s ease-in-out infinite; }
.b2 { background: var(--dark); right: -3rem; top: 4rem; border: 1px solid #3d3d5a; animation: float 3s ease-in-out infinite 1.5s; }

@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(--brand); font-size: 15px; }
.hours-sep { opacity: 0.3; margin: 0 4px; }

/* =============================================
   BRANDS STRIP
   ============================================= */
.brands {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 2rem;
  border-top: 0.5px solid var(--bdr);
  border-bottom: 0.5px solid var(--bdr);
  background: var(--surf);
  flex-wrap: wrap;
}
.brands-lbl {
  font-size: 11px; font-weight: 600; color: var(--muted);
  letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap;
}
.brand-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.brand-logo-item {
  width: 108px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo-item img {
  width: 108px;
  height: 48px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.25s;
}
.brand-logo-item img:hover {
  filter: grayscale(0%) opacity(1);
}
[data-theme="dark"] .brand-logo-item img {
  filter: grayscale(100%) opacity(0.45) invert(1);
}
[data-theme="dark"] .brand-logo-item img:hover {
  filter: grayscale(0%) opacity(1) invert(0);
}

/* =============================================
   SECTION BASE
   ============================================= */
section { padding: 3.5rem 2rem; }
.s-eye {
  font-size: 11px; font-weight: 600; color: var(--brand);
  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(--brand);
  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(180px, 1fr));
  gap: 14px; margin-top: 2rem;
}
.svc-card {
  background: var(--surf); border: 0.5px solid var(--bdr);
  border-radius: var(--rlg); padding: 1.25rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.svc-card:hover {
  border-color: var(--brand); transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 87, 34, 0.1);
}
.svc-ico {
  width: 85px; height: 85px; border-radius: 5px;
  background: var(--brand-lt); display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
  padding: 10px;
}
.svc-ico i { font-size: 22px; color: var(--brand); }
.svc-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.svc-n { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.svc-d { font-size: 13px; color: var(--muted); line-height: 1.5; }
.svc-p { font-size: 13px; font-weight: 600; color: var(--brand); margin-top: 10px; }

/* =============================================
   HOW IT WORKS
   ============================================= */
.steps-strip {
  background: var(--surf); border-radius: var(--rlg);
  padding: 2rem; margin-top: 2rem;
  border: 0.5px solid var(--bdr);
}
.steps { display: flex; align-items: stretch; flex-wrap: wrap; }
.step { flex: 1; min-width: 130px; padding: 1rem 1.25rem; position: relative; }
.step:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%); width: 1px; height: 50%; background: var(--bdr);
}
.step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--brand); color: #fff;
  font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-bottom: 10px;
}
.step-t { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.step-d { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* =============================================
   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: 0.5px solid var(--bdr); border-radius: var(--rmd);
  background: var(--bg); transition: border-color 0.2s;
}
.why-item:hover { border-color: var(--brand); }
.why-dot {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--brand-lt); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.why-dot i { font-size: 18px; color: var(--brand); }
.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-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px; margin-top: 2rem;
}
.rev {
  background: var(--surf); border: 0.5px solid var(--bdr);
  border-radius: var(--rlg); padding: 1.25rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.rev:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.07); }
.stars { color: #F59E0B; font-size: 14px; margin-bottom: 10px; }
.rev-txt { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.rev-who { display: flex; align-items: center; gap: 10px; }
.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;
}
.rev-name { font-size: 14px; font-weight: 600; }
.rev-loc { font-size: 11px; color: var(--muted); }

/* =============================================
   BOOKING FORM
   ============================================= */
.form-wrap {
  max-width: 680px; margin-top: 2rem;
  background: var(--surf); border: 0.5px solid var(--bdr);
  border-radius: var(--rlg); padding: 2rem;
}
.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: 1px solid var(--bdr); background: var(--bg); color: var(--text);
  font-family: 'Sora', sans-serif; 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(255, 87, 34, 0.12);
}
.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(--brand-lt); border-radius: var(--rmd); padding: 10px 14px;
}
.form-contact-note i { color: var(--brand); font-size: 16px; flex-shrink: 0; }
.form-contact-note a { color: var(--brand); 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: 'Sora', sans-serif;
  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: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: #22c55e; 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; }
  .hero-visual { display: none; }

  section { padding: 2.5rem 1.25rem; }
  .brands { padding: .9rem 1.25rem; }
  .brand-logos { gap: 1rem; }
  .brand-logo-item { width: 72px; height: 32px; }
  .brand-logo-item img { width: 72px; height: 32px; }

  .hero-banner-wrap { max-height: 220px; }
  .hero-banner-wrap img { max-height: 220px; }

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

  .steps { flex-direction: column; }
  .step:not(:last-child)::after { display: none; }
  .step { border-bottom: 0.5px solid var(--bdr); padding: 1rem 0; }
  .step:last-child { border: none; }

  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; }
  .hero-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .btn-primary, .btn-wa, .btn-outline, .btn-book-hero { 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: 4rem 2rem; }

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

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

.about-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 1.75rem;
}
.about-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: .9rem 1.1rem;
  border: .5px solid var(--bdr);
  border-radius: var(--rmd);
  background: var(--surf);
  transition: border-color .2s;
}
.about-badge:hover { border-color: var(--brand); }
.about-badge > i {
  font-size: 22px;
  color: var(--brand);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--brand-lt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-badge div strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.about-badge div span {
  font-size: 12px;
  color: var(--muted);
}

/* Visual side */
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}

.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(255,87,34,.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.about-card-icon i { font-size: 22px; color: var(--brand); }
.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(--brand); }
.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: 2.5rem 1.25rem; }
}

/* =============================================
   SERVICE META (time + warranty)
   ============================================= */
.svc-meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.svc-meta i { font-size: 13px; color: var(--brand); }

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-list { max-width: 720px; margin-top: 2rem; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 0.5px solid var(--bdr); border-radius: var(--rlg); overflow: hidden; background: var(--surf); }
.faq-q {
  width: 100%; text-align: left; padding: 1rem 1.25rem;
  font-size: 15px; font-weight: 600; color: var(--text);
  background: transparent; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Sora', sans-serif; transition: color 0.2s;
}
.faq-q:hover { color: var(--brand); }
.faq-q i { font-size: 18px; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-item.open .faq-q { color: var(--brand); }
.faq-a {
  font-size: 14px; color: var(--muted); line-height: 1.7;
  padding: 0 1.25rem; max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.25rem 1rem; }

/* =============================================
   FOOTER — Full redesign
   ============================================= */
footer { padding: 0; border-top: 0.5px solid var(--bdr); width: calc(100% - 2.5in); max-width: calc(100% - 2.5in); margin: 0 auto; display: block; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 2rem 2rem;
  background: var(--dark);
  color: #fff;
  width: 100%;
  box-sizing: border-box;
}
.ft-brand-col { display: flex; flex-direction: column; gap: 12px; }
.ft-logo { height: 40px; width: auto; object-fit: contain; }
[data-theme="dark"] .ft-logo { filter: none; }
.ft-tagline { font-size: 13px; color: #aaa; }
.ft-social { display: flex; gap: 10px; margin-top: 4px; }
.ft-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.1); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; text-decoration: none; transition: background 0.2s;
}
.ft-social a:hover { background: var(--brand); }

.ft-col h4 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 14px; letter-spacing: 0.5px; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-col ul li { font-size: 13px; color: #aaa; display: flex; align-items: center; gap: 8px; }
.ft-col ul li i { font-size: 15px; color: var(--brand); 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(--brand); }

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

/* 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%;
  padding: 0 2rem;
  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(--brand); }

/* 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) {
  a[href="#contact"].nav-book-inline {
    padding: 7px 10px !important;
    font-size: 11px !important;
    gap: 5px !important;
    border-radius: 7px !important;
  }
}

/* =============================================
   COMPARISON TABLE
   ============================================= */
#comparison { text-align: center; }
#comparison .s-sub { margin: 0 auto; }
.compare-wrap {
  margin-top: 2rem;
  overflow-x: auto;
  border-radius: var(--rlg);
  border: 0.5px solid var(--bdr);
  max-width: 680px;
  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: left;
  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: #FF5722;
  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: #dcfce7;
  color: #16a34a;
  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(22, 163, 74, 0.2);
  color: #4ade80;
}

.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;
  }
}
