/* ============================================================
   HomeGrid — Modern Appliance Repair & Home Services Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  --bg: #f8fafc;
  --bg2: #eff6ff;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --border: rgba(30, 58, 138, 0.09);
  --border-soft: rgba(30, 58, 138, 0.05);
  --text: #0f172a;
  --muted: #475569;
  --text-faint: #64748b;
  --primary: #2563eb;
  --primary-2: #0284c7;
  --yellow: #38bdf8;
  --blue: #2563eb;
  --purple: #6366f1;
  --mint: #10b981;
  --navy: #0f172a;
  --navy-light: #1e293b;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow: 0 18px 55px rgba(15, 23, 42, 0.07);
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.04);
  --maxw: 1220px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 45%, #f1f6fd 100%);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.10;
  background-image: radial-gradient(#2563eb 0.85px, transparent 0.85px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black 25%, transparent 80%);
  z-index: 0;
}

h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 0.5em;
  color: var(--navy);
}

h1 { font-size: clamp(2.6rem, 5.5vw, 5.2rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 0.95rem; }

p {
  margin: 0 0 1em;
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(77, 150, 255, 0.5);
  outline-offset: 3px;
}

/* Base Icon System */
.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: -0.15em;
  flex-shrink: 0;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-tight {
  padding: 68px 0;
  position: relative;
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-tight { padding: 48px 0; }
  .container { padding: 0 18px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.eyebrow .icon {
  width: 16px;
  height: 16px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-head p {
  font-size: 1.08rem;
  max-width: 650px;
  line-height: 1.6;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  text-decoration: none;
}

.btn .icon {
  width: 18px;
  height: 18px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.40);
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.btn-amber {
  background: linear-gradient(135deg, #2563eb, #0284c7);
  color: white;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

.btn-amber:hover {
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.40);
}

.btn-ghost {
  background: white;
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow: 0 8px 24px rgba(30, 40, 60, 0.07);
}

.btn-ghost .icon {
  color: var(--primary);
  flex-shrink: 0;
}

.btn-ghost:hover {
  background: #eff6ff;
  border-color: rgba(37, 99, 235, 0.35);
  color: var(--primary);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.15);
}

.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 0.86rem; }
.btn[disabled] { opacity: 0.5; pointer-events: none; }

.glass {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

/* ---------- Header & Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(30, 58, 138, 0.09);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  height: 40px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
}

.footer-about .brand-logo {
  height: 46px;
  margin-bottom: 16px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  color: #475569;
  font-weight: 600;
  background: transparent !important;
  transition: color 0.18s ease;
  text-decoration: none;
}

.nav-links a:hover {
  color: #2563eb;
  background: transparent !important;
}

.nav-links a:focus,
.nav-links a:active,
.nav-links a.active {
  background: transparent !important;
  box-shadow: none !important;
  outline: none;
}

.mobile-nav-actions {
  display: none;
}

.nav-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.22);
  transition: all 0.2s ease;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-cart-btn:hover {
  background: #dbeafe;
  color: #1e40af;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.nav-cart-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-cart-icon .icon {
  width: 20px;
  height: 20px;
}

.nav-cart-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background: #ef4444;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 999px;
  padding: 0 4px;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
  transition: transform 0.2s ease;
}

.nav-cart-badge.bump {
  transform: scale(1.3);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--primary);
  font-size: 1.5rem;
  padding: 6px;
  cursor: pointer;
}

.nav-toggle .icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

/* ---------- Hero Section ---------- */
.hero {
  padding: 72px 0 48px;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.hero::after {
  display: none !important;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.06);
}

.hero h1 {
  max-width: 800px;
  color: #0f172a;
  background: linear-gradient(135deg, #0f172a 20%, #1e3a8a 65%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.14;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 640px;
  line-height: 1.68;
  color: #475569;
  font-weight: 450;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 36px;
}

.hero-actions .btn {
  padding: 13px 26px;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(30, 58, 138, 0.08);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat b {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.stat span {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 500;
  margin-top: 2px;
}

.hero-card {
  padding: 26px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 50%, #2563eb 100%) !important;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.32) !important;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 70%);
  top: -100px;
  right: -50px;
  pointer-events: none;
}

.hero-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.hero-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffffff !important;
  color: #15803d !important;
  font-size: 0.8rem;
  font-weight: 800;
  position: relative;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  margin-top: 14px;
}

.hero-card-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.95);
  padding: 15px 18px;
  border-radius: 18px;
  margin-top: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  position: relative;
}

.hero-card-row strong, .hero-card-row span {
  display: block;
}

.hero-card-row strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
}

.hero-card-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: var(--primary);
  border: 1px solid rgba(37, 99, 235, 0.18);
  flex-shrink: 0;
}

.hero-card-icon .icon {
  width: 24px;
  height: 24px;
}

.hero-progress {
  height: 8px;
  background: rgba(255, 255, 255, 0.28) !important;
  border-radius: 99px;
  margin-top: 20px;
  overflow: hidden;
}

.hero-progress i {
  display: block;
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, #38bdf8, #ffffff, #67e8f9) !important;
  border-radius: 99px;
  animation: progress 2.5s ease-in-out infinite alternate;
}

@keyframes progress {
  from { width: 62%; }
  to { width: 86%; }
}

.hero-fine {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #e0f2fe !important;
  font-weight: 600;
  margin-top: 9px;
}

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: #f8faff;
  color: var(--text);
  padding: 16px 0;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.05);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #dbeafe;
}

.trust-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.trust-row span {
  font-size: 0.88rem;
  color: #334155;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.trust-row b {
  color: #0f172a;
  font-weight: 700;
}

.trust-check {
  color: #2563eb !important;
  font-size: 1.1rem;
  font-weight: 900;
}

/* ============================================================
   ALTERNATING SECTIONS SYSTEM (WHITE & BLUE)
   ============================================================ */
.section-white {
  background: #ffffff;
  color: var(--text);
  position: relative;
}

section.section-blue,
.section-blue,
#services.section-blue,
#process.section-blue,
#reviews.section-blue {
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 50%, #2563eb 100%) !important;
  color: #ffffff !important;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 15%, rgba(56, 189, 248, 0.20), transparent 50%),
              radial-gradient(circle at 82% 85%, rgba(30, 64, 175, 0.35), transparent 55%),
              radial-gradient(circle at 50% 50%, rgba(2, 132, 199, 0.15), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.section-blue .container {
  position: relative;
  z-index: 1;
}

.section-blue h2 {
  color: #ffffff !important;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.section-blue .section-head p {
  color: #dbeafe !important;
  font-size: 1.05rem;
}

.section-blue .eyebrow {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12) !important;
}

.section-blue .eyebrow .icon {
  color: #67e8f9 !important;
}

/* 1. Services Section on Blue */
#services.section-blue .group-label {
  color: #ffffff !important;
  font-size: 1.22rem;
  font-weight: 800;
}

#services.section-blue .group-label::after {
  background: rgba(255, 255, 255, 0.35);
  height: 2px;
}

#services.section-blue .svc-tab {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(8px);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10);
}

#services.section-blue .svc-tab:hover {
  background: rgba(255, 255, 255, 0.30);
  border-color: rgba(255, 255, 255, 0.65);
  color: #ffffff;
  transform: translateY(-2px);
}

#services.section-blue .svc-tab.active {
  background: #ffffff;
  color: #1d4ed8;
  border-color: #ffffff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  font-weight: 800;
}

#services.section-blue .svc-features-bar {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.16);
  border-radius: 999px;
}

#services.section-blue .svc-features-bar span {
  color: #0f172a;
  font-weight: 700;
}

#services.section-blue .svc-features-bar span b {
  color: #2563eb;
  font-size: 1.1rem;
  font-weight: 900;
}

#services.section-blue .svc-card {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
}

