/* ============================================================
   Sanchit Enterprises — Main Stylesheet
   Brand: Deep Ocean Blue #0D47A1 | Bright Cyan #64B5F6 | WhatsApp Green #22C55E
   Fonts: Inter (body) | Poppins (headings)
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --brand-primary: #0D47A1;
  --brand-primary-dark: #0C3D8E;
  --brand-primary-light: #1565C0;
  --brand-cyan: #64B5F6;
  --brand-green: #22C55E;
  --brand-green-dark: #16A34A;
  --brand-orange: #F97316;

  --text-dark: #0f1f3d;
  --text-mid: #334155;
  --text-light: #64748b;
  --text-muted: #94a3b8;

  --bg-white: #ffffff;
  --bg-off: #f5f8ff;
  --bg-blue-50: #eff6ff;
  --bg-slate-50: #f8fafc;

  --border-light: #e2e8f0;
  --border-blue: #bfdbfe;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(13,71,161,0.08);
  --shadow-md: 0 4px 6px -1px rgba(13,71,161,0.10), 0 2px 4px -2px rgba(13,71,161,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(13,71,161,0.10), 0 4px 6px -4px rgba(13,71,161,0.06);
  --shadow-xl: 0 20px 25px -5px rgba(13,71,161,0.10), 0 8px 10px -6px rgba(13,71,161,0.06);
  --shadow-2xl: 0 25px 50px -12px rgba(13,71,161,0.25);

  --container-max: 1280px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.2; color: var(--text-dark); }
a { color: var(--brand-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brand-primary-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── Layout ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.site-wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.site-content { flex: 1; }
.text-center { text-align: center; }
.text-white { color: white; }

/* ── Announcement Strip ── */
.site-announcement-strip {
  background: #1565C0;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.site-announcement-strip a { color: white; font-weight: 700; text-decoration: underline; }
@media (max-width: 480px) {
  .site-announcement-strip { font-size: 0.625rem; padding: 0.25rem 0.75rem; }
}

/* ── Header / Navbar ── */
.site-header {
  background: var(--brand-primary);
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(13,71,161,.25);
  overflow: visible;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.75rem;
  gap: 0.5rem;
  overflow: visible;
}

/* Logo */
.site-branding { flex-shrink: 0; min-width: 0; }
.site-logo-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo-text svg { background: rgba(100,181,246,.2); border-radius: 10px; padding: 6px; border: 1px solid rgba(100,181,246,.3); flex-shrink: 0; }
.logo-name { font-family: var(--font-heading); font-weight: 900; font-size: 0.9375rem; display: block; white-space: nowrap; }
.logo-tag { font-size: 0.625rem; color: rgba(100,181,246,.9); letter-spacing: 0.1em; text-transform: uppercase; display: block; white-space: nowrap; }
.custom-logo-link img { height: 40px; width: auto; }

/* Desktop Nav — hidden on mobile */
.main-navigation { display: none !important; }
@media (min-width: 992px) { .main-navigation { display: flex !important; flex: 1; justify-content: center; } }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
  font-weight: 600;
}
.nav-menu .menu-item > a {
  color: white;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0;
  transition: color .2s;
  white-space: nowrap;
}
.nav-menu .menu-item > a:hover { color: var(--brand-cyan); }
.chevron { transition: transform .2s; }
.has-mega-menu:hover .chevron { transform: rotate(180deg); }

