/* =============================================================================
   SmartHomeSewa — Design System & Redesign CSS
   Premium, modern, trustworthy home-services brand
   ============================================================================= */

/* ── 1. DESIGN TOKENS ──────────────────────────────────────────────────────── */
:root {
  /* Colors */
  --c-primary:     #2563eb;
  --c-primary-dk:  #1d4ed8;
  --c-primary-lt:  #dbeafe;
  --c-accent:      #f97316;
  --c-accent-dk:   #ea6c0a;
  --c-teal:        #0d9488;
  --c-dark:        #0f172a;
  --c-dark-2:      #1e293b;
  --c-dark-3:      #334155;
  --c-gray:        #64748b;
  --c-gray-lt:     #94a3b8;
  --c-border:      #e2e8f0;
  --c-surface:     #f8fafc;
  --c-white:       #ffffff;

  /* Typography */
  --font-head:     'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body:     'Inter', 'Source Sans 3', sans-serif;

  /* Type scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  /* Spacing scale */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Radii */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   24px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(15,23,42,.08), 0 1px 2px rgba(15,23,42,.06);
  --shadow-md:  0 4px 16px rgba(15,23,42,.10), 0 2px 6px rgba(15,23,42,.06);
  --shadow-lg:  0 8px 32px rgba(15,23,42,.12), 0 4px 12px rgba(15,23,42,.08);
  --shadow-xl:  0 20px 48px rgba(15,23,42,.16), 0 8px 20px rgba(15,23,42,.10);
  --shadow-blue: 0 4px 20px rgba(37,99,235,.30);

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --dur: 220ms;
}

/* ── 2. RESETS & BASE ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--c-dark-2);
  background: var(--c-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  color: var(--c-dark);
  line-height: 1.2;
  font-weight: 700;
}

a { color: var(--c-primary); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--c-primary-dk); }

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

/* Hide the old fakeloader */
#fakeloader { display: none !important; }

/* ── 3. UTILITIES ──────────────────────────────────────────────────────────── */
.sh-container { max-width: 1200px; margin: 0 auto; padding: 0 var(--sp-6); }
.sh-section { padding: var(--sp-20) 0; }
.sh-section-sm { padding: var(--sp-16) 0; }

.sh-badge {
  display: inline-block;
  background: var(--c-primary-lt);
  color: var(--c-primary);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-3);
}

.sh-section-heading { text-align: center; margin-bottom: var(--sp-12); }
.sh-section-heading .badge { margin-bottom: var(--sp-2); }
.sh-section-heading h2 {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  color: var(--c-dark);
  margin-bottom: var(--sp-3);
}
.sh-section-heading p {
  color: var(--c-gray);
  font-size: var(--text-lg);
  max-width: 560px;
  margin: 0 auto;
}
.sh-section-heading.left { text-align: left; }
.sh-section-heading.left p { margin: 0; }

