/* ============================================================
   JK Service Centre – Main Stylesheet
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Poppins:wght@500;600;700;800&display=swap');

/* ---------- CSS Variables / Brand Design Tokens ---------- */
:root {
  /* ── Brand Blue Scale ─────────────────────────────────── */
  --primary-navy:    #052256;       /* Primary Navy – Dark Blue          */
  --primary:         #0269E1;       /* Primary Blue – Strong Blue        */
  --primary-dark:    #02398D;       /* Deep Blue – Hover / Dark          */
  --primary-deep:    #052256;       /* Deepest Navy                      */
  --primary-mid:     #0550A6;       /* Medium Blue – Secondary           */
  --bright-blue:     #079AF3;       /* Bright Blue – Website Accent      */
  --cyan:            #06C7FC;       /* Cyan – Highlight                  */
  --cyan-light:      #DBE8F3;       /* Light Blue – Background           */
  --light-blue:      #DBE8F3;       /* Light Blue – Background           */
  --primary-light:   #DBE8F3;       /* Alias for cards / labels          */
  --primary-soft:    #F5F9FC;

  /* ── Gradients ─────────────────────────────────────────── */
  --gradient-start:  #06C7FC;       /* Gradient Start – Cyan             */
  --gradient-end:    #0269E1;       /* Gradient End – Strong Blue        */
  --brand-gradient:  linear-gradient(135deg, #06C7FC 0%, #0269E1 100%);
  --navy-gradient:   linear-gradient(145deg, #052256 0%, #02398D 100%);

  /* ── Accent & Status ─────────────────────────────────── */
  --accent:          #f97316;       /* Action Orange (CTAs)              */
  --accent-dark:     #ea580c;
  --success:         #16B978;       /* Success / Service Active Green    */
  --success-light:   #e6f9f3;

  /* ── Typography ──────────────────────────────────────── */
  --text-dark:       #0B1F3A;       /* Headings – Text Dark              */
  --text-body:       #64748B;       /* Paragraphs – Text Gray            */
  --text-muted:      #64748B;       /* Muted Gray                        */

  /* ── Backgrounds & Borders ───────────────────────────── */
  --bg-white:        #FFFFFF;       /* Main Background                   */
  --bg-light:        #F5F9FC;       /* Section Background – Very Light   */
  --bg-alt:          #F5F9FC;
  --bg-care:      #F5F9FC;
  --bg-section:      #F5F9FC;
  --border:          #DBE8F3;       /* Light Blue Border                 */
  --border-subtle:   #E8F0F8;

  /* ── Shadows ─────────────────────────────────────────── */
  --shadow-xs:       0 1px 2px  rgba(5, 34, 86, 0.04);
  --shadow-sm:       0 2px 6px  rgba(5, 34, 86, 0.07);
  --shadow-md:       0 8px 24px rgba(5, 34, 86, 0.09);
  --shadow-lg:       0 16px 40px rgba(5, 34, 86, 0.13);
  --shadow-glow:     0 0 24px  rgba(2, 105, 225, 0.30);

  /* ── Layout ──────────────────────────────────────────── */
  --radius-xs:       6px;
  --radius-sm:       10px;
  --radius-md:       16px;
  --radius-lg:       22px;
  --radius-xl:       30px;
  --max-w:           1240px;
  --header-h:        76px;
  --topbar-h:        0px;
  --transition:      0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ---------- Utility ---------- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section { padding: 76px 0; }
.section-alt { background: var(--bg-light); }
.section-blue { background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%); }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }

/* ---------- Typography ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(0, 87, 184, 0.12);
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 3.8vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.section-subtitle {
  font-size: 16.5px;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}
.section-subtitle.center { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 700;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,87,184,.28);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 24px rgba(0,87,184,.36);
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(249,115,22,.28);
}
.btn-accent:hover {
  background: var(--accent-dark);
  box-shadow: 0 8px 24px rgba(249,115,22,.36);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,87,184,.2);
}
.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.btn-white:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}
.btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.btn-wa:hover {
  background: #1eb957;
  box-shadow: 0 8px 24px rgba(37,211,102,.38);
  transform: translateY(-2px);
}
.btn-lg { padding: 15px 32px; font-size: 15.5px; border-radius: var(--radius-md); }
.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: var(--radius-xs); }

/* ============================================================
   CARE TOP NOTICE BAR
   ============================================================ */
.care-top-bar {
  background: var(--primary-deep);
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1001;
}
.care-top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 16px;
}
.care-top-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.care-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 180, 216, 0.16);
  border: 1px solid rgba(0, 180, 216, 0.35);
  color: #8be4f7;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.care-top-beacon {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16B978;
  box-shadow: 0 0 0 rgba(16, 185, 129, 0.6);
  animation: pulseBeacon 2s infinite;
}
@keyframes pulseBeacon {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.care-top-msg {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
}
.care-top-msg strong {
  color: #fff;
  font-weight: 700;
}
.care-top-right {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}
.care-top-link {
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.care-top-link:hover {
  color: #8be4f7;
}
.care-top-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 44, 108, 0.08);
  height: var(--header-h);
  display: flex;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 44, 108, 0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* BRAND LOGO COMPONENT */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  user-select: none;
}
.site-main-logo {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition);
}
.logo:hover .site-main-logo {
  transform: scale(1.02);
}
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: #ffffff;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}
.footer-logo-img {
  height: 38px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
.logo-emblem-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #eef5fc 100%);
  border: 1.5px solid rgba(0, 87, 184, 0.16);
  box-shadow: 0 4px 12px rgba(0, 44, 108, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all var(--transition);
}
.logo:hover .logo-emblem-wrap {
  transform: scale(1.04);
  border-color: var(--primary);
  box-shadow: 0 6px 18px rgba(0, 87, 184, 0.2);
}
.logo-emblem-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.logo-status-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #16B978;
  border: 2px solid #fff;
}
.logo-text {
  line-height: 1.15;
}
.logo-text .brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--text-dark);
  text-transform: uppercase;
}
.logo-text .brand-highlight {
  color: var(--primary);
}
.logo-text .tagline {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

/* NAVIGATION */
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover {
  color: var(--primary);
  background: var(--primary-light);
}
.nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
  font-weight: 700;
}
.header-cta { display: flex; align-items: center; gap: 10px; }
.btn-book-header {
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: var(--radius-xs);
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid rgba(0, 87, 184, 0.18);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-book-header:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.call-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-xs);
  font-size: 14px;
  font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 3px 10px rgba(249, 115, 22, 0.25);
}
.call-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
}
.call-btn svg { width: 15px; height: 15px; fill: #fff; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2.2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.2px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.2px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 20px 24px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: block; }
.mobile-nav .nav-link {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  border-bottom: 1px solid var(--border-subtle);
}
.mobile-nav .call-btn { width: 100%; justify-content: center; margin-top: 14px; padding: 13px; font-size: 15px; }


/* ============================================================
   HERO SLIDER SECTION (AFTER HEADER)
   ============================================================ */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 650px;
  max-height: 90vh;
  overflow: hidden;
  background: #061124;
}