/* Mega Menu */
.has-mega-menu { position: relative; }
.mega-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: white;
  color: var(--text-dark);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--border-light);
  z-index: 9999;
  min-width: 480px;
  overflow: hidden;
}
.has-mega-menu:hover .mega-menu { display: block; }
.mega-menu-grid { display: grid; grid-template-columns: 1fr 1fr; }
.mega-col { padding: 0; }
.mega-col:first-child { border-right: 1px solid var(--border-light); }
.mega-col-heading {
  padding: 0.5rem 1rem;
  background: var(--bg-blue-50);
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mega-col-heading.problem { background: #fff7ed; color: #c2410c; }
.mega-col-heading.location { background: #f0fdf4; color: #15803d; }
.mega-col a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  color: var(--text-mid);
  font-weight: 500;
  border-bottom: 1px solid var(--bg-slate-50);
  transition: background .15s, color .15s;
}
.mega-col a:last-child { border-bottom: none; }
.mega-col a:hover { background: var(--bg-blue-50); color: var(--brand-primary); }

/* Header CTA Group */
.header-cta-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Hide WhatsApp + Call buttons on small screens — only show hamburger */
.header-cta-group .btn-whatsapp,
.header-cta-group .btn-call { display: none; }
@media (min-width: 640px) { .header-cta-group .btn-call { display: inline-flex; } }
@media (min-width: 992px) {
  .header-cta-group .btn-whatsapp { display: inline-flex; }
  .header-cta-group .btn-call { display: inline-flex; }
}

/* Cart always visible */
.btn-cart { position: relative; background: rgba(255,255,255,.1); color: white; width: 2.25rem; height: 2.25rem; border-radius: var(--radius-md); padding: 0; display: inline-flex !important; align-items: center; justify-content: center; }
.btn-cart:hover { background: rgba(255,255,255,.2); }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  width: 1rem; height: 1rem;
  background: #22c55e;
  border-radius: 50%;
  font-size: 0.5625rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-family: var(--font-sans);
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all .2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-size: 0.8125rem;
  padding: 0.5rem 0.75rem;
  height: 2rem;
}
.btn-sm { height: 1.875rem; font-size: 0.75rem; padding: 0.375rem 0.75rem; }
.btn-lg { height: 2.75rem; font-size: 0.9375rem; padding: 0.75rem 1.5rem; }
.btn-primary { background: var(--brand-primary); color: white; }
.btn-primary:hover { background: var(--brand-primary-light); color: white; }
.btn-outline { background: transparent; color: var(--brand-primary); border: 2px solid var(--brand-primary); }
.btn-outline:hover { background: var(--brand-primary); color: white; }
.btn-whatsapp { background: #22c55e; color: white; }
.btn-whatsapp:hover { background: #16a34a; color: white; }
.btn-call { background: rgba(255,255,255,.15); color: white; border: 1px solid rgba(255,255,255,.2); }
.btn-call:hover { background: rgba(255,255,255,.25); color: white; }
.btn-white-primary { background: white; color: var(--brand-primary); font-weight: 900; box-shadow: var(--shadow-lg); }
.btn-white-primary:hover { background: var(--bg-blue-50); color: var(--brand-primary); }
.btn-call-white { background: white; color: var(--brand-primary); border: none; }
.btn-call-white:hover { background: var(--bg-blue-50); }
.btn-whatsapp-hero { background: #22c55e; color: white; font-weight: 700; box-shadow: var(--shadow-lg); }
.btn-whatsapp-hero:hover { background: #16a34a; color: white; }
.btn-hero-call { border: 2px solid rgba(255,255,255,.5); color: white; background: transparent; }
.btn-hero-call:hover { background: rgba(255,255,255,.1); color: white; }
.btn-white-green { background: white; color: #15803d; font-weight: 900; }
.btn-white-green:hover { background: #f0fdf4; color: #15803d; }
.w-full { width: 100%; }

/* ── Mobile Hamburger Button ── */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  cursor: pointer;
  padding: 5px 5px;
  align-items: center;
  flex-shrink: 0;
  transition: background .2s;
}
.mobile-menu-toggle:hover { background: rgba(255,255,255,.25); }
@media (min-width: 992px) { .mobile-menu-toggle { display: none !important; } }
.mobile-menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all .3s ease;
  transform-origin: center;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ── Mobile Menu Drawer ── */
.mobile-menu {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: #0a3880;
  z-index: 99999;
  transition: right .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0,0,0,.4);
}
.mobile-menu.active { right: 0; }
@media (min-width: 992px) { .mobile-menu { display: none !important; } }

/* Backdrop */
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 99998;
  backdrop-filter: blur(2px);
}
.mobile-menu-backdrop.active { display: block; }

/* Mobile menu header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
}
.mobile-menu-logo {
  font-weight: 800;
  font-size: 1rem;
  color: white;
}
.mobile-menu-close {
  width: 2rem;
  height: 2rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.mobile-menu-close:hover { background: rgba(255,255,255,.2); }

.mobile-menu-inner { padding: 0.5rem 0 2rem; }
.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
  transition: background .15s;
}
.mobile-menu-link:hover { background: rgba(255,255,255,.08); color: white; }

.mobile-accordion { border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.875rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .15s;
}
.mobile-accordion-trigger:hover { background: rgba(255,255,255,.08); }
.mobile-accordion-trigger::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(147,197,253,.8);
  transition: transform .2s;
  flex-shrink: 0;
}
.mobile-accordion-trigger.active { background: rgba(255,255,255,.06); }
.mobile-accordion-trigger.active::after { content: '−'; }
.mobile-accordion-content { display: none; background: rgba(0,0,0,.15); }
.mobile-accordion-content.active { display: block; }
.mobile-accordion-content a {
  display: block;
  color: rgba(147,197,253,.9);
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem 0.625rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,.04);
  text-decoration: none;
  transition: color .15s, background .15s;
}
.mobile-accordion-content a:hover { color: white; background: rgba(255,255,255,.06); }
.mobile-section-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: var(--brand-cyan);
  padding: 0.75rem 1.25rem 0.25rem;
  display: block;
}
.mobile-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 0.5rem;
}
.mobile-cta-row .btn {
  width: 100%;
  height: 3rem;
  font-size: 0.9375rem;
  justify-content: center;
}

/* ── WhatsApp Float Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  background: #25d366;
  color: white;
  border-radius: var(--radius-full);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  font-weight: 700;
  font-size: 0.875rem;
  transition: all .3s;
  text-decoration: none;
}
.whatsapp-float:hover { background: #1ebe5d; transform: scale(1.05); box-shadow: 0 6px 30px rgba(37,211,102,.5); color: white; }
@media (max-width: 480px) { .whatsapp-float span { display: none; } .whatsapp-float { padding: 0.875rem; } }

/* ── Section Utilities ── */
.section { padding: 3rem 0; }
@media (min-width: 768px) { .section { padding: 4rem 0; } }
.section-header { margin-bottom: 2rem; }
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 0.5rem; }
.section-eyebrow { font-size: 0.6875rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; color: var(--brand-primary); margin-bottom: 0.25rem; }
.section-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 900; color: var(--text-dark); }
@media (min-width: 768px) { .section-title { font-size: 1.875rem; } }
.view-all-link { font-size: 0.875rem; font-weight: 700; color: var(--brand-primary); display: flex; align-items: center; gap: 0.25rem; }
.view-all-link:hover { color: var(--brand-primary-light); }
.bg-white { background: var(--bg-white); }
.bg-light-blue { background: var(--bg-off); }
.section-dark-gradient { background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light)); color: white; }
.section-dark-gradient .section-title { color: white; }