/* Buttons */
.sh-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.6875rem var(--sp-6);
  border-radius: var(--r-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  line-height: 1.5;
  white-space: nowrap;
}
.sh-btn-primary {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
  box-shadow: var(--shadow-blue);
}
.sh-btn-primary:hover {
  background: var(--c-primary-dk);
  border-color: var(--c-primary-dk);
  color: var(--c-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(37,99,235,.40);
}
.sh-btn-accent {
  background: var(--c-accent);
  color: var(--c-white);
  border-color: var(--c-accent);
}
.sh-btn-accent:hover {
  background: var(--c-accent-dk);
  border-color: var(--c-accent-dk);
  color: var(--c-white);
  transform: translateY(-1px);
}
.sh-btn-outline {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.sh-btn-outline:hover {
  background: var(--c-primary);
  color: var(--c-white);
}
.sh-btn-white {
  background: var(--c-white);
  color: var(--c-primary);
  border-color: var(--c-white);
}
.sh-btn-white:hover {
  background: var(--c-surface);
  color: var(--c-primary-dk);
}
.sh-btn-lg {
  font-size: var(--text-base);
  padding: 0.875rem var(--sp-8);
}

/* Divider */
.sh-divider {
  height: 4px;
  width: 48px;
  background: var(--c-primary);
  border-radius: var(--r-full);
  margin: var(--sp-4) auto var(--sp-6);
}
.sh-section-heading.left .sh-divider { margin-left: 0; }

/* ── 4. TOPBAR ─────────────────────────────────────────────────────────────── */
.sh-topbar {
  background: var(--c-dark);
  color: rgba(255,255,255,.75);
  font-size: var(--text-xs);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.sh-topbar .sh-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.sh-topbar-links, .sh-topbar-social {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  list-style: none;
  margin: 0;
  padding: 0;
}
.sh-topbar-links a, .sh-topbar-social a {
  color: rgba(255,255,255,.65);
  font-size: var(--text-xs);
  transition: color var(--dur) var(--ease);
}
.sh-topbar-links a:hover, .sh-topbar-social a:hover { color: var(--c-white); }
.sh-topbar-social a {
  width: 26px;
  height: 26px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.sh-topbar-social a:hover {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}
.sh-topbar-user { display: flex; align-items: center; gap: var(--sp-4); }
.sh-topbar-user a { color: rgba(255,255,255,.65); font-size: var(--text-xs); }
.sh-topbar-user a:hover { color: #fff; }
.sh-topbar-user .user-name { color: rgba(255,255,255,.5); }

/* ── 5. HEADER CONTACT STRIP ───────────────────────────────────────────────── */
.sh-header-strip {
  background: var(--c-white);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--c-border);
}
.sh-header-strip .sh-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}
.sh-header-logo img {
  height: 68px;
  width: auto;
}
.sh-header-info {
  display: flex;
  gap: var(--sp-8);
  align-items: center;
}
.sh-header-info-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.sh-header-info-icon {
  width: 44px;
  height: 44px;
  background: var(--c-primary-lt);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-size: var(--text-lg);
  flex-shrink: 0;
}
.sh-header-info-text { line-height: 1.35; }
.sh-header-info-text span {
  display: block;
  font-size: var(--text-xs);
  color: var(--c-gray-lt);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}
.sh-header-info-text a,
.sh-header-info-text p {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-dark-2);
  margin: 0;
  line-height: 1.4;
}
.sh-header-info-text a:hover { color: var(--c-primary); }
.sh-header-cta { display: flex; align-items: center; }

/* ── 6. NAVBAR ─────────────────────────────────────────────────────────────── */
.sh-navbar {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.sh-navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}
.sh-navbar .sh-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--sp-4);
}
.sh-nav-logo { display: none; }
.sh-nav-logo img { height: 48px; width: auto; }

/* Nav links */
.sh-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sh-nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-dark-2);
  border-radius: var(--r-sm);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
  white-space: nowrap;
}
.sh-nav-links > li > a:hover,
.sh-nav-links > li.active > a {
  color: var(--c-primary);
  background: var(--c-primary-lt);
}

/* Mega-menu */
.sh-nav-links > li.has-mega { position: relative; }
.sh-mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--sp-4);
  min-width: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
  transform: translateX(-50%) translateY(8px);
}
.sh-nav-links > li.has-mega:hover .sh-mega-menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.sh-mega-menu a {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--text-sm);
  color: var(--c-dark-2);
  border-radius: var(--r-sm);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.sh-mega-menu a:hover {
  background: var(--c-primary-lt);
  color: var(--c-primary);
}
.sh-mega-menu a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-primary);
  opacity: .4;
  flex-shrink: 0;
}

/* Nav CTA + search */
.sh-nav-right {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.sh-nav-search-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
  color: var(--c-gray);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  background: var(--c-white);
}
.sh-nav-search-btn:hover { border-color: var(--c-primary); color: var(--c-primary); }