/* Track & Slides */
.hero-fw-track {
  display: flex;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.hero-fw-slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}
.hero-fw-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Slide Caption Overlay Card */
.slide-caption-card {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 580px;
  background: rgba(5, 19, 41, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: 32px 30px;
  color: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  z-index: 5;
}
.slide-badge {
  display: inline-block;
  background: rgba(0, 180, 216, 0.2);
  border: 1px solid rgba(0, 180, 216, 0.45);
  color: #7dd3fc;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.slide-caption-card h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}
.slide-caption-card p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 20px;
}
.slide-btns {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--text-dark);
  border-color: #fff;
}

/* Arrows */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: all var(--transition);
}
.hs-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: #fff;
  transform: translateY(-50%) scale(1.08);
}
.hs-arrow svg { width: 20px; height: 20px; fill: #fff; }
.hs-arrow.prev { left: 16px; }
.hs-arrow.next { right: 16px; }

/* Dots */
.hs-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.45);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hs-dot.active {
  background: #fff;
  width: 28px;
  border-radius: 5px;
}

/* Label Strip at Bottom */
.hs-labels {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  background: rgba(4, 15, 33, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hs-label {
  flex: 1;
  text-align: center;
  padding: 12px 6px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.25s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}
.hs-label:last-child { border-right: none; }
.hs-label:hover { color: #fff; background: rgba(255, 255, 255, 0.14); }
.hs-label.active { color: #fff; background: rgba(0, 87, 184, 0.6); }

/* ============================================================
   GOOGLE ADS POLICY COMPLIANCE BANNER
   ============================================================ */
.ads-compliance-banner {
  background: var(--bg-alt);
  border-bottom: 1px solid #cbd5e1;
  border-top: 1px solid var(--border);
  padding: 10px 0;
  font-size: 12px;
  color: #475569;
  line-height: 1.5;
}
.ads-compliance-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.ads-compliance-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: #0284c7;
  margin-top: 1px;
}
.ads-compliance-icon svg { width: 100%; height: 100%; fill: currentColor; }
.ads-compliance-text strong {
  color: #0f172a;
  font-weight: 700;
}
.ads-compliance-text u {
  text-decoration-thickness: 1.5px;
  font-weight: 700;
  color: #0f172a;
}

/* Responsive Slider Adjustments */
@media (max-width: 768px) {
  .hero-slider-section { height: 360px; }
  .hs-arrow { width: 36px; height: 36px; }
  .hs-arrow.prev { left: 10px; }
  .hs-arrow.next { right: 10px; }
  .hs-dots { bottom: 14px; }
}
@media (max-width: 480px) {
  .hero-slider-section { height: 260px; }
  .hs-arrow { width: 32px; height: 32px; }
  .hs-arrow svg { width: 16px; height: 16px; }
  .hs-dots { bottom: 12px; }
}

/* ============================================================
   INDEPENDENT APPLIANCE CARE HERO SECTION
   ============================================================ */
.hero-care {
  position: relative;
  background: radial-gradient(circle at 85% 15%, rgba(0, 198, 255, 0.18) 0%, transparent 45%),
              radial-gradient(circle at 10% 85%, rgba(18, 102, 214, 0.25) 0%, transparent 50%),
              linear-gradient(145deg, #052256 0%, #0550A6 50%, #02398D 100%);
  padding: 60px 0 54px;
  overflow: hidden;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-care::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-care-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 44px;
}

/* HERO LEFT: HEADLINE & TRUST MATRIX */
.hero-care-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 180, 216, 0.12);
  border: 1px solid rgba(0, 180, 216, 0.35);
  color: #8be4f7;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-care-pill .beacon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16B978;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.25);
}
.hero-care-content h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.6px;
  color: #ffffff;
  margin-bottom: 18px;
}
.hero-care-content h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #38bdf8 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-care-desc {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 26px;
}