/* ── Hero Section ── */
.hero-section {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #1565C0 60%, #1976D2 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
}
@media (min-width: 768px) { .hero-section { padding: 4rem 0; } }
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle at 1px 1px, white 1.5px, transparent 0);
  background-size: 30px 30px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: 0; right: 0;
  width: 20rem; height: 20rem;
  border-radius: 50%;
  opacity: 0.1;
  background: radial-gradient(circle, #64B5F6, transparent 70%);
  transform: translate(30%, -30%);
  pointer-events: none;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .hero-inner { flex-direction: row; } }
.hero-content { flex: 1; text-align: center; }
@media (min-width: 768px) { .hero-content { text-align: left; } }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero-title { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 900; line-height: 1.1; color: white; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .hero-title { font-size: 3rem; } }
.hero-title-accent { color: var(--brand-cyan); }
.hero-subtitle { color: rgba(255,255,255,.75); font-size: 0.9375rem; margin-bottom: 1.5rem; max-width: 30rem; }
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 2rem; }
@media (min-width: 768px) { .hero-cta-group { justify-content: flex-start; } }
.hero-stats { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
@media (min-width: 768px) { .hero-stats { justify-content: flex-start; } }
.hero-stat { text-align: center; }
@media (min-width: 768px) { .hero-stat { text-align: left; } }
.hero-stat-value { display: block; font-size: 1.25rem; font-weight: 900; color: var(--brand-cyan); }
.hero-stat-label { display: block; font-size: 0.6875rem; color: rgba(255,255,255,.6); }

/* Hero Form Card */
.hero-form-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-2xl);
  width: 100%;
}
@media (min-width: 768px) { .hero-form-card { width: 20rem; flex-shrink: 0; } }
.hero-form-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 900; color: var(--brand-primary); margin-bottom: 0.25rem; }
.hero-form-subtitle { font-size: 0.75rem; color: var(--text-light); margin-bottom: 1rem; }

/* Consult Form */
.sanchit-consult-form { display: flex; flex-direction: column; gap: 0.75rem; }
.sanchit-consult-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.sanchit-consult-form input,
.sanchit-consult-form select {
  width: 100%;
  border: 1.5px solid var(--border-blue);
  border-radius: var(--radius-md);
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: white;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.sanchit-consult-form input:focus,
.sanchit-consult-form select:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(13,71,161,.15);
}
.btn-whatsapp-submit {
  width: 100%;
  background: #22c55e;
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background .2s;
}
.btn-whatsapp-submit:hover { background: #16a34a; }

/* ── Trust Bar ── */
.trust-bar { background: white; border-bottom: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
}
@media (min-width: 768px) { .trust-bar-inner { justify-content: space-between; } }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; color: var(--text-mid); padding: 0 0.75rem; }
.trust-icon { flex-shrink: 0; }

/* ── Category Cards ── */
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
@media (min-width: 768px) { .categories-grid { grid-template-columns: repeat(8, 1fr); } }
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 0.5rem;
  background: white;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-light);
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  color: var(--text-dark);
}
.category-card:hover { border-color: var(--brand-primary); box-shadow: var(--shadow-md); transform: translateY(-1px); color: var(--brand-primary); }
.cat-icon { font-size: 1.5rem; }
.cat-label { font-size: 0.625rem; font-weight: 700; line-height: 1.2; }
.cat-desc { font-size: 0.5625rem; color: var(--text-muted); line-height: 1.2; display: none; }
@media (min-width: 768px) { .cat-desc { display: block; } }

/* ── Stats Grid ── */
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card { background: var(--bg-off); border: 1px solid var(--bg-blue-50); border-radius: var(--radius-xl); padding: 1rem; text-align: center; }
.stat-icon { font-size: 1.5rem; margin-bottom: 0.25rem; }
.stat-value { font-size: 1.125rem; font-weight: 900; color: var(--brand-primary); font-family: var(--font-heading); }
.stat-label { font-size: 0.75rem; color: var(--text-light); margin-top: 0.125rem; }

/* ── Trust Cards ── */
.trust-cards { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .trust-cards { grid-template-columns: repeat(3, 1fr); } }
.trust-card { display: flex; align-items: flex-start; gap: 0.75rem; background: var(--bg-off); border-radius: var(--radius-xl); border: 1px solid var(--bg-blue-50); padding: 1rem; }
.trust-card-icon { font-size: 1.5rem; flex-shrink: 0; }
.trust-card-title { font-size: 0.875rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.25rem; }
.trust-card-desc { font-size: 0.75rem; color: var(--text-light); line-height: 1.5; }