/* Mobile hamburger */
.sh-nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  background: transparent;
  padding: 0;
}
.sh-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-dark-2);
  border-radius: var(--r-full);
  transition: all var(--dur) var(--ease);
}
.sh-nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sh-nav-toggle.open span:nth-child(2) { opacity: 0; }
.sh-nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 7. HERO / BANNER ──────────────────────────────────────────────────────── */
.sh-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-dark);
}
.sh-hero-slide {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.sh-hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,.85) 0%, rgba(37,99,235,.55) 100%);
  z-index: 1;
}
.sh-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: var(--sp-16) 0;
}
.sh-hero-content .sh-badge {
  background: rgba(37,99,235,.25);
  color: #93c5fd;
  border: 1px solid rgba(147,197,253,.3);
  backdrop-filter: blur(8px);
}
.sh-hero-content h1 {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-6xl));
  color: var(--c-white);
  margin: var(--sp-3) 0 var(--sp-4);
  line-height: 1.1;
}
.sh-hero-content p {
  color: rgba(255,255,255,.8);
  font-size: var(--text-lg);
  margin-bottom: var(--sp-8);
  max-width: 500px;
}
.sh-hero-btns {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* Owl carousel overrides for hero */
#sh-banner-slider .owl-dots { position: absolute; bottom: var(--sp-6); left: 50%; transform: translateX(-50%); z-index: 10; }
#sh-banner-slider .owl-dot span {
  width: 8px; height: 8px; background: rgba(255,255,255,.4) !important;
  border-radius: var(--r-full); margin: 0 4px; transition: all var(--dur);
}
#sh-banner-slider .owl-dot.active span { background: var(--c-white) !important; width: 24px; }

/* ── 8. APPOINTMENT FORM ───────────────────────────────────────────────────── */
.sh-appointment-section {
  background: var(--c-surface);
  padding: var(--sp-16) 0;
  border-bottom: 1px solid var(--c-border);
}
.sh-appointment-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-8);
  max-width: 900px;
  margin: 0 auto;
}
.sh-appointment-card h2 {
  text-align: center;
  font-size: var(--text-2xl);
  margin-bottom: var(--sp-6);
  color: var(--c-primary);
}
.sh-appointment-card .form-control {
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 0.625rem var(--sp-3);
  font-size: var(--text-sm);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  background: var(--c-surface);
}
.sh-appointment-card .form-control:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
  outline: none;
  background: var(--c-white);
}
.sh-appointment-card label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--c-dark-3);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: var(--sp-1);
  display: block;
}
.sh-fee-notice {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: var(--r-sm);
  padding: var(--sp-3) var(--sp-4);
  color: #c2410c;
  font-weight: 600;
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

/* ── 9. SERVICES SECTION ───────────────────────────────────────────────────── */
.sh-services-section {
  background: var(--c-surface);
  padding: var(--sp-20) 0;
}
.sh-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
}
.sh-service-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  position: relative;
}
.sh-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--c-primary);
}
.sh-service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.sh-service-card-body {
  padding: var(--sp-5);
}
.sh-service-card-body h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--sp-2);
}
.sh-service-card-body p {
  font-size: var(--text-sm);
  color: var(--c-gray);
  margin-bottom: var(--sp-4);
  line-height: 1.6;
}
.sh-service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-teal));
  transform: scaleX(0);
  transition: transform var(--dur) var(--ease);
}
.sh-service-card:hover::after { transform: scaleX(1); }

/* ── 10. WHY CHOOSE US ─────────────────────────────────────────────────────── */
.sh-features-section {
  background: var(--c-white);
  padding: var(--sp-20) 0;
}
.sh-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-6);
}
.sh-feature-card {
  text-align: center;
  padding: var(--sp-8) var(--sp-5);
  border-radius: var(--r-xl);
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.sh-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-primary);
  background: var(--c-white);
}
.sh-feature-card-icon {
  width: 72px;
  height: 72px;
  background: var(--c-primary-lt);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  transition: background var(--dur) var(--ease);
}
.sh-feature-card:hover .sh-feature-card-icon {
  background: var(--c-primary);
}
.sh-feature-card-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: none;
  transition: filter var(--dur) var(--ease);
}
.sh-feature-card:hover .sh-feature-card-icon img {
  filter: brightness(0) invert(1);
}
.sh-feature-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--sp-2);
}
.sh-feature-card p {
  font-size: var(--text-sm);
  color: var(--c-gray);
  line-height: 1.65;
  margin: 0;
}