/* 4-Pillar Trust Matrix */
.hero-trust-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 30px;
  max-width: 560px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.trust-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(0, 180, 216, 0.4);
  transform: translateY(-2px);
}
.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 180, 216, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  flex-shrink: 0;
}
.trust-icon svg { width: 17px; height: 17px; fill: currentColor; }
.trust-text { line-height: 1.25; }
.trust-title { font-size: 13.5px; font-weight: 700; color: #fff; }
.trust-sub { font-size: 11.5px; color: rgba(255, 255, 255, 0.65); }

/* Hero Actions */
.hero-action-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 22px;
}
.hero-live-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.25);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16B978;
  animation: pulseBeacon 2s infinite;
}

/* HERO RIGHT: CARE ESTIMATOR CARD */
.estimator-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 20px 48px rgba(0, 20, 60, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.2);
  color: var(--text-dark);
  position: relative;
}
.estimator-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.estimator-title-wrap { line-height: 1.25; }
.estimator-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 2px;
}
.estimator-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
}
.estimator-seal {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 30px;
}

/* Appliance Category Tabs */
.appliance-selector-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.appliance-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}
.appliance-tab {
  background: var(--bg-alt);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: 10px 6px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.appliance-tab:hover {
  background: var(--primary-light);
  border-color: rgba(0, 87, 184, 0.25);
}
.appliance-tab.active {
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(0, 87, 184, 0.15);
}
.appliance-tab-icon {
  font-size: 20px;
  line-height: 1;
}
.appliance-tab-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
}
.appliance-tab.active .appliance-tab-name {
  color: var(--primary);
}

/* Problem / Symptom Chips */
.issue-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
  max-height: 125px;
  overflow-y: auto;
  padding-bottom: 4px;
}
.issue-chip {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}
.issue-chip:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}
.issue-chip.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(0, 87, 184, 0.3);
}