/* ── Process Steps ── */
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
@media (min-width: 768px) { .process-grid { grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; } }
.process-step { text-align: center; position: relative; }
.process-icon { width: 3.5rem; height: 3.5rem; background: rgba(255,255,255,.15); backdrop-filter: blur(4px); border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; font-size: 1.5rem; border: 1px solid rgba(255,255,255,.2); }
.process-number { width: 1.25rem; height: 1.25rem; background: var(--brand-cyan); color: var(--brand-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.5rem; font-size: 0.625rem; font-weight: 900; }
.process-step h3 { font-size: 0.875rem; font-weight: 700; color: white; margin-bottom: 0.25rem; }
.process-step p { font-size: 0.75rem; color: rgba(147,197,253,1); line-height: 1.4; }
.process-connector { display: none; }
@media (min-width: 768px) { .process-connector { display: block; width: 2rem; border-top: 2px dashed rgba(100,181,246,.4); margin-top: 1.75rem; } }

/* ── Testimonials ── */
.sanchit-testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .sanchit-testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: var(--bg-off);
  border: 1.5px solid var(--border-blue);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
}
.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 0.625rem; }
.testimonial-text { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 0.75rem; font-style: italic; }
.testimonial-author { font-size: 0.8125rem; font-weight: 700; color: var(--text-dark); }

/* ── FAQ Accordion ── */
.faq-container { max-width: 48rem; }
.sanchit-faq-accordion { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: white; border-radius: var(--radius-lg); border: 1.5px solid var(--border-blue); overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: color .2s;
}
.faq-question:hover { color: var(--brand-primary); }
.faq-icon { font-size: 1.25rem; flex-shrink: 0; transition: transform .2s; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 1.25rem 1rem; }
.faq-answer.active { display: block; }
.faq-answer p { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; }

/* ── Dual CTA ── */
.dual-cta-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .dual-cta-grid { grid-template-columns: 1fr 1fr; } }
.cta-banner { border-radius: var(--radius-xl); padding: 1.25rem; display: flex; align-items: center; justify-content: space-between; box-shadow: var(--shadow-lg); }
.cta-banner-blue { background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light)); color: white; }
.cta-banner-green { background: linear-gradient(135deg, #15803d, #22c55e); color: white; }
.cta-eyebrow { font-size: 0.6875rem; font-weight: 700; opacity: .7; margin-bottom: 0.25rem; letter-spacing: 0.05em; text-transform: uppercase; }
.cta-title { font-size: 1.0625rem; font-weight: 900; line-height: 1.3; margin-bottom: 0.75rem; }
.cta-subtitle-text { font-size: 0.8125rem; font-weight: 500; opacity: .75; }
.cta-emoji { font-size: 3rem; opacity: .8; }

/* ── Areas Chips ── */
.areas-chips-large { display: flex; flex-wrap: wrap; gap: 0.625rem; justify-content: center; }
.area-chip-large { font-size: 0.875rem; color: var(--text-mid); background: var(--bg-off); border: 1.5px solid var(--border-light); padding: 0.375rem 0.875rem; border-radius: var(--radius-full); font-weight: 600; }
.footer-areas { padding: 1rem 0; border-top: 1px solid rgba(255,255,255,.1); margin-bottom: 1.5rem; }
.footer-areas-label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; color: rgba(255,255,255,.4); margin-bottom: 0.5rem; }
.footer-areas-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.area-chip { font-size: 0.625rem; color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); padding: 0.125rem 0.5rem; border-radius: var(--radius-full); }