/* ── 11. STATS COUNTER ─────────────────────────────────────────────────────── */
.sh-stats-section {
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-dark-2) 50%, #162032 100%);
  padding: var(--sp-16) 0;
  position: relative;
  overflow: hidden;
}
.sh-stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563eb' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.sh-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  position: relative;
  z-index: 1;
}
.sh-stat-item {
  text-align: center;
  padding: var(--sp-6);
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.sh-stat-item:hover {
  background: rgba(37,99,235,.15);
  border-color: rgba(37,99,235,.4);
}
.sh-stat-icon {
  width: 56px;
  height: 56px;
  background: rgba(37,99,235,.2);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
}
.sh-stat-icon img { width: 28px; height: 28px; object-fit: contain; }
.sh-stat-number {
  font-family: var(--font-head);
  font-size: clamp(var(--text-3xl), 3vw, var(--text-5xl));
  font-weight: 800;
  color: var(--c-white);
  line-height: 1;
  margin-bottom: var(--sp-1);
}
.sh-stat-number span { color: var(--c-primary); }
.sh-stat-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── 12. PRICING PLANS ─────────────────────────────────────────────────────── */
.sh-pricing-section {
  background: var(--c-surface);
  padding: var(--sp-20) 0;
}
.sh-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
}
.sh-pricing-card {
  background: var(--c-white);
  border: 2px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.sh-pricing-card:hover, .sh-pricing-card.featured {
  border-color: var(--c-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.sh-pricing-card.featured {
  background: linear-gradient(145deg, var(--c-primary) 0%, var(--c-primary-dk) 100%);
  color: var(--c-white);
}
.sh-pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: 18px;
  right: -22px;
  background: var(--c-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 32px;
  transform: rotate(45deg);
}
.sh-pricing-category {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-primary);
  margin-bottom: var(--sp-2);
}
.sh-pricing-card.featured .sh-pricing-category { color: rgba(255,255,255,.75); }
.sh-pricing-name {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--sp-4);
  color: var(--c-dark);
}
.sh-pricing-card.featured .sh-pricing-name { color: var(--c-white); }
.sh-pricing-price {
  margin-bottom: var(--sp-5);
}
.sh-pricing-price .amount {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--c-dark);
  line-height: 1;
}
.sh-pricing-card.featured .sh-pricing-price .amount { color: var(--c-white); }
.sh-pricing-price .currency {
  font-size: var(--text-xl);
  font-weight: 700;
  vertical-align: top;
  line-height: 1.8;
}
.sh-pricing-price .period {
  font-size: var(--text-sm);
  color: var(--c-gray);
  margin-top: var(--sp-1);
}
.sh-pricing-card.featured .sh-pricing-price .period { color: rgba(255,255,255,.65); }
.sh-pricing-divider {
  height: 1px;
  background: var(--c-border);
  margin: var(--sp-5) 0;
}
.sh-pricing-card.featured .sh-pricing-divider { background: rgba(255,255,255,.2); }
.sh-pricing-features {
  list-style: none;
  margin: 0 0 var(--sp-6);
  padding: 0;
  text-align: left;
}
.sh-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  padding: var(--sp-2) 0;
  font-size: var(--text-sm);
  color: var(--c-dark-3);
  border-bottom: 1px dashed var(--c-border);
}
.sh-pricing-features li:last-child { border-bottom: none; }
.sh-pricing-card.featured .sh-pricing-features li { color: rgba(255,255,255,.85); border-bottom-color: rgba(255,255,255,.15); }
.sh-pricing-features li::before {
  content: '✓';
  color: var(--c-teal);
  font-weight: 700;
  font-size: var(--text-sm);
  line-height: 1.6;
  flex-shrink: 0;
}
.sh-pricing-card.featured .sh-pricing-features li::before { color: rgba(255,255,255,.9); }

/* ── 13. PRODUCTS CAROUSEL ─────────────────────────────────────────────────── */
.sh-products-section {
  background: var(--c-white);
  padding: var(--sp-20) 0;
}
.sh-product-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  margin: var(--sp-2);
}
.sh-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-primary);
}
.sh-product-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 400ms var(--ease);
}
.sh-product-card:hover .sh-product-card-img { transform: scale(1.04); }
.sh-product-card-img-wrap { overflow: hidden; }
.sh-product-card-body {
  padding: var(--sp-4);
}
.sh-product-card-body h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--sp-1);
  color: var(--c-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sh-product-card-price {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--c-primary);
  margin-bottom: var(--sp-2);
}
.sh-product-card-desc {
  font-size: var(--text-xs);
  color: var(--c-gray);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: var(--sp-3);
}
.sh-products-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
.sh-products-nav-btn {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-5);
  border: 2px solid var(--c-primary);
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-primary);
  background: transparent;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.sh-products-nav-btn:hover { background: var(--c-primary); color: var(--c-white); }