#services.section-blue .svc-card:hover {
  border-color: #38bdf8;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
}

/* 2. Process Section on Blue */
#process.section-blue .process-item {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
}

#process.section-blue .process-item:hover {
  border-color: #38bdf8;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

#process.section-blue .process-line {
  background: rgba(255, 255, 255, 0.45);
}

/* 3. Reviews Section on Blue */
#reviews.section-blue .reviews-dots .review-dot {
  background: rgba(255, 255, 255, 0.45);
}

#reviews.section-blue .reviews-dots .review-dot.active {
  background: #38bdf8;
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.9);
}

#reviews.section-blue .review-nav-btn {
  background: #ffffff;
  color: #1d4ed8;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

#reviews.section-blue .review-nav-btn:hover {
  background: #ffffff;
  color: #2563eb;
  border-color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  transform: scale(1.1);
}

#reviews.section-blue .review-card {
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

#reviews.section-blue .active-review .review-card {
  border: 2.5px solid #38bdf8;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

/* ---------- Services Grid & Filter Tabs ---------- */
.svc-filter-tabs {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.svc-tab {
  padding: 10px 20px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--border);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.svc-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.svc-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.28);
}

.svc-features-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  margin: 28px 0 34px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 255, 0.9));
}

.svc-features-bar span {
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.svc-features-bar span b {
  color: var(--mint);
  font-size: 1.05rem;
}

.group-label {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--navy);
  margin: 36px 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.group-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.svc-grid.other {
  grid-template-columns: repeat(3, 1fr);
}

.svc-card {
  min-height: 330px;
  height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(24, 36, 61, 0.05);
  text-decoration: none;
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(37, 99, 235, 0.14);
  border-color: rgba(37, 99, 235, 0.4);
}

.svc-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  z-index: 3;
  pointer-events: none;
}

.svc-badge {
  background: rgba(255, 255, 255, 0.94);
  color: #1a5697;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.svc-badge .icon {
  width: 12px;
  height: 12px;
}

.svc-price-badge {
  background: var(--navy);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.svc-card-media {
  position: relative;
  width: 100%;
  height: 165px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #f1f5f9;
}

.svc-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.svc-card:hover .svc-card-img {
  transform: scale(1.09);
}

.svc-card-media .svc-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--yellow));
  color: white;
  box-shadow: 0 4px 14px rgba(24, 36, 61, 0.25);
  z-index: 2;
}

.svc-card-media .svc-icon .icon {
  width: 20px;
  height: 20px;
}

.svc-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
  margin-top: 14px;
  padding: 0 4px 4px;
}

.svc-card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.svc-card h4 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.svc-rating-pill {
  font-size: 0.76rem;
  font-weight: 800;
  color: #b45309;
  background: #fef3c7;
  padding: 3px 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.svc-rating-pill .icon {
  width: 12px;
  height: 12px;
  fill: #f59e0b;
  stroke: none;
}

.svc-card-sub {
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--muted);
  margin: 0;
  flex: 1;
  min-height: 42px;
}

.svc-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(28, 34, 52, 0.06);
}

.svc-pkg-count {
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
  background: #f1f5f9;
  padding: 3px 9px;
  border-radius: 999px;
}

.svc-card-action {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: transform 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.svc-card:hover .svc-card-action {
  transform: translateX(4px);
  color: #1d4ed8;
}

.svc-card-action .icon {
  width: 14px;
  height: 14px;
}

/* ---------- Why Us Section ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(30, 40, 60, 0.10);
}

.why-card:nth-child(1) { border-top: 5px solid var(--primary); }
.why-card:nth-child(2) { border-top: 5px solid var(--blue); }
.why-card:nth-child(3) { border-top: 5px solid var(--mint); }
.why-card:nth-child(4) { border-top: 5px solid var(--purple); }

.why-icon {
  display: grid;
  place-items: center;
  width: 52px;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #eff6ff;
  color: #2563eb;
  margin-bottom: 22px;
  flex-shrink: 0;
  border: 1px solid rgba(37, 99, 235, 0.15);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
}

.why-icon .icon {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

.why-card:nth-child(1) .why-icon { background: #eff6ff; color: #2563eb; border-color: rgba(37, 99, 235, 0.2); }
.why-card:nth-child(2) .why-icon { background: #f0f9ff; color: #0284c7; border-color: rgba(2, 132, 199, 0.2); }
.why-card:nth-child(3) .why-icon { background: #ecfdf5; color: #10b981; border-color: rgba(16, 185, 129, 0.2); }
.why-card:nth-child(4) .why-icon { background: #f5f3ff; color: #6366f1; border-color: rgba(99, 102, 241, 0.2); }

.why-card h4 {
  font-size: 1.1rem;
  margin: 0 0 10px;
  color: var(--navy);
}

.why-card p {
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
  color: var(--muted);
}

/* ---------- Process Section ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.process-item {
  position: relative;
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.process-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(30, 40, 60, 0.10);
}

.process-num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2563eb, #0284c7);
  color: white;
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 22px;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.process-item:nth-child(2) .process-num { background: linear-gradient(135deg, #0284c7, #0ea5e9); box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35); }
.process-item:nth-child(3) .process-num { background: linear-gradient(135deg, #2563eb, #3b82f6); box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35); }
.process-item:nth-child(4) .process-num { background: linear-gradient(135deg, #1d4ed8, #2563eb); box-shadow: 0 6px 18px rgba(29, 78, 216, 0.35); }

.process-item h4 {
  font-size: 1.1rem;
  margin: 0 0 10px;
  color: var(--navy);
}

.process-item p {
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
  color: var(--muted);
}

/* ---------- About Section ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.about-art {
  min-height: 460px;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(36, 45, 70, 0.14);
  border: 4px solid #ffffff;
  background: white;
}

.about-image-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 460px;
}

.about-img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  transition: transform 0.5s ease;
}

.about-art:hover .about-img {
  transform: scale(1.03);
}

.about-floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 36px rgba(24, 36, 61, 0.16);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
}

.about-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--mint), #10b981);
  color: white;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.3);
}

.about-badge-icon .icon {
  width: 22px;
  height: 22px;
}

.about-floating-badge strong {
  display: block;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.02rem;
  color: var(--navy);
  font-weight: 800;
}

.about-floating-badge span {
  display: block;
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 2px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.about-stat {
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(30, 40, 60, 0.09);
}

.about-stat b {
  display: block;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 6px;
}

.about-stat span {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ---------- Continuous Customer Reviews Marquee ---------- */
.reviews-marquee-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 24px 0 16px;
  mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
}

.reviews-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviewContinuousMarquee 45s linear infinite;
  will-change: transform;
}

.reviews-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes reviewContinuousMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 12px));
  }
}

.review-slide {
  width: 360px;
  min-width: 330px;
  max-width: 380px;
  flex-shrink: 0;
  user-select: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.review-slide:hover {
  transform: translateY(-6px);
}

.review-card {
  padding: 28px 24px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(30, 40, 60, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 275px;
  height: 100%;
  transition: all 0.3s ease;
}

.review-slide:hover .review-card {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.16);
}

.active-review .review-card {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 26px 65px rgba(37, 99, 235, 0.14);
  background: linear-gradient(145deg, #ffffff, #f0f7ff);
}

.review-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-verified-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--mint);
  background: #f0fdf4;
  padding: 3px 9px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.review-verified-badge .icon {
  width: 12px;
  height: 12px;
}

.review-service-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 4px 10px;
  border-radius: 8px;
  margin-bottom: 14px;
  width: fit-content;
}

.review-stars {
  color: #f59e0b;
  display: flex;
  gap: 4px;
  align-items: center;
}

.review-stars .icon {
  width: 16px;
  height: 16px;
  fill: #f59e0b;
  stroke: none;
}