/* ── Bottom CTA ── */
.section-bottom-cta { background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light)); color: white; }
.section-bottom-cta h2 { font-size: 1.5rem; font-weight: 900; color: white; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .section-bottom-cta h2 { font-size: 2rem; } }
.section-bottom-cta p { color: rgba(255,255,255,.75); font-size: 0.9375rem; margin-bottom: 1.5rem; }
.bottom-cta-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* ── Footer ── */
.site-footer { background: var(--brand-primary); color: white; padding: 3rem 0 1.5rem; border-top: 4px solid var(--brand-cyan); }
.footer-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .footer-top-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .footer-top-grid { grid-template-columns: repeat(7, 1fr); } }
.footer-brand { grid-column: span 2; }
@media (min-width: 1024px) { .footer-brand { grid-column: span 1; } }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.footer-logo-name { display: block; font-family: var(--font-heading); font-weight: 900; font-size: 0.875rem; }
.footer-logo-tag { display: block; font-size: 0.625rem; color: rgba(255,255,255,.5); letter-spacing: 0.1em; text-transform: uppercase; }
.footer-tagline { font-size: 0.75rem; color: rgba(255,255,255,.6); line-height: 1.5; margin-bottom: 0.75rem; }
.footer-brand-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.footer-col-title { font-size: 0.6875rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand-cyan); margin-bottom: 0.75rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.375rem; }
.footer-col ul li a { font-size: 0.75rem; color: rgba(255,255,255,.65); transition: color .15s; line-height: 1.4; }
.footer-col ul li a:hover { color: var(--brand-cyan); }
.footer-mid-row { display: grid; grid-template-columns: 1fr; gap: 2rem; padding: 2rem 0; border-top: 1px solid rgba(255,255,255,.1); margin-bottom: 1.5rem; }
@media (min-width: 768px) { .footer-mid-row { grid-template-columns: 1fr 1fr; } }
.quick-links-list { display: flex; flex-wrap: wrap; gap: 0.375rem 1rem; }
.quick-links-list a { font-size: 0.75rem; color: rgba(255,255,255,.65); transition: color .15s; }
.quick-links-list a:hover { color: var(--brand-cyan); }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.75rem; color: rgba(255,255,255,.7); }
.footer-contact-list li svg { flex-shrink: 0; margin-top: 2px; }
.footer-contact-list li a { color: inherit; font-weight: 600; transition: color .15s; }
.footer-contact-list li a:hover { color: var(--brand-cyan); }
.footer-bottom-bar { padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; gap: 0.5rem; align-items: center; }
@media (min-width: 768px) { .footer-bottom-bar { flex-direction: row; justify-content: space-between; } }
.footer-bottom-bar p { font-size: 0.6875rem; color: rgba(255,255,255,.4); }

/* ── WooCommerce Product Grid ── */
.woocommerce ul.products { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; list-style: none; margin: 0; padding: 0; }
@media (min-width: 768px) { .woocommerce ul.products { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .woocommerce ul.products.columns-4 { grid-template-columns: repeat(4, 1fr); } }
.featured-products-grid.woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .featured-products-grid.woocommerce ul.products { grid-template-columns: repeat(4, 1fr); } }
.woocommerce ul.products li.product {
  background: white;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
  display: flex;
  flex-direction: column;
}
.woocommerce ul.products li.product:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.woocommerce ul.products li.product a img { width: 100%; height: 11rem; object-fit: cover; transition: transform .5s; }
.woocommerce ul.products li.product:hover a img { transform: scale(1.05); }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 0.875rem; font-weight: 700; color: var(--text-dark); padding: 0.5rem 0.75rem 0; line-height: 1.3; }
.woocommerce ul.products li.product .price { font-size: 1rem; font-weight: 900; color: var(--brand-primary); padding: 0.25rem 0.75rem; }
.woocommerce ul.products li.product .price del { font-size: 0.75rem; color: var(--text-muted); font-weight: 400; }
.woocommerce ul.products li.product .button {
  display: block;
  width: calc(100% - 1.5rem);
  margin: auto 0.75rem 0.75rem;
  background: var(--brand-primary);
  color: white;
  border-radius: var(--radius-md);
  padding: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  transition: background .2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.woocommerce ul.products li.product .button:hover { background: var(--brand-primary-light); }
.woocommerce ul.products li.product .onsale {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: #ef4444;
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-sm);
}

/* WooCommerce WhatsApp Buy Button */
.sanchit-whatsapp-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #22c55e;
  color: white;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background .2s;
  margin: 0.75rem 0;
  width: 100%;
}
.sanchit-whatsapp-buy:hover { background: #16a34a; color: white; }

/* WooCommerce single product */
.woocommerce div.product { padding: 2rem 0; }
.woocommerce div.product .woocommerce-product-gallery { margin-bottom: 1.5rem; }
.woocommerce div.product .woocommerce-product-gallery__wrapper img { border-radius: var(--radius-xl); }
.woocommerce div.product .entry-summary .product_title { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 900; }
.woocommerce div.product .entry-summary p.price { font-size: 1.75rem; font-weight: 900; color: var(--brand-primary); }
.woocommerce div.product .entry-summary .cart button.single_add_to_cart_button {
  background: var(--brand-primary);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.woocommerce div.product .entry-summary .cart button.single_add_to_cart_button:hover { background: var(--brand-primary-light); }

/* Cart / Checkout */
.woocommerce .cart_totals, .woocommerce .woocommerce-checkout { padding: 1.5rem 0; }
.woocommerce table.shop_table { border-radius: var(--radius-lg); border: 1.5px solid var(--border-light); overflow: hidden; }
.woocommerce table.shop_table th { background: var(--bg-off); font-weight: 700; font-size: 0.8125rem; color: var(--text-dark); padding: 0.75rem 1rem; }
.woocommerce table.shop_table td { padding: 0.75rem 1rem; border-top: 1px solid var(--border-light); font-size: 0.875rem; }
.woocommerce .checkout_coupon, .woocommerce #payment { margin-top: 1.5rem; }
.woocommerce #place_order {
  background: var(--brand-primary) !important;
  color: white !important;
  border-radius: var(--radius-lg) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  padding: 0.875rem 2rem !important;
  width: 100%;
}

/* ── Service Page Templates ── */
.service-hero { background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light)); color: white; padding: 3rem 0; }
.service-hero-breadcrumb { font-size: 0.75rem; color: rgba(255,255,255,.5); margin-bottom: 1rem; display: flex; gap: 0.5rem; align-items: center; }
.service-hero-breadcrumb a { color: rgba(255,255,255,.75); }
.service-hero h1 { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; color: white; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .service-hero h1 { font-size: 2.5rem; } }
.service-hero p { color: rgba(255,255,255,.75); max-width: 40rem; font-size: 1rem; }
.service-cta-inline { display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap; }