.sh-products-nav-center {
  width: 40px;
  height: 40px;
  border: 2px solid var(--c-border);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gray);
  transition: all var(--dur) var(--ease);
}
.sh-products-nav-center:hover { border-color: var(--c-primary); color: var(--c-primary); }

/* ── 14. TESTIMONIALS ──────────────────────────────────────────────────────── */
.sh-testimonials-section {
  background: linear-gradient(160deg, var(--c-dark) 55%, var(--c-dark-2) 100%);
  padding: var(--sp-20) 0;
  position: relative;
  overflow: hidden;
}
.sh-testimonials-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,.25) 0%, transparent 70%);
  pointer-events: none;
}
.sh-testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
.sh-testimonials-left {}
.sh-testimonials-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sh-video-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  text-align: center;
  backdrop-filter: blur(8px);
}
.sh-video-play {
  width: 72px;
  height: 72px;
  background: var(--c-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  color: var(--c-white);
  font-size: var(--text-2xl);
  text-decoration: none;
  transition: all var(--dur) var(--ease);
  box-shadow: var(--shadow-blue);
}
.sh-video-play:hover { background: var(--c-primary-dk); color: var(--c-white); transform: scale(1.08); }
.sh-video-card h3 { color: var(--c-white); font-size: var(--text-xl); }
.sh-video-card p { color: rgba(255,255,255,.6); font-size: var(--text-sm); margin-top: var(--sp-2); }

.sh-testimonial-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  backdrop-filter: blur(4px);
}
.sh-testimonial-quote {
  color: rgba(255,255,255,.85);
  font-size: var(--text-base);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--sp-5);
  position: relative;
  padding-left: var(--sp-5);
}
.sh-testimonial-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -var(--sp-2);
  font-size: var(--text-4xl);
  color: var(--c-primary);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: .7;
}
.sh-testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--sp-4);
}
.sh-testimonial-stars i { color: #fbbf24; font-size: var(--text-sm); }
.sh-testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.sh-testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2);
  object-fit: cover;
}
.sh-testimonial-author-name {
  font-weight: 700;
  color: var(--c-white);
  font-size: var(--text-sm);
}
.sh-testimonial-author-role {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.5);
}

/* Testimonial slider arrows */
.sh-testimonials-section .owl-prev,
.sh-testimonials-section .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.1) !important;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: var(--text-lg) !important;
  transition: background var(--dur);
}
.sh-testimonials-section .owl-prev { left: -20px; }
.sh-testimonials-section .owl-next { right: -20px; }
.sh-testimonials-section .owl-prev:hover,
.sh-testimonials-section .owl-next:hover { background: var(--c-primary) !important; }

/* ── 15. BLOG ──────────────────────────────────────────────────────────────── */
.sh-blog-section {
  background: var(--c-surface);
  padding: var(--sp-20) 0;
}
.sh-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
}
.sh-blog-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.sh-blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sh-blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 400ms var(--ease);
}
.sh-blog-card:hover .sh-blog-card-img { transform: scale(1.04); }
.sh-blog-card-img-wrap { overflow: hidden; }
.sh-blog-card-body { padding: var(--sp-5); }
.sh-blog-card-meta {
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-3);
}
.sh-blog-card-meta span {
  font-size: var(--text-xs);
  color: var(--c-gray-lt);
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}
.sh-blog-card-meta i { color: var(--c-primary); }
.sh-blog-card-body h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--sp-2);
  line-height: 1.4;
}
.sh-blog-card-body h3 a { color: var(--c-dark); transition: color var(--dur) var(--ease); }
.sh-blog-card-body h3 a:hover { color: var(--c-primary); }
.sh-blog-card-body p {
  font-size: var(--text-sm);
  color: var(--c-gray);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}

/* ── 16. CTA BAND ──────────────────────────────────────────────────────────── */
.sh-cta-section {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dk) 60%, #1e3a8a 100%);
  padding: var(--sp-12) 0;
  position: relative;
  overflow: hidden;
}
.sh-cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  pointer-events: none;
}
.sh-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.sh-cta-content h2 {
  font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
  color: var(--c-white);
  margin-bottom: var(--sp-2);
}
.sh-cta-content p {
  color: rgba(255,255,255,.75);
  font-size: var(--text-base);
  margin: 0;
}