/* Estimator Summary Breakdown */
.estimator-summary-box {
  background: linear-gradient(135deg, #f8fafd 0%, #eef5fc 100%);
  border: 1px solid rgba(0, 87, 184, 0.12);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 18px;
}
.est-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 6px;
}
.est-row:last-child { margin-bottom: 0; }
.est-label { color: var(--text-muted); font-weight: 500; }
.est-val { font-weight: 700; color: var(--text-dark); }
.est-val.highlight { color: var(--primary); font-size: 14px; }
.est-badge {
  background: #16B978;
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 12px;
  margin-left: 6px;
}

/* Booking Actions in Estimator */
.estimator-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.estimator-actions .btn {
  padding: 12px 14px;
  font-size: 13.5px;
  width: 100%;
}

/* PHOTO GALLERY SHOWCASE STRIP */
.care-photo-strip {
  background: #ffffff;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.care-photo-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.care-strip-label {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.care-strip-label-text h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
}
.care-strip-label-text p {
  font-size: 12.5px;
  color: var(--text-muted);
}
.care-photos-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
}
.care-photo-thumb {
  position: relative;
  width: 170px;
  height: 95px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
}
.care-photo-thumb:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.care-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.care-thumb-tag {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: rgba(0, 20, 50, 0.75);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 6px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================
   CORE 5-PILLAR SERVICE GUARANTEES
   ============================================================ */
.service-pillars {
  padding: 68px 0;
  background: linear-gradient(180deg, #f8fafd 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.pillar-card {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
  position: relative;
}
.pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.pillar-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all var(--transition);
}
.pillar-card:hover .pillar-icon-wrap {
  background: var(--primary);
  color: #fff;
  transform: scale(1.08);
}
.pillar-icon-wrap svg { width: 26px; height: 26px; fill: currentColor; }
.pillar-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15.5px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.pillar-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   SMART DIAGNOSTIC & SYMPTOM FINDER
   ============================================================ */
.diag-section {
  padding: 72px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}
.diag-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 32px 0 28px;
  flex-wrap: wrap;
}
.diag-tab-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  background: var(--bg-alt);
  color: var(--text-body);
  border: 1.5px solid transparent;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.diag-tab-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}
.diag-tab-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 87, 184, 0.25);
}
.diag-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.diag-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.diag-card:hover {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.diag-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}
.diag-card-code {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--accent);
  background: rgba(249, 115, 22, 0.1);
  padding: 3px 8px;
  border-radius: 6px;
}
.diag-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.diag-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}
.diag-specs {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 10px 12px;
  font-size: 12.5px;
  margin-bottom: 14px;
}
.diag-spec-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
.diag-spec-row:last-child { margin-bottom: 0; }
.diag-spec-row span:first-child { color: var(--text-muted); }
.diag-spec-row span:last-child { font-weight: 700; color: var(--text-dark); }
.diag-card .btn { width: 100%; font-size: 13px; padding: 10px; }

/* Responsive Media Queries for Hero & Widgets */
@media (max-width: 1080px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-care-inner { grid-template-columns: 1fr; gap: 36px; }
  .diag-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-care { padding: 40px 0; }
  .hero-trust-matrix { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .care-top-bar { display: none; }
  .diag-cards-grid { grid-template-columns: 1fr; }
  .estimator-card { padding: 20px 16px; }
  .estimator-actions { grid-template-columns: 1fr; }
  .care-photo-strip-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 540px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .appliance-tabs { gap: 6px; }
  .hero-action-row { flex-direction: column; align-items: stretch; }
  .hero-action-row .btn { width: 100%; }
}


/* ============================================================
   SERVICE CARDS (HOME)
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 48px; }
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card-body { padding: 24px; }
.service-card-icon {
  width: 54px; height: 54px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-card-icon svg { width: 28px; height: 28px; fill: var(--primary); }
.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.service-tag-list { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.service-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 10px;
  border-radius: 50px;
}
.service-card .btn { width: 100%; justify-content: center; margin-top: 4px; }

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.why-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); }
.why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  background: var(--primary-light);
}
.why-icon svg { width: 26px; height: 26px; fill: var(--primary); }
.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  z-index: 0;
}
.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 16px;
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  border: 4px solid #fff;
  box-shadow: var(--shadow-md);
}
.step-item h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.step-item p { font-size: 13.5px; color: var(--text-muted); }

/* ============================================================
   SERVICE PROCESS BANNER
   ============================================================ */
.process-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.process-banner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.process-banner p { color: rgba(255,255,255,.82); font-size: 16px; max-width: 540px; }
.process-banner .btn-white { flex-shrink: 0; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.area-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.area-pill {
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-body);
  background: #fff;
  transition: all var(--transition);
  cursor: default;
}
.area-pill:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.area-note { margin-top: 14px; font-size: 13px; color: var(--text-muted); font-style: italic; }

/* Service Area Category Tabs & Panels */
.area-cat-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 24px;
}
.area-cat-tab {
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--text-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.area-cat-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}
.area-cat-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 87, 184, 0.28);
}
.area-cat-panel {
  display: block;
  margin-top: 28px;
}
.area-cat-heading {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 28px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}
.area-cat-heading .badge {
  font-size: 12px;
  font-weight: 700;
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
}
.area-pills a.area-pill {
  text-decoration: none;
  cursor: pointer;
}
.area-pills a.area-pill:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 87, 184, 0.15);
}