.pricing-table { width: 100%; border-radius: var(--radius-lg); border: 1.5px solid var(--border-light); overflow: hidden; margin: 1.5rem 0; }
.pricing-table th { background: var(--brand-primary); color: white; padding: 0.75rem 1rem; text-align: left; font-size: 0.8125rem; font-weight: 700; }
.pricing-table td { padding: 0.75rem 1rem; border-top: 1px solid var(--border-light); font-size: 0.875rem; }
.pricing-table tr:nth-child(even) td { background: var(--bg-off); }
.price-highlight { font-weight: 900; color: var(--brand-primary); }

.process-steps-list { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.process-list-step { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem; background: var(--bg-off); border-radius: var(--radius-lg); border: 1px solid var(--border-light); }
.process-list-num { width: 2rem; height: 2rem; background: var(--brand-primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 0.875rem; flex-shrink: 0; }
.process-list-step h4 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 0.25rem; }
.process-list-step p { font-size: 0.8125rem; color: var(--text-light); }

/* ── Post & Archive Pages ── */
.page-article { padding: 3rem 0; }
.page-article-title { font-size: 2rem; font-weight: 900; margin-bottom: 1.5rem; }
.page-article-content { font-size: 0.9375rem; line-height: 1.8; color: var(--text-mid); max-width: 48rem; }
.page-article-content p { margin-bottom: 1rem; }
.page-article-content h2, .page-article-content h3 { font-family: var(--font-heading); margin: 1.5rem 0 0.75rem; color: var(--text-dark); }
.page-article-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.page-article-content li { margin-bottom: 0.25rem; }
.posts-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin: 2rem 0; }
@media (min-width: 768px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .posts-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card { background: white; border: 1.5px solid var(--border-light); border-radius: var(--radius-xl); overflow: hidden; }
.post-card-image img { width: 100%; height: 12rem; object-fit: cover; }
.post-card-body { padding: 1rem; }
.post-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.post-card-title a { color: var(--text-dark); }
.post-card-title a:hover { color: var(--brand-primary); }
.post-card-excerpt { font-size: 0.8125rem; color: var(--text-light); margin-bottom: 0.75rem; line-height: 1.5; }

/* Sidebar */
.with-sidebar { display: flex; gap: 2rem; }
.content-area { flex: 1; min-width: 0; }
.sidebar { width: 18rem; flex-shrink: 0; }
@media (max-width: 767px) { .with-sidebar { flex-direction: column; } .sidebar { width: 100%; } }
.sidebar-inner { position: sticky; top: 5rem; }
.widget { background: white; border: 1.5px solid var(--border-light); border-radius: var(--radius-xl); padding: 1rem; margin-bottom: 1.25rem; }
.widget-title { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--brand-primary); margin-bottom: 0.75rem; }

/* ── 404 & Search ── */
.error-404 { padding: 5rem 0; }
.error-icon { font-size: 4rem; margin-bottom: 1rem; }
.error-title { font-size: 2rem; font-weight: 900; margin-bottom: 0.75rem; }
.error-text { color: var(--text-light); margin-bottom: 1.5rem; max-width: 28rem; margin-left: auto; margin-right: auto; }
.error-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.no-results { padding: 3rem 0; }
.no-results h2 { font-size: 1.5rem; font-weight: 900; margin-bottom: 0.5rem; }
.no-results p { color: var(--text-light); margin-bottom: 1.5rem; }

/* ── Pagination ── */
.page-numbers { display: flex; flex-wrap: wrap; gap: 0.375rem; list-style: none; margin: 2rem 0; justify-content: center; }
.page-numbers li a, .page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all .2s;
}
.page-numbers li a { color: var(--text-mid); border: 1.5px solid var(--border-light); }
.page-numbers li a:hover { background: var(--brand-primary); color: white; border-color: var(--brand-primary); }
.page-numbers li span.current { background: var(--brand-primary); color: white; border: 1.5px solid var(--brand-primary); }

/* ── Breadcrumbs ── */
.woocommerce .woocommerce-breadcrumb { font-size: 0.8125rem; color: var(--text-light); padding: 0.75rem 0; }
.woocommerce .woocommerce-breadcrumb a { color: var(--brand-primary); }

/* ── Single Post ── */
.single-post-article { padding: 2rem 0; }
.single-post-header { margin-bottom: 2rem; }
.single-post-title { font-size: 1.75rem; font-weight: 900; margin-bottom: 0.5rem; }
.post-meta { font-size: 0.8125rem; color: var(--text-light); margin-bottom: 1rem; }
.post-featured-image img { border-radius: var(--radius-xl); margin-top: 1rem; }
.single-post-content { font-size: 0.9375rem; line-height: 1.8; color: var(--text-mid); }
.single-post-content p { margin-bottom: 1rem; }