.review-text {
  color: #334155;
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0 0 20px;
  flex-grow: 1;
}

.review-who {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(28, 34, 52, 0.08);
}

.review-avatar-letter {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
  border: 2px solid #ffffff;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: white;
  font-weight: 900;
  font-size: 0.92rem;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
}

.review-who-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  gap: 3px;
  min-width: 0;
}

.review-author-name {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-author-city {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1.2;
}

.review-verified-text {
  color: #10b981;
  font-weight: 700;
  font-size: 0.76rem;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.review-verified-text .icon {
  width: 13px;
  height: 13px;
  color: #10b981;
}

.review-who b, .review-who span {
  display: block;
}

.review-who b {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.review-who span {
  font-size: 0.8rem;
  color: var(--muted);
}

.review-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(24, 36, 61, 0.12);
  color: #2563eb;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.2rem;
  transition: all 0.2s ease;
}

.review-nav-btn.prev {
  left: 6px;
}

.review-nav-btn.next {
  right: 6px;
}

.review-nav-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.3);
}

.reviews-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.review-dot.active {
  width: 32px;
  background: var(--primary);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

/* ---------- CTA Banner Section ---------- */
.cta-banner {
  padding: 44px 48px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 50%, #2563eb 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.22);
  position: relative;
  overflow: hidden;
  color: white;
}

.cta-banner::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  right: -60px;
  top: -80px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 70%);
  pointer-events: none;
}

.cta-banner h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin: 0 0 8px;
  color: #ffffff;
  font-weight: 800;
}

.cta-banner p {
  margin: 0;
  font-size: 1.05rem;
  color: #dbeafe;
  max-width: 620px;
  line-height: 1.5;
}

.cta-banner .btn {
  flex-shrink: 0;
  padding: 15px 32px;
  font-size: 1rem;
  background: #ffffff !important;
  color: #1d4ed8 !important;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.20) !important;
  transition: all 0.22s ease;
}

.cta-banner .btn:hover {
  background: #eff6ff !important;
  color: #1e40af !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28) !important;
}

/* ---------- Footer & Social Media Links ---------- */
.footer {
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 50%, #2563eb 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 72px 0 28px;
  position: relative;
  margin-top: 40px;
}

.footer p, .footer a {
  color: #dbeafe;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer a:hover {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr 1.1fr 1.3fr;
  gap: 36px;
}

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-about .brand {
  background: #ffffff;
  padding: 8px 18px;
  border-radius: 14px;
  display: inline-flex;
  width: fit-content;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.footer-about .brand-logo {
  height: 40px;
  margin-bottom: 0;
}

.footer-about p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #dbeafe;
  max-width: 340px;
  margin: 0;
}

.footer h5 {
  font-size: 0.88rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  font-weight: 800;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li {
  margin: 0;
  font-size: 0.9rem;
}

.footer-links a {
  color: #e0f2fe;
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Social Media Button Row */
.social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.social-btn .icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.social-btn:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #1d4ed8;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Footer Contact List */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #e0f2fe;
  margin: 0;
  line-height: 1.5;
}

.footer-contact .icon {
  width: 18px;
  height: 18px;
  color: #67e8f9;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact a {
  color: #e0f2fe;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #ffffff;
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.84rem;
  color: #dbeafe;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #67e8f9;
  text-decoration: underline;
}

.footer-legal-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #dbeafe;
}

.footer-legal-inline a {
  color: #ffffff;
}

.footer-legal-inline a:hover {
  color: #67e8f9;
}

/* ---------- Legal Pages Styles ---------- */
.legal-page {
  padding-bottom: 80px;
}

.legal-hero {
  padding: 50px 0 36px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 60%, #f0fdf4 100%);
  border-bottom: 1px solid rgba(37, 99, 235, 0.15);
}

.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 10px 0 6px;
  color: var(--navy);
}

.legal-date {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
  margin: 0;
}

.legal-container {
  max-width: 900px;
  margin: 40px auto 0;
}

.legal-card {
  padding: 44px;
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.legal-section {
  margin-bottom: 34px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h3 {
  font-size: 1.28rem;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 800;
}

.legal-section p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 14px;
}

.legal-section ul, .legal-section ol {
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-section li {
  font-size: 0.94rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 8px;
  position: relative;
}

.legal-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.2);
  margin-bottom: 12px;
}

.legal-notice-box {
  padding: 16px 20px;
  background: #eff6ff;
  border-left: 4px solid #2563eb;
  border-radius: 12px;
  margin-bottom: 28px;
  font-size: 0.92rem;
  color: #1e3a8a;
  line-height: 1.6;
}

.legal-notice-box p {
  margin: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.legal-timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 16px 0;
}

.timeline-item {
  padding: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.timeline-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.timeline-item strong, .timeline-item h4 {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.55;
}

.legal-contact-card {
  padding: 18px 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #334155;
  margin-top: 14px;
}

.legal-contact-card strong {
  color: var(--navy);
}

.legal-contact-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.legal-contact-card a:hover {
  text-decoration: underline;
}

/* ---------- Floating Action Buttons ---------- */
.fab-stack {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 12px 28px rgba(20, 30, 50, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fab .icon {
  width: 24px;
  height: 24px;
}

.fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 16px 36px rgba(20, 30, 50, 0.32);
}

.fab-whatsapp { background: #25d366; }
.fab-call { background: var(--primary); }

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.svc-hero {
  padding: 46px 0 55px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 60%, #e0f2fe 100%);
  border-bottom: 1px solid rgba(37, 99, 235, 0.15);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #788296;
  font-size: 0.84rem;
  margin-bottom: 28px;
}

.breadcrumbs a {
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.svc-hero-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}

.svc-hero-media {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(24, 36, 61, 0.12);
  border: 3px solid #ffffff;
  background: white;
  flex-shrink: 0;
}

.svc-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-hero-media .svc-hero-icon {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--yellow));
  color: white;
}

.svc-hero-media .svc-hero-icon .icon {
  width: 20px;
  height: 20px;
}

.svc-hero-icon {
  width: 82px;
  height: 82px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--yellow));
  color: white;
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.25);
  flex-shrink: 0;
}

.svc-hero-icon .icon {
  width: 42px;
  height: 42px;
}

.svc-hero-text h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin-bottom: 6px;
}

.svc-hero-text p {
  max-width: 720px;
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.55;
}

.svc-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 2px 6px rgba(24, 36, 61, 0.04);
}

.layout {
  display: grid;
  grid-template-columns: 200px 1fr 300px;
  gap: 28px;
  padding-top: 48px;
  padding-bottom: 70px;
  align-items: start;
}

.side-nav {
  position: sticky;
  top: 100px;
  height: max-content;
}

.side-svc-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.side-svc-img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(24, 36, 61, 0.08);
}

.side-svc-meta strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  line-height: 1.2;
}

.side-svc-meta span {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--mint);
  font-weight: 700;
  margin-top: 3px;
}

.side-nav h5 {
  color: #8a93a3;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  font-weight: 700;
}

.side-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.side-nav-list a {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  color: #64748b;
  font-weight: 600;
  font-size: 0.88rem;
  background: transparent;
  transition: color 0.18s ease;
  border-left: 3px solid transparent;
}

.side-nav-list a:hover {
  color: #2563eb;
  background: transparent;
}

.side-nav-list a.active {
  background: transparent;
  color: #2563eb;
  font-weight: 800;
  border-left: 3px solid #2563eb;
  padding-left: 14px;
}

.main-col {
  min-width: 0;
}

.cat-section {
  margin-bottom: 52px;
  scroll-margin-top: 100px;
}

.cat-head h2 {
  font-size: 1.55rem;
  margin-bottom: 6px;
  color: var(--navy);
}

.cat-head p {
  font-size: 0.94rem;
  color: var(--muted);
  margin-bottom: 22px;
}