/* ---- Area Filter & Table Styles ---- */
.area-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0 16px;
}

.area-search-box {
  position: relative;
  flex: 1;
  max-width: 440px;
}

.area-search-box svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.area-search-input {
  width: 100%;
  padding: 11px 16px 11px 40px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 14px;
  color: var(--text-body);
  background: #fff;
  transition: all var(--transition);
  outline: none;
  font-family: inherit;
}

.area-search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3.5px rgba(0, 86, 179, 0.12);
}

.area-count-badge {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  background: var(--bg-alt);
  padding: 6px 14px;
  border-radius: 50px;
}

.area-table-container {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
  margin-top: 10px;
  -webkit-overflow-scrolling: touch;
}

.area-services-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 820px;
}

.area-services-table.area-services-simple {
  min-width: 480px;
}

@media (max-width: 600px) {
  .area-services-table.area-services-simple {
    min-width: 100%;
  }
  .area-services-table.area-services-simple thead th,
  .area-services-table.area-services-simple td {
    padding: 10px 12px;
    font-size: 13px;
  }
}

.area-services-table thead th {
  background: var(--bg-light);
  color: var(--text-dark);
  font-size: 13.5px;
  font-weight: 700;
  padding: 14px 18px;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

.area-services-table thead th:first-child {
  border-top-left-radius: var(--radius-md);
}

.area-services-table thead th:last-child {
  border-top-right-radius: var(--radius-md);
}

.area-services-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s ease;
}

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

.area-services-table tbody tr:nth-child(even) {
  background: #fbfcfe;
}

.area-services-table tbody tr:hover {
  background: rgba(0, 86, 179, 0.045);
}

.area-services-table td {
  padding: 13px 18px;
  font-size: 13.5px;
  vertical-align: middle;
}

.area-name-cell {
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.area-pin-icon {
  color: #ea580c;
  flex-shrink: 0;
}

.area-service-link {
  color: #1e40af;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition);
}

.area-service-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.area-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition);
}

.area-call-btn:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
}