/* ── 17. FOOTER ────────────────────────────────────────────────────────────── */
.sh-footer {
  background: var(--c-dark);
  color: rgba(255,255,255,.7);
  padding-top: var(--sp-16);
}
.sh-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sh-footer-logo { margin-bottom: var(--sp-4); }
.sh-footer-logo img { height: 56px; width: auto; }
.sh-footer-about-text {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  margin-bottom: var(--sp-5);
}
.sh-footer-info { list-style: none; margin: 0 0 var(--sp-5); padding: 0; }
.sh-footer-info li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,.6);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.sh-footer-info li:last-child { border-bottom: none; }
.sh-footer-info li i {
  color: var(--c-primary);
  font-size: var(--text-base);
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}
.sh-footer-info li a { color: rgba(255,255,255,.7); transition: color var(--dur); }
.sh-footer-info li a:hover { color: var(--c-white); }

.sh-footer-widget-title {
  font-family: var(--font-head);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: var(--sp-5);
  position: relative;
  padding-bottom: var(--sp-3);
}
.sh-footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--c-primary);
  border-radius: var(--r-full);
}
.sh-footer-links { list-style: none; margin: 0; padding: 0; }
.sh-footer-links li { padding: var(--sp-1) 0; }
.sh-footer-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  transition: color var(--dur) var(--ease), gap var(--dur) var(--ease);
}
.sh-footer-links a::before {
  content: '›';
  font-size: var(--text-base);
  color: var(--c-primary);
  transition: transform var(--dur) var(--ease);
}
.sh-footer-links a:hover { color: var(--c-white); gap: var(--sp-3); }
.sh-footer-links a:hover::before { transform: translateX(2px); }

.sh-footer-news { list-style: none; margin: 0; padding: 0; }
.sh-footer-news li { padding: var(--sp-3) 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.sh-footer-news li:last-child { border-bottom: none; }
.sh-footer-news a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.7);
  line-height: 1.45;
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
  transition: color var(--dur);
}
.sh-footer-news a:hover { color: var(--c-white); }
.sh-footer-news .date { font-size: var(--text-xs); color: var(--c-primary); }

/* Newsletter */
.sh-newsletter-desc { font-size: var(--text-sm); color: rgba(255,255,255,.6); margin-bottom: var(--sp-4); line-height: 1.6; }
.sh-newsletter-form { display: flex; gap: 2px; margin-bottom: var(--sp-5); }
.sh-newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  padding: var(--sp-3) var(--sp-4);
  color: var(--c-white);
  font-size: var(--text-sm);
  outline: none;
  transition: border-color var(--dur);
}
.sh-newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.sh-newsletter-form input:focus { border-color: var(--c-primary); }
.sh-newsletter-form button {
  background: var(--c-primary);
  border: none;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: var(--sp-3) var(--sp-4);
  color: var(--c-white);
  cursor: pointer;
  transition: background var(--dur);
  font-size: var(--text-base);
}
.sh-newsletter-form button:hover { background: var(--c-primary-dk); }

.sh-footer-social {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.sh-footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  transition: all var(--dur) var(--ease);
}
.sh-footer-social a:hover { background: var(--c-primary); border-color: var(--c-primary); color: #fff; }

.sh-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) 0;
  font-size: var(--text-xs);
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.sh-footer-bottom a { color: rgba(255,255,255,.5); transition: color var(--dur); }
.sh-footer-bottom a:hover { color: var(--c-primary); }

/* ── 18. BACK TO TOP ───────────────────────────────────────────────────────── */
.sh-back-to-top {
  position: fixed;
  bottom: var(--sp-8);
  right: var(--sp-6);
  width: 44px;
  height: 44px;
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  box-shadow: var(--shadow-blue);
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--dur) var(--ease);
  z-index: 900;
  cursor: pointer;
  text-decoration: none;
}
.sh-back-to-top.visible { opacity: 1; transform: translateY(0); }
.sh-back-to-top:hover { background: var(--c-primary-dk); color: #fff; transform: translateY(-2px); }

/* ── 19. PAGE BANNERS (inner pages) ───────────────────────────────────────── */
.sh-page-banner {
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-dark-2) 100%);
  padding: var(--sp-16) 0;
  text-align: center;
}
.sh-page-banner h1 { color: var(--c-white); font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl)); margin-bottom: var(--sp-3); }
.sh-page-banner .breadcrumb { justify-content: center; background: transparent; padding: 0; margin: 0; }
.sh-page-banner .breadcrumb-item a { color: rgba(255,255,255,.6); }
.sh-page-banner .breadcrumb-item.active { color: var(--c-primary); }
.sh-page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ── 20. ALERTS & ERRORS ───────────────────────────────────────────────────── */
.sh-alert {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-left: 4px solid #ef4444;
  border-radius: var(--r-sm);
  padding: var(--sp-4);
  color: #991b1b;
  font-size: var(--text-sm);
  margin-bottom: var(--sp-4);
}