/* Package Cards */
.pkg-card, .package-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pkg-card:hover, .package-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 16px 38px rgba(30, 40, 60, 0.10);
}

.pkg-info h3 {
  font-size: 1.12rem;
  margin: 0 0 8px;
  color: var(--navy);
}

.pkg-meta, .package-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  color: #778194;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.pkg-meta .rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #f59e0b;
  font-weight: 700;
}

.pkg-meta .rating .icon {
  width: 14px;
  height: 14px;
  fill: #f59e0b;
  stroke: none;
}

.pkg-meta .icon {
  width: 14px;
  height: 14px;
  color: #2563eb;
}

.pkg-bullets {
  margin: 0 0 16px;
  padding: 0;
}

.pkg-bullets li {
  font-size: 0.88rem;
  color: #556070;
  padding-left: 18px;
  position: relative;
  margin-bottom: 6px;
  line-height: 1.45;
}

.pkg-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.pkg-price, .package-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pkg-price b, .package-price b {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
}

.pkg-price s, .package-price del {
  font-size: 0.85rem;
  color: #9aa2b0;
  font-weight: 500;
  text-decoration: line-through;
}

.pkg-actions, .package-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.pkg-thumb-box {
  width: 100px;
  height: 75px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 10px rgba(24, 36, 61, 0.05);
  background: #f8fafc;
}

.pkg-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.pkg-card:hover .pkg-thumb-img {
  transform: scale(1.06);
}