.area-no-results {
  display: none;
  padding: 40px 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

.area-action-btns {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.area-action-btns .area-call-btn {
  padding: 6px 14px;
  font-size: 12px;
}

.area-action-btns .btn-wa {
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.service-near-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  color: #1e3a8a;
  font-size: 13.5px;
}

.service-near-badge svg {
  color: var(--primary);
  flex-shrink: 0;
}

.service-timing-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #15803d;
  background: #f0fdf4;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  border: 1px solid #bbf7d0;
  white-space: nowrap;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.review-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 20px;
  font-size: 56px;
  font-family: Georgia, serif;
  color: var(--primary-light);
  line-height: 1;
}
.stars { display: flex; gap: 3px; margin-bottom: 12px; }
.stars svg { width: 16px; height: 16px; fill: #f59e0b; }
.review-card p { font-size: 14.5px; color: var(--text-body); line-height: 1.7; margin-bottom: 18px; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.reviewer-info .name { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.reviewer-info .service { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { margin-top: 40px; max-width: 820px; margin-left: auto; margin-right: auto; }
.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #fff;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  background: none;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question.active { color: var(--primary); }
.faq-chevron {
  width: 22px; height: 22px;
  flex-shrink: 0;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition);
}
.faq-chevron svg { width: 12px; height: 12px; fill: var(--primary); }
.faq-question.active .faq-chevron { transform: rotate(180deg); background: var(--primary); }
.faq-question.active .faq-chevron svg { fill: #fff; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.2s ease;
}
.faq-answer-inner {
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   CONTACT / BOOK SERVICE SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.contact-info p { color: var(--text-muted); margin-bottom: 28px; line-height: 1.7; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  border: 1px solid var(--border);
}
.cd-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cd-icon svg {
  width: 22px;
  height: 22px;
  max-width: 22px;
  max-height: 22px;
  fill: var(--primary);
  flex-shrink: 0;
  display: block;
}
.cd-label { font-size: 12px; color: var(--text-muted); }
.cd-value { font-size: 15px; font-weight: 600; color: var(--text-dark); }

.urgent-box {
  margin-top: 24px;
  padding: 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-md);
  color: #fff;
}
.urgent-box .ub-label { font-size: 13px; opacity: .8; margin-bottom: 6px; }
.urgent-box .ub-cta { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.urgent-box .call-btn-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--primary);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  width: fit-content;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.urgent-box .call-btn-lg:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.urgent-box .call-btn-lg svg {
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  fill: var(--primary);
  flex-shrink: 0;
  display: block;
}

/* ============================================================
   CONTACT HUB (DIRECT CALL & WHATSAPP)
   ============================================================ */
.contact-hub {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.contact-hub-header {
  margin-bottom: 36px;
}
.contact-hub-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.contact-hub-header p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}
.contact-cards-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  text-align: left;
  margin-bottom: 28px;
}
.contact-cards-grid .contact-card {
  max-width: 480px;
  width: 100%;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.contact-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.icon-phone-bg { background: rgba(2, 105, 225, 0.1); color: var(--primary); }
.icon-wa-bg { background: rgba(37, 211, 102, 0.12); color: #25d366; }
.icon-area-bg { background: rgba(2, 105, 225, 0.1); color: var(--primary); }
.contact-card-label { font-size: 12.5px; color: var(--text-muted); font-weight: 500; }
.contact-card-val { font-size: 16.5px; font-weight: 700; color: var(--text-dark); margin-top: 2px; }
.contact-card-btn {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}
.contact-banner-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: var(--shadow-md);
  text-align: left;
}
.contact-banner-text h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}
.contact-banner-text p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14.5px;
}
.contact-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.service-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.service-form h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); background: #fff; }
.form-group textarea { height: 90px; resize: vertical; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z' fill='%2364748b'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; }
.form-submit { width: 100%; padding: 14px; font-size: 16px; font-weight: 700; }
.form-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 10px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #000000;
  color: rgba(255,255,255,.75);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.3fr;
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-grid:has(> :last-child:nth-child(3)) {
  grid-template-columns: 2.2fr 1fr 1fr;
  max-width: 960px;
}
.footer-brand .logo-text .brand { color: #fff; font-size: 18px; }
.footer-brand .logo-text .tagline { color: rgba(255,255,255,.5); }
.footer-brand p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.65);
}
.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: #fff; }
.footer-areas { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.footer-area-pill {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  padding: 3px 10px;
  border-radius: 50px;
  transition: all var(--transition);
}
.footer-area-pill:hover { background: rgba(255,255,255,.18); color: #fff; }
.footer-disclaimer-box {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}
.footer-disclaimer-box strong {
  color: rgba(255, 255, 255, 0.85);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
}

/* ============================================================
   FLOATING ACTION BUTTONS (CALL & WHATSAPP)
   ============================================================ */
.floating-contact-wrap {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.floating-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 12px;
  border-radius: 50px;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.floating-call-btn {
  background: linear-gradient(135deg, #0269E1, #02398D);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.floating-call-btn:hover {
  background: linear-gradient(135deg, #006ce6, #004499);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 30px rgba(0, 87, 184, 0.42);
  color: #fff;
}

.floating-wa-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.floating-wa-btn:hover {
  background: linear-gradient(135deg, #2ae06d, #149c8c);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
  color: #fff;
}

.floating-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.floating-icon-box svg {
  width: 17px;
  height: 17px;
  fill: #fff;
}

.floating-wa-ripple {
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  z-index: 0;
  animation: waPulse 2s infinite ease-out;
  pointer-events: none;
}

@keyframes waPulse {
  0% { transform: translateY(-50%) scale(0.9); opacity: 0.8; }
  70% { transform: translateY(-50%) scale(1.6); opacity: 0; }
  100% { transform: translateY(-50%) scale(1.6); opacity: 0; }
}

@media (max-width: 900px) {
  .floating-contact-wrap {
    display: none;
  }
}

/* ============================================================
   STICKY BOTTOM BAR (all screen sizes)
   ============================================================ */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 8px 14px 10px;
  gap: 10px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0, 44, 108, 0.12);
  justify-content: center;
}
@media (max-width: 900px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 66px; }
}
.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  transition: all var(--transition);
  min-height: 44px;
}
.mobile-bar a:active { transform: scale(0.97); }
.mobile-bar .mb-call,
.mobile-bar .mb-call-btn {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 3px 10px rgba(0, 87, 184, 0.28);
}
.mobile-bar .mb-wa,
.mobile-bar .mb-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.28);
}
.mobile-bar svg { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.38);
  aspect-ratio: 4/3;
}
.hero-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}
.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
/* Overlay caption */
.hero-slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.62) 0%, transparent 100%);
  padding: 20px 18px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
}
/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,.35);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s ease;
}
.slider-arrow:hover { background: rgba(255,255,255,.42); }
.slider-arrow svg { width: 18px; height: 18px; fill: #fff; }
.slider-arrow.prev { left: 10px; }
.slider-arrow.next { right: 10px; }
/* Dots */
.slider-dots {
  position: absolute;
  bottom: 12px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px;
  z-index: 10;
}
.slider-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: all .25s ease;
  border: none;
  padding: 0;
}
.slider-dot.active {
  background: #fff;
  width: 22px;
  border-radius: 4px;
}