/* ── 21. SECTION FOOTER (See More / View All) ─────────────────────────────── */
.sh-section-cta {
  text-align: center;
  margin-top: var(--sp-10);
}

/* ── 22. SCROLL ANIMATIONS ─────────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .sh-fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 500ms var(--ease), transform 500ms var(--ease);
  }
  .sh-fade-up.in-view { opacity: 1; transform: translateY(0); }
  .sh-fade-up:nth-child(2) { transition-delay: 80ms; }
  .sh-fade-up:nth-child(3) { transition-delay: 160ms; }
  .sh-fade-up:nth-child(4) { transition-delay: 240ms; }
}
@media (prefers-reduced-motion: reduce) {
  .sh-fade-up { opacity: 1; transform: none; }
}

/* ── 23. RESPONSIVE ────────────────────────────────────────────────────────── */
@media (max-width: 1023px) {
  .sh-header-info { display: none; }
  .sh-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .sh-testimonials-grid { grid-template-columns: 1fr; }
  .sh-footer-top { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
}

@media (max-width: 767px) {
  .sh-topbar .sh-container { justify-content: center; }
  .sh-topbar-links { display: none; }
  .sh-header-strip { display: none; }

  /* Show logo in navbar on mobile */
  .sh-nav-logo { display: block; }

  .sh-nav-toggle { display: flex; }

  .sh-nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: var(--sp-20) var(--sp-6) var(--sp-6);
    gap: 4px;
    transform: translateX(-100%);
    transition: transform var(--dur) var(--ease);
    overflow-y: auto;
    z-index: 999;
  }
  .sh-nav-links.open { transform: translateX(0); }
  .sh-nav-links > li { width: 100%; }
  .sh-nav-links > li > a {
    width: 100%;
    padding: var(--sp-3) var(--sp-4);
    color: rgba(255,255,255,.85);
    border-radius: var(--r-sm);
    font-size: var(--text-base);
  }
  .sh-nav-links > li > a:hover, .sh-nav-links > li.active > a {
    background: rgba(37,99,235,.2);
    color: #93c5fd;
  }

  .sh-mega-menu {
    position: static;
    display: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: rgba(255,255,255,.05);
    border: none;
    border-radius: var(--r-sm);
    box-shadow: none;
    padding: var(--sp-2) var(--sp-4);
    grid-template-columns: 1fr;
    min-width: 0;
    width: 100%;
    margin-top: 4px;
  }
  .sh-mega-menu.open { display: grid; }
  .sh-mega-menu a { color: rgba(255,255,255,.7); font-size: var(--text-sm); }
  .sh-mega-menu a:hover { background: rgba(37,99,235,.2); color: #93c5fd; }

  .sh-mobile-close {
    position: absolute;
    top: var(--sp-5);
    right: var(--sp-5);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-sm);
    border: 1px solid rgba(255,255,255,.15);
    background: transparent;
    color: rgba(255,255,255,.7);
    cursor: pointer;
    font-size: var(--text-lg);
  }

  .sh-hero { min-height: 420px; }
  .sh-hero-content h1 { font-size: var(--text-3xl); }
  .sh-stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
  .sh-pricing-grid { grid-template-columns: 1fr 1fr; }
  .sh-blog-grid { grid-template-columns: 1fr; }
  .sh-footer-top { grid-template-columns: 1fr; gap: var(--sp-8); }
  .sh-footer-bottom { flex-direction: column; text-align: center; }
  .sh-cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 479px) {
  .sh-pricing-grid { grid-template-columns: 1fr; }
  .sh-stats-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
  .sh-hero-btns { flex-direction: column; }
  .sh-hero-btns .sh-btn { width: 100%; justify-content: center; }
}