/* ── Archive Header ── */
.archive-header { margin-bottom: 2rem; padding: 2rem 0; }
.archive-title { font-size: 2rem; font-weight: 900; }

/* ── Checkout Template ── */
.checkout-wrapper { padding: 2rem 1rem; }
.checkout-customer-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .checkout-customer-details { grid-template-columns: 1fr 1fr; }
}
.checkout-order-heading {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 1.5rem 0 1rem;
}
.checkout-trust-bar {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 1.5rem;
  background: var(--bg-off);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-blue);
}
.checkout-trust-bar span {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text-mid);
}

/* ── Responsive Utility ── */
@media (max-width: 767px) {
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group .btn { justify-content: center; }
  .section { padding: 2rem 0; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-connector { display: none; }
}

/* ============================================================
   WooCommerce Product Card (content-product.php)
   ============================================================ */
li.sanchit-product-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border-blue);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
li.sanchit-product-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}
.product-card-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-off);
}
.product-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
li.sanchit-product-card:hover .product-card-thumb img {
  transform: scale(1.04);
}
.product-badge {
  position: absolute;
  top: .5rem;
  font-size: .6875rem;
  font-weight: 800;
  padding: .2rem .5rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: .04em;
  z-index: 1;
}
.badge-sale {
  left: .5rem;
  background: var(--brand-orange);
  color: white;
}
.badge-best {
  right: .5rem;
  background: var(--brand-green);
  color: white;
}
.product-card-body {
  padding: .75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.product-card-cat {
  font-size: .6875rem;
  font-weight: 800;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0;
}
.product-card-body .woocommerce-loop-product__title {
  font-size: 1rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
}
.product-card-body .woocommerce-loop-product__title a {
  color: var(--text-dark);
  text-decoration: none;
}
.product-card-body .woocommerce-loop-product__title a:hover {
  color: var(--brand-primary);
}
.product-card-stars {
  font-size: .8125rem;
  color: #f59e0b;
}
.product-card-rating-count {
  font-size: .6875rem;
  color: var(--text-muted);
  margin-left: .25rem;
}
.product-card-price {
  margin-top: auto;
  padding-top: .25rem;
}
.product-card-actions {
  padding: 0 .75rem .75rem;
  display: flex;
  gap: .5rem;
}
.product-card-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .375rem;
  border-radius: var(--radius-sm);
  font-size: .75rem;
  font-weight: 700;
  padding: .5rem .5rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: background .2s, color .2s;
}
.btn-whatsapp-card {
  background: var(--brand-green);
  color: white;
}
.btn-whatsapp-card:hover {
  background: var(--brand-green-dark);
  color: white;
}
.btn-add-to-cart {
  background: var(--brand-primary);
  color: white;
}
.btn-add-to-cart:hover {
  background: var(--brand-primary-dark);
  color: white;
}


  /* =============================================================
     GLOBAL FUTURISTIC DESIGN SYSTEM ENHANCEMENTS
     ============================================================= */

  /* CSS Variables */
  :root {
    --primary: #0D47A1;
    --primary-dark: #0a3578;
    --primary-light: #1976D2;
    --accent: #22C55E;
    --accent-wa: #22C55E;
    --text: #0f172a;
    --text-muted: #64748b;
    --surface: #fff;
    --surface-alt: #f8faff;
    --border: #e2e8f0;
    --radius: 14px;
    --shadow: 0 4px 20px rgba(13,71,161,.10);
    --shadow-lg: 0 8px 32px rgba(13,71,161,.15);
    --transition: .2s ease;
  }

  /* ── Base Resets ── */
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--text); background: var(--surface); line-height: 1.6; -webkit-font-smoothing: antialiased; }
  img { max-width: 100%; height: auto; display: block; }

  /* ── Container ── */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(16px, 5vw, 40px); }

  /* ── Section Spacing ── */
  .section { padding: clamp(48px, 8vw, 96px) 0; }

  /* ── Section Titles ── */
  .section-title {
    font-size: clamp(22px, 4.5vw, 38px);
    font-weight: 900;
    color: var(--primary);
    margin: 0 0 0.5rem;
    line-height: 1.2;
  }
  .sp-section-sub {
    color: var(--text-muted);
    font-size: clamp(14px, 2vw, 16px);
    margin: 0 0 2.5rem;
  }
  .text-center { text-align: center; }

  /* ── Global Button Styles (site-wide) ── */
  .sanchit-btn, .btn-primary, .btn-wa {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 0.875rem 1.75rem; border-radius: 10px;
    font-weight: 700; font-size: 15px; text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer; border: none; white-space: nowrap;
  }
  .sanchit-btn:hover, .btn-primary:hover, .btn-wa:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
  .btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 14px rgba(13,71,161,.3); }
  .btn-wa { background: var(--accent-wa); color: #fff; box-shadow: 0 4px 14px rgba(34,197,94,.35); }

  /* ── Header — white with blue accent ── */
  .site-header {
    background: #fff !important;
    border-bottom: 3px solid #0D47A1;
    box-shadow: 0 2px 16px rgba(13,71,161,.10);
    position: sticky; top: 0; z-index: 1000;
    backdrop-filter: blur(8px);
  }
  /* Nav links must be DARK BLUE on the white header */
  .nav-menu .menu-item > a { color: #0D47A1 !important; font-weight: 700; }
  .nav-menu .menu-item > a:hover { color: #1976D2 !important; }
  .site-logo-text { color: #0D47A1 !important; }
  .site-name { color: #0D47A1 !important; }
  .site-tagline { color: #64748b !important; }
  .menu-toggle { color: #0D47A1 !important; }
  .menu-toggle span,
  .hamburger span { background: #0D47A1 !important; }
  .site-branding a { text-decoration: none; }
  .site-title { font-size: clamp(18px, 3vw, 22px); font-weight: 900; color: #0D47A1; }
  .site-description { font-size: 11px; color: #64748b; }

  /* ── Futuristic Card Styles ── */
  .card-futuristic {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    overflow: hidden;
  }
  .card-futuristic:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

  /* ── WhatsApp Float Button ── */
  .whatsapp-float {
    position: fixed; bottom: 20px; right: 20px; z-index: 9999;
    background: var(--accent-wa); color: #fff;
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(34,197,94,.5);
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
  }
  .whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(34,197,94,.6); }
  .whatsapp-float svg { width: 28px; height: 28px; }
  @keyframes wa-pulse { 0%,100%{box-shadow:0 4px 20px rgba(34,197,94,.5)} 50%{box-shadow:0 4px 30px rgba(34,197,94,.8),0 0 0 12px rgba(34,197,94,.08)} }
  .whatsapp-float { animation: wa-pulse 2.5s ease-in-out infinite; }

  /* ── Hero Section (global) ── */
  .hero-section, .sp-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    padding: clamp(48px, 10vw, 100px) 0;
    position: relative; overflow: hidden;
  }
  .hero-section::after, .sp-hero::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,.08) 0%, transparent 65%);
    pointer-events: none;
  }

  /* ── Pricing Tables ── */
  .sp-pricing-section { background: var(--surface-alt); }
  .sp-pricing-table thead th { font-size: 14px; text-transform: uppercase; letter-spacing: .5px; }
  .sp-pricing-table tbody tr { transition: background .15s; }
  .sp-pricing-table tbody tr:hover td { background: #f0f6ff !important; }

  /* ── Services Grid on Homepage ── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .service-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    text-align: center;
  }
  .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .service-card .service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
  .service-card h3 { font-size: 18px; font-weight: 800; color: var(--primary); margin: 0 0 8px; }
  .service-card p { font-size: 14px; color: var(--text-muted); margin: 0; }

  /* ── Trust Badge Bar ── */
  .trust-badges {
    display: flex; align-items: center; flex-wrap: wrap; gap: 1rem;
    justify-content: center; padding: 1rem 0;
  }
  .trust-badge { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: #334155; }
  .trust-badge .icon { font-size: 18px; }

  /* ── Breadcrumb ── */
  .sp-breadcrumb { display: flex; align-items: center; gap: 6px; margin-bottom: 1rem; font-size: 13px; opacity: .8; flex-wrap: wrap; }
  .sp-breadcrumb a { color: inherit; text-decoration: none; }
  .sp-breadcrumb a:hover { text-decoration: underline; }

  /* ── FAQ ── */
  .sp-faq-wrap { max-width: 52rem; margin: 0 auto; }
  .sp-faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 2rem; }
  .sp-faq-item { background: var(--surface); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(13,71,161,.06); list-style: none; }
  .sp-faq-item summary.sp-faq-q { list-style: none; display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; cursor: pointer; font-weight: 700; font-size: 15px; color: var(--primary); gap: 12px; transition: background .2s; user-select: none; }
  .sp-faq-item summary.sp-faq-q::-webkit-details-marker { display: none; }
  .sp-faq-item[open] summary.sp-faq-q { background: #f0f6ff; }
  .sp-faq-icon { font-size: 20px; font-weight: 400; flex-shrink: 0; transition: transform .25s; }
  .sp-faq-item[open] .sp-faq-icon { transform: rotate(45deg); }
  .sp-faq-a { padding: 0 20px 18px; }
  .sp-faq-a p { font-size: 14px; color: #334155; line-height: 1.7; margin: 0; }

  /* ── Responsive Utilities ── */
  @media (max-width: 479px) {
    .sp-hero-cta { flex-direction: column; align-items: flex-start; }
    .sp-btn { width: 100%; max-width: 300px; }
  }

  /* ── Footer Futuristic ── */
  .site-footer { background: #0a1628; color: rgba(255,255,255,.85); padding: 3rem 0 1.5rem; }
  .site-footer a { color: rgba(255,255,255,.75); text-decoration: none; transition: color .2s; }
  .site-footer a:hover { color: #fff; }
  .footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
  @media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
  .footer-brand-name { font-size: 20px; font-weight: 900; color: #fff; margin: 0 0 8px; }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2rem; padding-top: 1.25rem; font-size: 13px; color: rgba(255,255,255,.5); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; }