/* ============================================================
   INNER PAGE — HERO
   ============================================================ */
.inner-hero {
  background: linear-gradient(135deg, #052256 0%, #0550A6 60%, #0269E1 100%);
  padding: 60px 0;
}
.inner-hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 40px;
}
.inner-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.inner-hero p {
  font-size: 16px;
  color: rgba(255,255,255,.8);
  margin-bottom: 28px;
  line-height: 1.7;
}
.inner-hero-img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  margin: 0 auto;
}
.inner-hero-img img { width: 100%; height: 300px; object-fit: cover; }

/* ============================================================
   PROBLEM / TYPE CARDS
   ============================================================ */
.problems-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 36px; }
.problem-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.problem-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.problem-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.problem-card span { font-size: 14.5px; font-weight: 500; color: var(--text-dark); }

.types-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 36px; }
.type-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.type-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.type-icon {
  width: 56px; height: 56px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.type-icon svg { width: 28px; height: 28px; fill: var(--primary); }
.type-card h4 { font-size: 14px; font-weight: 700; color: var(--text-dark); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 12px 0;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}
.breadcrumb-list { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.breadcrumb-list a { color: var(--primary); }
.breadcrumb-list span { color: var(--text-muted); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scrollTop {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 990;
  cursor: pointer;
  transition: all var(--transition);
}
#scrollTop:hover { background: var(--primary-dark); transform: translateY(-2px); }
#scrollTop svg { width: 18px; height: 18px; fill: #fff; }
#scrollTop.visible { display: flex; }

/* ============================================================
   FORM SUCCESS
   ============================================================ */
.form-success-msg {
  display: none;
  text-align: center;
  padding: 24px;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: var(--radius-md);
  color: var(--success);
  font-weight: 600;
  font-size: 15px;
}

/* ============================================================
   RESPONSIVE — TABLET (≤960px)
   ============================================================ */
@media (max-width: 960px) {
  :root { --header-h: 66px; }
  .main-nav { display: none !important; }
  .hamburger { display: flex !important; }
  .logo-emblem-wrap { width: 42px; height: 42px; }
  .logo-text .brand { font-size: 16px; }
  .logo-text .tagline { font-size: 9.5px; }

  .hero-care { padding: 44px 0 40px; }
  .hero-care-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-care-content { text-align: center; }
  .hero-care-pill { margin: 0 auto 16px; }
  .hero-care-desc { margin: 0 auto 24px; }
  .hero-trust-matrix { margin: 0 auto 24px; max-width: 520px; }
  .hero-action-row { justify-content: center; }
  .hero-live-status { margin: 0 auto; }

  .pillars-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .diag-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .steps-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .steps-row::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-banner { flex-direction: column; text-align: center; padding: 36px 24px; }
  .inner-hero-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .inner-hero .hero-btns { justify-content: center; }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤640px)
   ============================================================ */
@media (max-width: 640px) {
  :root { --header-h: 62px; --topbar-h: 32px; }
  .section { padding: 48px 0; }
  .section-title { font-size: 26px; }
  .section-subtitle { font-size: 15px; }

  /* Top Announcement Bar */
  .care-top-bar { padding: 6px 0; font-size: 11px; }
  .care-top-bar-inner { flex-direction: column; gap: 4px; text-align: center; }
  .care-top-right { display: none; }
  .care-top-left { justify-content: center; gap: 6px; }
  .care-top-msg { font-size: 11px; }

  /* Header & Logo */
  .site-main-logo { height: 38px; max-width: 175px; }
  .logo-emblem-wrap { width: 38px; height: 38px; border-radius: 9px; }
  .logo-text .brand { font-size: 15px; }
  .logo-text .tagline { font-size: 8.5px; }

  /* Hero Section */
  .hero-care { padding: 32px 0 36px; }
  .hero-care-content h1 { font-size: 25px; line-height: 1.22; }
  .hero-care-desc { font-size: 14.5px; line-height: 1.6; margin-bottom: 20px; }
  .hero-trust-matrix { grid-template-columns: 1fr 1fr; gap: 8px; }
  .trust-item { padding: 8px 10px; gap: 8px; }
  .trust-icon { width: 26px; height: 26px; border-radius: 6px; }
  .trust-icon svg { width: 14px; height: 14px; }
  .trust-title { font-size: 12px; }
  .trust-sub { font-size: 10px; }

  .hero-action-row { flex-direction: column; width: 100%; gap: 10px; }
  .hero-action-row .btn { width: 100%; justify-content: center; padding: 13px; font-size: 15px; }
  .hero-live-status { font-size: 11.5px; padding: 6px 12px; text-align: center; }

  /* Estimator Card */
  .estimator-card { padding: 20px 14px; border-radius: var(--radius-md); }
  .appliance-tabs { gap: 6px; }
  .appliance-tab { padding: 8px 4px; }
  .appliance-tab-icon { font-size: 18px; }
  .appliance-tab-name { font-size: 11px; }
  .issue-chips-wrap { max-height: 110px; gap: 5px; }
  .issue-chip { font-size: 11.5px; padding: 5px 10px; }
  .estimator-summary-box { padding: 12px 14px; font-size: 12.5px; }
  .estimator-actions { grid-template-columns: 1fr; gap: 8px; }
  .estimator-actions .btn { padding: 12px; font-size: 14px; }

  /* Photo Strip */
  .care-photo-strip { padding: 20px 0; }
  .care-photo-thumb { width: 140px; height: 85px; }

  /* Pillars */
  .service-pillars { padding: 48px 0; }
  .pillars-grid { grid-template-columns: 1fr; gap: 14px; }
  .pillar-card { padding: 18px 16px; text-align: left; display: flex; gap: 14px; align-items: flex-start; }
  .pillar-icon-wrap { margin: 0; width: 44px; height: 44px; min-width: 44px; border-radius: 10px; }
  .pillar-icon-wrap svg { width: 22px; height: 22px; }
  .pillar-card h4 { font-size: 15px; margin-bottom: 4px; }
  .pillar-card p { font-size: 12.5px; }

  /* Diagnostic Section */
  .diag-section { padding: 48px 0; }
  .diag-tabs { justify-content: flex-start; overflow-x: auto; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
  .diag-tab-btn { font-size: 12.5px; padding: 8px 16px; white-space: nowrap; flex-shrink: 0; }
  .diag-cards-grid { grid-template-columns: 1fr; gap: 14px; }
  .diag-card { padding: 18px 16px; }

  /* Services & Grids */
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .why-grid { grid-template-columns: 1fr; gap: 14px; }
  .why-card { padding: 20px 16px; }
  .steps-row { grid-template-columns: 1fr; gap: 20px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Area Pills */
  .area-pills { gap: 6px; }
  .area-pill { font-size: 12px; padding: 5px 10px; }

  /* Mobile Bottom Dock */
  .mobile-bar { padding: 8px 12px 10px; }
  .mobile-bar a { padding: 11px 12px; font-size: 13.5px; min-height: 44px; }
  body { padding-bottom: 70px; }
  #scrollTop { bottom: 76px; right: 14px; width: 38px; height: 38px; }
}