.pkg-view {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 700;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.pkg-view:hover {
  text-decoration: underline;
}

/* Right Rail */
.rail {
  position: sticky;
  top: 100px;
  height: max-content;
}

.promise-card, .cart-card {
  padding: 22px;
  background: white;
  margin-bottom: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.promise-card h5, .cart-card h5 {
  font-size: 0.92rem;
  margin-bottom: 14px;
  color: var(--navy);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-card h5 .icon, .promise-card h5 .icon {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.promise-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #edf0f4;
  font-size: 0.85rem;
  color: #556070;
}

.promise-list li:last-child {
  border: 0;
}

.promise-list .icon {
  width: 16px;
  height: 16px;
  color: var(--mint);
  flex-shrink: 0;
}

.cart-card {
  min-height: 120px;
}

.cart-empty {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 14px 0;
  text-align: center;
}

.cart-items {
  margin: 10px 0;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #edf0f4;
  font-size: 0.84rem;
}

.cart-item-x {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 2px 6px;
  font-size: 1.1rem;
  line-height: 1;
}

.cart-item-x .icon {
  width: 14px;
  height: 14px;
}

.cart-item-x:hover {
  color: #ef4444;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 900;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  margin: 16px 0 12px;
  padding-top: 12px;
  border-top: 1px solid #edf0f4;
  color: var(--navy);
}

.cart-bar {
  display: none;
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 180;
  padding: 14px 18px;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.cart-bar.show {
  display: flex;
}

.cart-bar b {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  color: var(--navy);
}

.cart-bar span {
  font-size: 0.8rem;
  color: var(--muted);
  display: block;
}

/* ---------- Modals ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 28, 44, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 500;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  width: min(650px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: white;
  border-radius: 26px;
  box-shadow: 0 30px 90px rgba(20, 28, 44, 0.25);
  position: relative;
}

.modal-banner {
  padding: 28px 28px 22px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  position: relative;
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.15s ease;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.modal-close:hover {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #93c5fd;
  transform: scale(1.08);
}

.modal-close .icon {
  width: 16px;
  height: 16px;
}

.modal-close::after {
  display: none;
}

.modal-banner-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
}

.modal-svc-thumb-wrap {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid white;
  box-shadow: 0 6px 18px rgba(24, 36, 61, 0.12);
  background: white;
}

.modal-svc-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-svc-thumb-wrap .modal-banner-icon {
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  margin: 0;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

.modal-svc-thumb-wrap .modal-banner-icon .icon {
  width: 13px;
  height: 13px;
}

.modal-banner-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: white;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.15);
}

.modal-banner-icon .icon {
  width: 26px;
  height: 26px;
}

.modal-banner h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.modal-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.modal-price-row b {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  color: var(--navy);
}

.modal-price-row s {
  color: #9aa2b0;
  font-size: 0.9rem;
}

.modal-price-row span {
  font-size: 0.85rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.modal-price-row .icon {
  width: 14px;
  height: 14px;
}

.modal-body {
  padding: 26px 28px;
}

.modal-highlight {
  background: #fff8e8;
  border: 1px solid #ffe2a7;
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #7c5500;
}

.modal-highlight .icon {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.modal-block {
  margin: 22px 0;
}

.modal-block h4 {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #788296;
  margin-bottom: 12px;
  font-weight: 700;
}

.modal-block ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-block li {
  padding: 0;
  color: #556070;
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.modal-block li .icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.modal-block.includes li .icon {
  color: var(--mint);
}

.modal-block.excludes li .icon {
  color: #ef4444;
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

/* Booking Form Elements */
.form-row {
  margin-bottom: 15px;
}

.form-row label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 7px;
  color: var(--navy);
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dfe3ea;
  border-radius: 12px;
  background: #ffffff;
  outline: none;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 75px;
}

.form-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.req {
  color: #ef4444;
  font-weight: 800;
  margin-left: 2px;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.form-grid3 {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
}

@media (max-width: 600px) {
  .form-grid2,
  .form-grid3 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.addr-box {
  background: #fbfcfe;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px;
  margin-top: 10px;
}

.addr-toggle {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

.addr-toggle button {
  border: 1px solid #e0e4ea;
  background: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.addr-toggle button.active {
  background: #eff6ff;
  border-color: #93c5fd;
  color: var(--primary);
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

.addr-toggle button:hover:not(.active) {
  background: #f8fafc;
  border-color: #bfdbfe;
  color: var(--primary);
}

.locate-action-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 6px;
}

.btn-locate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2563eb, #0284c7);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.btn-locate:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
  background: linear-gradient(135deg, #1d4ed8, #0369a1);
}

.btn-locate:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.locate-btn-icon {
  font-size: 1.05rem;
}

.locate-hint {
  font-size: 0.76rem;
  color: #64748b;
}

.locate-status {
  font-size: 0.82rem;
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  display: none;
  align-items: center;
  gap: 8px;
}

.locate-status.show {
  display: flex;
}

.locate-status.loading {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.locate-status.success {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.locate-status.err {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.locate-status .icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.locate-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid #93c5fd;
  border-top-color: #1d4ed8;
  border-radius: 50%;
  animation: spinLocate 0.7s linear infinite;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes spinLocate {
  to { transform: rotate(360deg); }
}

/* Live Detected Address Card */
.live-addr-card {
  margin-top: 14px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-left: 4px solid #10b981;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.08);
}

.live-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #e2e8f0;
}

.live-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ecfdf5;
  color: #065f46;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #a7f3d0;
}

.live-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
  animation: livePulse 1.8s infinite;
}

@keyframes livePulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.live-recheck-btn {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 0.76rem;
  color: #475569;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.live-recheck-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.live-card-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
  margin-bottom: 12px;
}

@media (max-width: 480px) {
  .live-card-details {
    grid-template-columns: 1fr;
  }
}

.live-detail-item {
  font-size: 0.82rem;
  display: flex;
  flex-direction: column;
}

.live-detail-item .detail-label {
  color: #64748b;
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.live-detail-item .detail-val {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  word-break: break-word;
}

.live-full-addr {
  background: #f8fafc;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 14px;
  border: 1px solid #f1f5f9;
}

.live-full-addr .detail-label {
  display: block;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.live-full-text {
  margin: 0;
  font-size: 0.8rem;
  color: #334155;
  line-height: 1.45;
}

.live-extra-fields {
  border-top: 1px solid #edf2f7;
  padding-top: 12px;
  margin-top: 6px;
}

.summary-box {
  background: #f8fafc;
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 18px;
  font-size: 0.84rem;
  border: 1px solid var(--border);
}

.confirm-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.14);
  color: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.confirm-icon .icon {
  width: 32px;
  height: 32px;
}

/* Image Placeholders */
.image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px dashed rgba(24, 36, 61, 0.18);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(2, 132, 199, 0.08));
  color: #7b8495;
  overflow: hidden;
}

.image-placeholder span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.image-placeholder small {
  max-width: 300px;
  margin-top: 7px;
  font-size: 0.72rem;
  color: #98a1b2;
}

.hero-image-placeholder {
  height: 190px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff1e7, #edf7ff);
}

.hero-image-wrap {
  width: 100%;
  height: 190px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(30, 40, 60, 0.08);
  border: 1px solid var(--border);
  position: relative;
  background: #f8fafc;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.hero-card:hover .hero-image {
  transform: scale(1.03);
}

/* General Utilities */
.hidden { display: none !important; }
.mt-8 { margin-top: 8px; }
.center { text-align: center; }
.text-faint { color: var(--text-faint); font-size: 0.82rem; }

/* ============================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================ */
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-grid.other { grid-template-columns: repeat(3, 1fr); }
  .why-grid, .process { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .layout { grid-template-columns: 180px 1fr; }
  .rail {
    grid-column: 1 / -1;
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .rail > * { margin: 0; }
}

@media (max-width: 850px) {
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 36px; padding-bottom: 32px; }
  .hero-card { max-width: 680px; }
  .about-art { min-height: 380px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .reviews-carousel-outer { padding: 16px 44px; }
  .review-slide.pos-left, .review-slide.pos-right { display: none; }
  .review-slide.pos-center { max-width: 100%; min-width: 100%; transform: scale(1); }
  .nav-inner { position: relative; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(25, 32, 50, 0.1);
    border-radius: 20px;
    padding: 18px;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 18px 45px rgba(20, 30, 50, 0.15);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; text-align: center; padding: 12px 16px; font-size: 0.96rem; }
  .nav-cta .btn-ghost { display: none; }
  .nav-book-btn { display: none !important; }
  .nav-toggle { display: block; }
  .layout {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 20px;
    padding-top: 14px;
    padding-bottom: 120px !important;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .side-nav {
    position: sticky;
    top: 68px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    margin: 0 0 16px;
    padding: 8px 10px 6px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
  }
  .side-nav h5 {
    display: none;
  }
  .side-svc-badge {
    display: none;
  }
  .side-nav-list {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    padding: 2px 0 4px;
    scrollbar-width: none;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
  }
  .side-nav-list::-webkit-scrollbar {
    display: none;
  }
  .side-nav-list a {
    white-space: nowrap;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 7px 15px;
    font-size: 0.82rem;
    font-weight: 600;
    flex-shrink: 0;
    transition: all 0.15s ease;
  }
  .side-nav-list a.active {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
  }

  /* Inner Pages: Service Hero Responsive */
  .svc-hero {
    padding: 24px 0 26px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
  }
  .breadcrumbs {
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 6px;
    font-size: 0.8rem;
    min-width: 0;
    max-width: 100%;
  }
  .breadcrumbs::-webkit-scrollbar {
    display: none;
  }
  .svc-hero-grid {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    min-width: 0;
    max-width: 100%;
  }
  .svc-hero-media {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .svc-hero-media .svc-hero-icon {
    width: 26px;
    height: 26px;
    bottom: 3px;
    right: 3px;
    border-radius: 7px;
  }
  .svc-hero-media .svc-hero-icon .icon {
    width: 13px;
    height: 13px;
  }
  .svc-hero-text {
    min-width: 0;
  }
  .svc-hero-text h1 {
    font-size: 1.28rem;
    margin-bottom: 6px;
    line-height: 1.25;
  }
  .svc-hero-text p {
    font-size: 0.84rem;
    line-height: 1.45;
  }
  .svc-hero-highlights {
    gap: 6px;
    margin-top: 8px;
    flex-wrap: wrap;
  }
  .hero-chip {
    font-size: 0.72rem;
    padding: 3px 9px;
  }

  /* Floating Action Buttons docked cleanly at bottom corners on mobile */
  .fab-stack {
    display: flex !important;
    position: fixed !important;
    right: 14px !important;
    bottom: 14px !important;
    z-index: 200 !important;
    flex-direction: column !important;
    gap: 8px !important;
  }
  .fab {
    width: 44px !important;
    height: 44px !important;
    box-shadow: 0 6px 20px rgba(20, 30, 50, 0.25) !important;
  }
  .fab .icon {
    width: 20px !important;
    height: 20px !important;
  }
  .hg-chatbot-root .hg-chat-trigger {
    display: flex !important;
    position: fixed !important;
    left: 14px !important;
    right: auto !important;
    bottom: 14px !important;
    width: 44px !important;
    height: 44px !important;
    z-index: 250 !important;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.32) !important;
  }
  .hg-chatbot-root .hg-chat-trigger .icon {
    width: 22px !important;
    height: 22px !important;
  }
  .hg-chatbot-root .hg-chat-tooltip {
    display: none !important;
  }

  /* Completely remove the checkout bar line */
  .cart-bar {
    display: none !important;
  }

  /* Mobile Nav 1-tap quick action buttons */
  .mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(30, 58, 138, 0.1);
    width: 100%;
  }
  .mobile-nav-btn {
    width: 100%;
    justify-content: center;
    padding: 11px 16px;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 999px;
  }
  .mobile-nav-cart {
    background: #eff6ff !important;
    color: #1d4ed8 !important;
    border: 1px solid rgba(37, 99, 235, 0.25) !important;
  }
  .mobile-nav-wa {
    background: #25d366 !important;
    color: #ffffff !important;
    border: none;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
  }
  .mobile-nav-ai {
    background: linear-gradient(135deg, #2563eb, #0284c7) !important;
    color: #ffffff !important;
    border: none;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
  }
}

@media (max-width: 640px) {
  h1 { font-size: 2.75rem; }
  .hero-stats { gap: 18px; }
  .trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .svc-features-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 18px;
  }
  .svc-tab {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  .legal-card {
    padding: 24px 18px;
  }
  .svc-grid, .svc-grid.other {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .svc-card {
    padding: 12px;
    min-height: unset;
    border-radius: 16px;
  }
  .svc-card-header {
    top: 18px;
    left: 18px;
    right: 18px;
    gap: 6px;
  }
  .svc-badge {
    padding: 3px 7px;
    font-size: 0.68rem;
    font-weight: 700;
  }
  .svc-price-badge {
    padding: 3px 8px;
    font-size: 0.7rem;
    font-weight: 700;
  }
  .svc-card-media {
    height: 125px;
    border-radius: 12px;
  }
  .svc-card-media .svc-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    bottom: 8px;
    right: 8px;
  }
  .svc-card-media .svc-icon .icon {
    width: 16px;
    height: 16px;
  }
  .svc-card-body {
    margin-top: 10px;
    gap: 6px;
    padding: 0;
  }
  .svc-card h4 {
    font-size: 0.98rem;
  }
  .svc-rating-pill {
    font-size: 0.7rem;
    padding: 2px 6px;
  }
  .svc-card-sub {
    font-size: 0.78rem;
    line-height: 1.35;
    min-height: 34px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .svc-card-footer {
    margin-top: auto;
    padding-top: 8px;
  }
  .svc-pkg-count {
    font-size: 0.72rem;
    padding: 2px 6px;
  }
  .svc-card-action {
    font-size: 0.76rem;
  }
  .why-grid, .process { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .cta-banner {
    padding: 32px 20px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .cta-banner p { margin-bottom: 6px; }
  .cta-banner .btn { width: 100%; }
  .pkg-card, .package-card {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 88px !important;
    gap: 12px !important;
    padding: 14px 12px !important;
    border-radius: 16px !important;
    align-items: start !important;
    margin-bottom: 14px !important;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .pkg-info {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }
  .pkg-info h3 {
    font-size: 0.98rem;
    margin: 0 0 4px;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .pkg-meta, .package-meta {
    gap: 8px;
    font-size: 0.76rem;
    margin-bottom: 8px;
    flex-wrap: wrap;
  }
  .pkg-bullets {
    margin: 0 0 8px;
  }
  .pkg-bullets li {
    font-size: 0.78rem;
    line-height: 1.35;
    margin-bottom: 4px;
    padding-left: 14px;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .pkg-bullets li::before {
    width: 5px;
    height: 5px;
    top: 6px;
  }
  .pkg-price, .package-price {
    margin-top: 4px;
  }
  .pkg-price b, .package-price b {
    font-size: 1.15rem;
  }
  .pkg-price s, .package-price del {
    font-size: 0.76rem;
  }
  .pkg-actions, .package-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    width: 88px !important;
    min-width: 88px !important;
    max-width: 88px !important;
    flex-shrink: 0 !important;
  }
  .pkg-thumb-box {
    order: 1 !important;
    width: 88px !important;
    min-width: 88px !important;
    max-width: 88px !important;
    height: 72px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 3px 8px rgba(15, 23, 42, 0.08) !important;
  }
  .pkg-thumb-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }
  .pkg-actions .btn {
    order: 2 !important;
    width: 88px !important;
    min-width: 88px !important;
    height: 32px !important;
    padding: 0 8px !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }
  .pkg-view {
    order: 3 !important;
    font-size: 0.74rem !important;
    text-align: center !important;
    padding: 2px 0 !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    color: var(--primary) !important;
    font-weight: 600 !important;
    display: block !important;
    width: 100% !important;
  }
  .cat-head {
    margin-bottom: 12px;
  }
  .cat-head h2 {
    font-size: 1.2rem;
    margin-bottom: 4px;
  }
  .cat-head p {
    font-size: 0.82rem;
  }
  .rail {
    grid-template-columns: 1fr;
    position: static;
    margin-top: 20px;
  }
  .promise-card, .cart-card {
    padding: 16px 14px;
    border-radius: 16px;
  }
  .form-grid2, .form-grid3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .cart-bar { display: none !important; }

  /* Mobile Modals */
  .modal-overlay {
    padding: 12px;
  }
  .modal {
    border-radius: 18px;
    max-height: 92vh;
    width: 100%;
  }
  .modal-banner {
    padding: 16px 14px 12px;
  }
  .modal-banner h3 {
    padding-right: 36px;
    font-size: 1.1rem;
  }
  .modal-close {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
  }
  .modal-body {
    padding: 14px;
  }
  .modal-highlight {
    padding: 8px 10px;
    font-size: 0.8rem;
  }
  .modal-block {
    margin-bottom: 12px;
  }
  .modal-block h4 {
    font-size: 0.88rem;
  }
  .modal-block li {
    font-size: 0.82rem;
    padding-left: 18px;
  }
  .modal-actions {
    margin-top: 12px;
  }
}

@media (max-width: 480px) {
  .svc-grid, .svc-grid.other { grid-template-columns: 1fr; gap: 14px; }
  .svc-card {
    padding: 16px;
  }
  .svc-card-header {
    top: 24px;
    left: 24px;
    right: 24px;
  }
  .svc-badge {
    padding: 4px 10px;
    font-size: 0.72rem;
  }
  .svc-price-badge {
    padding: 4px 10px;
    font-size: 0.74rem;
  }
  .svc-card-media {
    height: 150px;
  }
  .svc-card-media .svc-icon {
    width: 38px;
    height: 38px;
    bottom: 10px;
    right: 10px;
  }
  .svc-card-media .svc-icon .icon {
    width: 18px;
    height: 18px;
  }
  .svc-card h4 {
    font-size: 1.1rem;
  }
  .svc-card-sub {
    font-size: 0.84rem;
    line-height: 1.4;
    min-height: auto;
    -webkit-line-clamp: unset;
    display: block;
  }
  .trust-row { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
}

/* ============================================================
   ULTRA PRO AI CHATBOT WIDGET
   ============================================================ */
.hg-chatbot-root {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  z-index: 999;
}

/* Tooltip speech bubble */
.hg-chat-tooltip {
  position: fixed;
  left: 24px;
  right: auto;
  bottom: 92px;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 20px 20px 20px 6px;
  font-size: 0.8rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
  display: none;
  align-items: center;
  gap: 8px;
  z-index: 240;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: hgTooltipFloat 3s ease-in-out infinite;
}

.hg-chat-tooltip.show {
  display: flex;
}

.hg-chat-tooltip.hidden {
  display: none !important;
}

.tooltip-sparkle {
  font-size: 1rem;
}

.tooltip-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  line-height: 1;
  padding: 0 2px;
  cursor: pointer;
  margin-left: 4px;
}

.tooltip-close:hover {
  color: white;
}

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

/* Floating Trigger Button on the LEFT */
.hg-chat-trigger {
  position: fixed;
  left: 24px;
  right: auto;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #0284c7);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.38);
  cursor: pointer;
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  outline: none;
}

.hg-chat-trigger:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.5);
}

.trigger-inner {
  position: relative;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trigger-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.trigger-icon .icon {
  width: 28px;
  height: 28px;
}

.trigger-close-icon {
  display: none;
  align-items: center;
  justify-content: center;
}

.trigger-close-icon .icon {
  width: 22px;
  height: 22px;
}

.hg-chat-trigger.active .trigger-icon {
  display: none;
}

.hg-chat-trigger.active .trigger-close-icon {
  display: flex;
}

.hg-chat-trigger.active {
  background: #1e293b;
  box-shadow: 0 10px 25px rgba(30, 41, 59, 0.35);
}

.trigger-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 99, 235, 0.5);
  animation: hgPulseWave 2.2s infinite;
  pointer-events: none;
}

@keyframes hgPulseWave {
  0% { transform: scale(0.95); opacity: 0.8; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

.trigger-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background: #0f172a;
  color: #38bdf8;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 2px 5px;
  border-radius: 999px;
  border: 1.5px solid white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Chat Window on the LEFT */
.hg-chat-window {
  position: fixed;
  left: 24px;
  right: auto;
  bottom: 94px;
  width: 390px;
  height: 590px;
  max-height: calc(100vh - 120px);
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(30, 58, 138, 0.08);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: hgChatPop 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.hg-chat-window.hidden {
  display: none !important;
}

@keyframes hgChatPop {
  0% { opacity: 0; transform: translateY(18px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Chat Header */
.hg-chat-header {
  background: linear-gradient(135deg, #18243d 0%, #233354 100%);
  color: white;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hg-chat-avatar-wrap {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hg-chat-avatar .icon {
  width: 24px;
  height: 24px;
  color: #ffd166;
}

.hg-online-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #18243d;
}

.hg-chat-meta {
  flex: 1;
  min-width: 0;
}

.hg-chat-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hg-chat-title-row h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.01em;
}

.hg-ai-tag {
  background: rgba(255, 209, 102, 0.2);
  color: #ffd166;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: 6px;
  border: 1px solid rgba(255, 209, 102, 0.35);
}

.hg-chat-sub {
  margin: 2px 0 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hg-chat-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hg-header-btn {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.hg-header-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.hg-header-btn .icon {
  width: 15px;
  height: 15px;
}

/* Quick Bar (Top Carousel) */
.hg-chat-quickbar {
  display: flex;
  gap: 6px;
  padding: 8px 12px;
  background: #f8fafc;
  border-bottom: 1px solid #edf2f7;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex-shrink: 0;
}

.hg-chat-quickbar::-webkit-scrollbar {
  display: none;
}

.hg-quick-pill {
  background: white;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
}

.hg-quick-pill:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: var(--primary);
  transform: translateY(-1px);
}

/* Chat Message Body */
.hg-chat-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fbfcfe;
}

.hg-chat-body::-webkit-scrollbar {
  width: 5px;
}

.hg-chat-body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

/* Message Rows */
.hg-msg {
  display: flex;
  gap: 8px;
  max-width: 92%;
  animation: hgMsgFade 0.2s ease;
}

@keyframes hgMsgFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.hg-msg-user {
  align-self: flex-end;
  flex-direction: column;
  align-items: flex-end;
}

.hg-msg-user .hg-msg-bubble {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  border-radius: 18px 18px 4px 18px;
  padding: 10px 14px;
  font-size: 0.88rem;
  line-height: 1.45;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.hg-msg-bot {
  align-self: flex-start;
  display: flex;
  gap: 8px;
  width: 100%;
}

.hg-bot-avatar-small {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #18243d;
  color: #ffd166;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.hg-bot-avatar-small .icon {
  width: 16px;
  height: 16px;
}

.hg-bot-content-wrap {
  flex: 1;
  min-width: 0;
}

.hg-bubble-bot {
  background: white;
  color: #1e293b;
  border: 1px solid #e2e8f0;
  border-radius: 18px 18px 18px 4px;
  padding: 12px 14px;
  font-size: 0.86rem;
  line-height: 1.5;
  box-shadow: 0 4px 12px rgba(18, 28, 48, 0.05);
}

.hg-bubble-bot .md-h4 {
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 6px 0;
}

.hg-bubble-bot .md-h5 {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
  margin: 10px 0 4px 0;
}

.hg-bubble-bot .md-li {
  margin-left: 14px;
  margin-bottom: 3px;
}

.hg-bubble-bot .md-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

.hg-msg-time {
  font-size: 0.68rem;
  color: #94a3b8;
  margin-top: 3px;
  display: inline-block;
  padding: 0 4px;
}

/* Service Card inside Chat Bubble */
.hg-svc-card {
  margin-top: 10px;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hg-svc-thumb-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #e2e8f0;
}

.hg-svc-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hg-svc-arrival {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(24, 36, 61, 0.85);
  color: #ffd166;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 4px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.hg-svc-arrival .icon {
  width: 9px;
  height: 9px;
}

.hg-svc-details {
  flex: 1;
  min-width: 0;
}

.hg-svc-title {
  font-weight: 800;
  font-size: 0.86rem;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hg-svc-price {
  font-size: 0.78rem;
  color: #64748b;
  margin: 2px 0 6px;
}

.hg-svc-price b {
  color: var(--primary);
  font-size: 0.86rem;
}

.hg-svc-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.hg-btn-svc-book {
  background: var(--primary);
  color: white;
  padding: 4px 9px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease;
}

.hg-btn-svc-book:hover {
  background: #1d4ed8;
}

.hg-btn-svc-wa {
  background: #25d366;
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hg-btn-svc-wa .icon {
  width: 12px;
  height: 12px;
}

/* Fallback CTA buttons */
.hg-fallback-cta {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.btn-wa-direct {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #25d366;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.btn-wa-direct .icon {
  width: 15px;
  height: 15px;
}

.btn-call-direct {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #18243d;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.btn-call-direct .icon {
  width: 14px;
  height: 14px;
}

/* Typing Indicator */
.hg-typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 16px;
  background: #f1f5f9;
  border-radius: 12px;
  align-self: flex-start;
  margin-left: 36px;
  font-size: 0.74rem;
  color: #64748b;
}

.hg-typing-indicator.hidden {
  display: none !important;
}

.hg-typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #94a3b8;
  animation: hgTypingBounce 1.4s infinite ease-in-out;
}

.hg-typing-dot:nth-child(1) { animation-delay: 0s; }
.hg-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.hg-typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes hgTypingBounce {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
}

/* Contextual Suggestion Chips */
.hg-chat-chips {
  padding: 6px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  max-height: 80px;
  overflow-y: auto;
  flex-shrink: 0;
}

.hg-chip-btn {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  color: #334155;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s ease;
  line-height: 1.3;
}

.hg-chip-btn:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: var(--primary);
  transform: translateY(-1px);
}

/* Chat Input Bar */
.hg-chat-inputbar {
  padding: 10px 14px;
  background: white;
  border-top: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.hg-input-field {
  flex: 1;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.86rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.hg-input-field:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.hg-mic-btn {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #475569;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
}

.hg-mic-btn:hover {
  background: #e2e8f0;
  color: var(--navy);
}

.hg-mic-btn.listening {
  background: #fee2e2;
  color: #ef4444;
  border-color: #fca5a5;
  animation: hgMicPulse 1.2s infinite;
}

@keyframes hgMicPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.hg-mic-btn .icon {
  width: 17px;
  height: 17px;
}

.hg-send-btn {
  background: linear-gradient(135deg, #2563eb, #0284c7);
  border: none;
  color: white;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.hg-send-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.hg-send-btn .icon {
  width: 16px;
  height: 16px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hg-chat-trigger {
    display: flex !important;
    position: fixed !important;
    left: 18px !important;
    right: auto !important;
    bottom: 20px !important;
    width: 48px !important;
    height: 48px !important;
    z-index: 250 !important;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35) !important;
  }
  .hg-chat-trigger .icon {
    width: 24px !important;
    height: 24px !important;
  }
  .hg-chat-tooltip {
    display: none !important;
  }
  .hg-chat-window {
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 85vh;
    max-height: 85vh;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.25);
  }
}

/* ============================================================
   DEDICATED CHECKOUT PAGE STYLES
   ============================================================ */
.checkout-section {
  padding: 36px 0 80px;
  min-height: 80vh;
}

.checkout-breadcrumbs {
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-breadcrumbs a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.checkout-breadcrumbs a:hover {
  text-decoration: underline;
}

.checkout-header {
  margin-bottom: 30px;
}

.checkout-header h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  color: #0f172a;
  margin-bottom: 8px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.checkout-header p {
  color: #475569;
  font-size: 1rem;
  margin: 0;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 980px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

.checkout-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(30, 58, 138, 0.08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  padding: 28px;
  margin-bottom: 24px;
  transition: box-shadow 0.2s ease;
}

.checkout-card:hover {
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.checkout-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(28, 34, 52, 0.07);
}

.checkout-card-head h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.checkout-card-head h3 .icon {
  width: 22px;
  height: 22px;
  color: #2563eb;
}

.checkout-badge-count {
  background: #eff6ff;
  color: #2563eb;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid #bfdbfe;
}

/* Cart Items on Checkout */
.checkout-items-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checkout-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: #f8fafc;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  gap: 16px;
  flex-wrap: wrap;
  transition: all 0.2s ease;
}

.checkout-item:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.checkout-item-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 220px;
}

.checkout-item-thumb {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  background: #dbeafe;
  border: 1px solid #bfdbfe;
  flex-shrink: 0;
}

.checkout-item-info h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px;
}

.checkout-item-sub {
  font-size: 0.8rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-item-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  padding: 3px 6px;
  gap: 10px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: none;
  background: #eff6ff;
  color: #2563eb;
  font-size: 1.1rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.qty-btn:hover {
  background: #2563eb;
  color: #ffffff;
}

.qty-val {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f172a;
  min-width: 20px;
  text-align: center;
}

.checkout-item-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  min-width: 80px;
  text-align: right;
}

.btn-remove-item {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  display: grid;
  place-items: center;
}

.btn-remove-item:hover {
  color: #ef4444;
  background: #fee2e2;
}

.btn-remove-item .icon {
  width: 18px;
  height: 18px;
}

/* Quick Add More Services Section */
.quick-add-box {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed #cbd5e1;
}

.quick-add-box h4 {
  font-size: 0.94rem;
  font-weight: 700;
  color: #334155;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.quick-add-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 12px;
}

.quick-add-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.quick-add-card:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.quick-add-info strong {
  display: block;
  font-size: 0.86rem;
  color: #0f172a;
  line-height: 1.25;
}

.quick-add-info span {
  font-size: 0.78rem;
  font-weight: 700;
  color: #2563eb;
}

.btn-quick-add {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 5px 10px;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-quick-add:hover {
  background: #2563eb;
  color: #ffffff;
}

/* Address Fields in Checkout */
.checkout-addr-toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  background: #f1f5f9;
  padding: 4px;
  border-radius: 12px;
  width: fit-content;
}

.checkout-addr-toggle button {
  border: none;
  background: transparent;
  padding: 8px 16px;
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  transition: all 0.18s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.checkout-addr-toggle button.active {
  background: #ffffff;
  color: #2563eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.live-detect-banner {
  background: linear-gradient(135deg, #eff6ff, #f0fdf4);
  border: 1.5px solid #bfdbfe;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.live-detect-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.live-detect-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #2563eb;
  color: #ffffff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.live-detect-icon .icon {
  width: 22px;
  height: 22px;
}

.btn-detect-gps {
  background: #2563eb;
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
  transition: background 0.2s, transform 0.15s;
}

.btn-detect-gps:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.form-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

@media (max-width: 600px) {
  .form-grid-3 {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
}

.form-group label span.req {
  color: #ef4444;
}

.form-control-input {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1.5px solid #cbd5e1;
  font-size: 0.92rem;
  color: #0f172a;
  background: #ffffff;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control-input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

/* Slots and Date Selector */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

.slot-card {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.slot-card:hover {
  border-color: #2563eb;
  background: #f0f7ff;
}

.slot-card.active {
  border-color: #2563eb;
  background: #eff6ff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.14);
}

.slot-card strong {
  font-size: 0.9rem;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.slot-card span {
  font-size: 0.78rem;
  color: #64748b;
}

/* Sticky Right Rail Summary */
.checkout-sidebar {
  position: sticky;
  top: 96px;
}

.checkout-summary-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(30, 58, 138, 0.1);
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
  padding: 28px;
}

.summary-bill-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.92rem;
  color: #475569;
  padding: 8px 0;
}

.summary-bill-row.total-row {
  border-top: 1.5px dashed #cbd5e1;
  margin-top: 12px;
  padding-top: 16px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.summary-free-tag {
  color: #10b981;
  font-weight: 800;
}

.btn-whatsapp-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  margin-top: 22px;
  text-align: center;
}

.btn-whatsapp-checkout:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.45);
  filter: brightness(1.05);
}

.btn-whatsapp-checkout .icon {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.checkout-trust-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}

.checkout-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: #64748b;
}

.checkout-trust-item .icon {
  width: 16px;
  height: 16px;
  color: #10b981;
  flex-shrink: 0;
}

/* Empty Cart State */
.checkout-empty-state {
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(30, 58, 138, 0.08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.checkout-empty-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #eff6ff;
  color: #2563eb;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}

.checkout-empty-icon .icon {
  width: 40px;
  height: 40px;
}

.checkout-empty-state h2 {
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 8px;
}

.checkout-empty-state p {
  color: #64748b;
  max-width: 420px;
  margin: 0 auto 24px;
}

/* ============================================================
   INNER PAGES MOBILE RESPONSIVE ENHANCEMENTS (Checkout & Service)
   ============================================================ */
@media (max-width: 768px) {
  /* Checkout Page Mobile */
  .checkout-section {
    padding: 20px 0 60px;
  }
  .checkout-header {
    margin-bottom: 20px;
  }
  .checkout-header h1 {
    font-size: 1.45rem;
    line-height: 1.25;
  }
  .checkout-header p {
    font-size: 0.86rem;
    line-height: 1.45;
  }
  .checkout-breadcrumbs {
    font-size: 0.8rem;
    margin-bottom: 14px;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .checkout-breadcrumbs::-webkit-scrollbar {
    display: none;
  }
  .checkout-card {
    padding: 18px 14px;
    border-radius: 16px;
    margin-bottom: 16px;
  }
  .checkout-card-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
  }
  .checkout-card-head h3 {
    font-size: 1.05rem;
  }
  .checkout-addr-toggle {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 0;
  }
  .checkout-addr-toggle button {
    width: 100%;
    justify-content: center;
    padding: 8px 6px;
    font-size: 0.82rem;
  }
  .checkout-item {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
  }
  .checkout-item-meta {
    width: 100%;
    min-width: 0;
    gap: 12px;
  }
  .checkout-item-thumb {
    width: 46px;
    height: 46px;
    border-radius: 10px;
  }
  .checkout-item-info h4 {
    font-size: 0.94rem;
    line-height: 1.3;
  }
  .checkout-item-sub {
    font-size: 0.78rem;
  }
  .checkout-item-controls {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px dashed #cbd5e1;
    gap: 10px;
  }
  .qty-stepper {
    padding: 2px 4px;
    gap: 6px;
  }
  .qty-btn {
    width: 28px;
    height: 28px;
    font-size: 1.05rem;
  }
  .qty-val {
    font-size: 0.86rem;
    min-width: 18px;
  }
  .checkout-item-price {
    font-size: 1rem;
    min-width: auto;
    text-align: center;
  }
  .quick-add-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .live-detect-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
  }
  .btn-detect-gps {
    width: 100%;
    justify-content: center;
    padding: 11px;
    font-size: 0.86rem;
  }
  .form-grid-2, .form-grid-3, .form-grid2, .form-grid3 {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
  .checkout-sidebar {
    position: static;
    margin-top: 16px;
  }
  .checkout-summary-card {
    padding: 18px 14px;
    border-radius: 16px;
  }
  .btn-whatsapp-checkout {
    padding: 14px;
    font-size: 0.98rem;
  }
  .checkout-empty-state {
    padding: 40px 16px;
  }
  .checkout-empty-state h2 {
    font-size: 1.35rem;
  }

  /* Legal Pages Mobile */
  .legal-page {
    padding-bottom: 120px !important;
  }
  .legal-hero {
    padding: 30px 0 20px;
  }
  .legal-hero h1 {
    font-size: 1.6rem;
    line-height: 1.25;
  }
  .legal-container {
    margin: 20px auto 0;
    padding: 0 14px;
  }
  .legal-card {
    padding: 20px 14px;
    border-radius: 16px;
  }
  .legal-badge-pill {
    font-size: 0.72rem;
    padding: 3px 10px;
    margin-bottom: 8px;
  }
  .legal-notice-box {
    padding: 12px 14px;
    font-size: 0.84rem;
    margin-bottom: 20px;
    border-radius: 10px;
  }
  .legal-timeline-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 12px 0;
  }
  .timeline-item {
    padding: 12px 14px;
  }
  .timeline-item strong, .timeline-item h4 {
    font-size: 0.94rem;
  }
  .timeline-item p {
    font-size: 0.82rem;
  }
  .legal-contact-card {
    padding: 14px 14px;
    font-size: 0.84rem;
    line-height: 1.6;
    border-radius: 10px;
    word-break: break-word;
  }
  .legal-section {
    margin-bottom: 20px;
  }
  .legal-section h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .legal-section p, .legal-section li {
    font-size: 0.88rem;
    line-height: 1.6;
  }
  .legal-section ul, .legal-section ol {
    padding-left: 18px;
  }
}

