/* ============================================================
   SRISAI FUTURE SOLUTIONS — REDESIGNED STYLE SYSTEM
   Warm • Local • Friendly ISP — Hyderabad / Tier 2 India
   Version 2.1
   ============================================================ */

/* ----------------------------------------------------------
   1. GOOGLE FONTS
   ---------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ----------------------------------------------------------
   2. DESIGN TOKENS
   ---------------------------------------------------------- */
:root {
  /* Brand Colors */
  --blue-900: #0A2540;
  --blue-700: #0E4080;
  --blue-500: #1565C0;
  --blue-400: #1976D2;
  --blue-300: #42A5F5;
  --blue-100: #E3F2FD;
  --blue-50: #F0F8FF;

  --orange-600: #E65100;
  --orange-500: #F57C00;
  --orange-400: #FF7A00;
  --orange-300: #FFA726;
  --orange-100: #FFF3E0;
  --orange-50: #FFFBF5;

  --green-500: #25D366;
  --green-dark: #128C7E;

  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #EEEEEE;
  --gray-300: #E0E0E0;
  --gray-500: #9E9E9E;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;

  /* Semantic Usage */
  --color-primary: var(--blue-500);
  --color-primary-dark: var(--blue-700);
  --color-primary-light: var(--blue-100);
  --color-accent: var(--orange-400);
  --color-accent-dark: var(--orange-600);
  --color-accent-light: var(--orange-100);

  --color-bg: var(--white);
  --color-bg-alt: var(--gray-50);
  --color-bg-blue-light: var(--blue-50);
  --color-bg-orange-light: var(--orange-50);

  --color-text: var(--gray-900);
  --color-text-medium: var(--gray-700);
  --color-text-light: var(--gray-600);
  --color-text-muted: var(--gray-500);

  /* Gradients */
  --gradient-orange: linear-gradient(135deg, #FF7A00 0%, #E65100 100%);
  --gradient-warm: linear-gradient(to bottom, #FFFFFF, #FFF6EE);
  --gradient-trust: linear-gradient(180deg, #0E4080 0%, #1565C0 100%);
  --gradient-brand-mix: linear-gradient(90deg, var(--blue-300), var(--orange-300));

  --gradient-hero: linear-gradient(135deg, #EBF5FF 0%, #FFF9F0 100%);


  /* Typography */
  --font-primary: 'Poppins', 'Inter', -apple-system, sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 2rem;
  --fs-4xl: 2.5rem;
  --fs-5xl: 3rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 2px 20px rgba(21, 101, 192, 0.08), 0 1px 4px rgba(0, 0, 0, 0.05);
  --shadow-card-hover: 0 8px 32px rgba(21, 101, 192, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-btn-orange: 0 4px 16px rgba(255, 122, 0, 0.35);
  --shadow-btn-blue: 0 4px 16px rgba(21, 101, 192, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 380ms cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Layout */
  --offer-bar-h: 40px;
  --navbar-h: 72px;
  --container-max: 1200px;
  --section-py: var(--space-20);
}

/* ----------------------------------------------------------
   3. RESET & BASE
   ---------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ----------------------------------------------------------
   4. LAYOUT UTILITIES
   ---------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.section {
  padding-block: var(--section-py);
}

.section--white {
  background: var(--white);
}

.section--gray {
  background: var(--gray-50);
}

.section--blue {
  background: var(--blue-50);
}

.section--orange {
  background: var(--orange-50);
}

.section--dark {
  background: var(--gradient-trust);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section__eyebrow {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

.section__title {
  font-size: clamp(var(--fs-2xl), 3.5vw, var(--fs-4xl));
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.section__title--white {
  color: var(--white);
}

.section__subtitle {
  font-size: var(--fs-lg);
  color: var(--color-text-medium);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
}

.section__subtitle--white {
  color: rgba(255, 255, 255, 0.85);
}

.text-orange {
  color: var(--color-accent);
}

.impact__grid,
.grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.why-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  width: 100%;
}

.why-strip__grid--4col {
  grid-template-columns: repeat(4, 1fr);
}

.text-blue {
  color: var(--color-primary);
}

/* ----------------------------------------------------------
   5. BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-base);
  font-weight: 700;
  transition: all var(--transition-slow);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

/* Primary — Orange */
.btn--orange {
  background: var(--gradient-orange);
  color: var(--white);
  box-shadow: var(--shadow-btn-orange);
  border-color: transparent;
}

.btn--orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 122, 0, 0.45);
}

/* Secondary — Blue outline */
.btn--blue-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--blue-outline:hover {
  background: var(--color-primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-blue);
}

/* White fill */
.btn--white {
  background: var(--white);
  color: var(--color-primary);
  border-color: var(--white);
  font-weight: 700;
}

.btn--white:hover {
  background: var(--blue-50);
  transform: translateY(-2px);
}

/* WhatsApp */
.btn--whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

/* Call button */
.btn--call {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--call:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: var(--fs-lg);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: var(--fs-sm);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(2px);
}

/* ----------------------------------------------------------
   6. NAVBAR
   ---------------------------------------------------------- */
.navbar {
  position: fixed;
  top: var(--offer-bar-h);
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-4) 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: all var(--transition-slow);
}

.navbar--scrolled {
  box-shadow: var(--shadow-md);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.navbar__logo-img {
  height: 64px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  border-radius: 4px;
}

.navbar__logo-text {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--blue-700);
  line-height: 1.1;
}

.navbar__logo-text span {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.navbar__link {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text-medium);
  padding: var(--space-1) 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
}

.navbar__link:hover,
.navbar__link--active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.navbar__phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-primary);
}

.navbar__phone svg {
  width: 14px;
  height: 14px;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  background: transparent;
  border: none;
  position: relative;
  z-index: 1002;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.navbar__hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.navbar__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.navbar__mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}

#js-nav-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.navbar__mobile-link {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--color-text-medium);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.navbar__mobile-menu .btn {
  color: var(--white) !important;
  font-weight: 700;
}

.navbar__mobile-link:hover {
  color: var(--color-primary);
}

/* ----------------------------------------------------------
   7. TOP OFFER BAR
   ---------------------------------------------------------- */
.offer-bar {
  background: var(--gradient-orange);
  color: var(--white);
  padding: 0 var(--space-6);
  font-size: var(--fs-sm);
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  height: var(--offer-bar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.offer-bar::-webkit-scrollbar {
  display: none;
}

.offer-bar__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.offer-bar a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  margin-left: var(--space-2);
}

/* ----------------------------------------------------------
   8. HERO SECTION — SPLIT LAYOUT
   ---------------------------------------------------------- */
.hero {
  background: var(--gradient-hero);
  padding-top: calc(var(--offer-bar-h) + var(--navbar-h) + var(--space-12));
  padding-bottom: var(--space-16);
  overflow: hidden;
  position: relative;
}

/* Soft decorative blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}


/* hero__content removed as it was empty */


.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  font-size: var(--fs-sm);
  font-weight: 700;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 122, 0, 0.2);
  margin-bottom: var(--space-5);
  animation: slideDown 0.6s ease both;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero__title {
  font-size: clamp(var(--fs-3xl), 4.5vw, var(--fs-5xl));
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: var(--space-5);
  animation: slideUp 0.7s 0.1s ease both;
}

.hero__title .accent {
  color: var(--color-accent);
}

.hero__title .blue {
  color: var(--color-primary);
}

.hero__subtitle {
  font-size: var(--fs-lg);
  color: var(--color-text-medium);
  line-height: 1.75;
  margin-bottom: var(--space-8);
  max-width: 420px;
  animation: slideUp 0.7s 0.2s ease both;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  animation: slideUp 0.7s 0.3s ease both;
}

.hero__trust-line {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-10);
  flex-wrap: wrap;
  animation: slideUp 0.7s 0.4s ease both;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text-medium);
}

.hero__trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Image column */
.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.9s 0.15s ease both;
}

.hero__image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Hero Image Slideshow ── */
.hero__slideshow {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  animation: heroFade 12s ease-in-out infinite;
}

/* Stagger: image 1 starts immediately, 2 after 4s, 3 after 8s */
.hero__slide--1 { animation-delay: 0s;  }
.hero__slide--2 { animation-delay: 4s;  }
.hero__slide--3 { animation-delay: 8s;  }

@keyframes heroFade {
  0%       { opacity: 0; }
  5%       { opacity: 1; }
  30%      { opacity: 1; }
  38%      { opacity: 0; }
  100%     { opacity: 0; }
}

/* Floating speed badge on hero image */
.hero__speed-badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  animation: floatUp 3s ease-in-out infinite;
}

.hero__speed-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__speed-badge-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.hero__speed-badge-text strong {
  display: block;
  font-size: var(--fs-base);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.hero__speed-badge-text span {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.hero__rating-badge {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-3);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--gray-900);
  animation: floatUp 3s ease-in-out infinite 1.5s;
}

.hero__stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.hero__stars svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ----------------------------------------------------------
   9. TRUST BAR
   ---------------------------------------------------------- */
.trust-bar {
  background: var(--color-primary);
  padding: var(--space-8) 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.trust-stat {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  justify-content: center;
  text-align: left;
  padding: var(--space-4) var(--space-6);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-stat:last-child {
  border-right: none;
}

.trust-stat__icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-stat__icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.trust-stat__value {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.trust-stat__value .orange {
  color: var(--orange-300);
}

.trust-stat__label {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* ----------------------------------------------------------
   10. WHY CHOOSE — ICON STRIPS
   ---------------------------------------------------------- */
.why-strip {
  background: var(--white);
}

.why-item {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all var(--transition-slow);
}

.why-item:hover {
  border-color: var(--blue-300);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.why-item__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
}

.why-item__icon--blue {
  background: var(--blue-100);
}

.why-item__icon--orange {
  background: var(--orange-100);
}

.why-item__icon--green {
  background: #E8F5E9;
}

.why-item__icon--purple {
  background: #F3E5F5;
}

.why-item__icon svg {
  width: 28px;
  height: 28px;
}

.why-item__icon--blue svg {
  color: var(--blue-500);
}

.why-item__icon--orange svg {
  color: var(--orange-500);
}

.why-item__icon--green svg {
  color: #388E3C;
}

.why-item__icon--purple svg {
  color: #7B1FA2;
}

.why-item__title {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.why-item__desc {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.65;
}

/* ----------------------------------------------------------
   11. SERVICES SECTION — IMAGE + TEXT CARDS
   ---------------------------------------------------------- */
.services {
  background: var(--gray-50);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

/* Full-width featured card spans all 3 columns */
.services__grid .service-card--featured {
  grid-column: 1 / -1;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-slow);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

/* Featured (full-width) card */
.service-card--featured {
  flex-direction: row;
}

.service-card--featured .service-card__img-wrap {
  width: 46%;
  flex-shrink: 0;
}

.service-card--featured .service-card__img-wrap img {
  height: 100%;
  min-height: 240px;
}

.service-card--featured .service-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-8) var(--space-8);
}

.service-card__img-wrap {
  overflow: hidden;
  position: relative;
}

.service-card__img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__img-wrap img {
  transform: scale(1.04);
}

.service-card__tag {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  background: var(--white);
  color: var(--color-primary);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.service-card__tag--orange {
  color: var(--orange-600);
}

.service-card__body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card__icon--blue {
  background: var(--blue-100);
  color: var(--blue-500);
}

.service-card__icon--orange {
  background: var(--orange-100);
  color: var(--orange-500);
}

.service-card__icon--green {
  background: #E8F5E9;
  color: #388E3C;
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
}

.service-card__title {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.3;
}

.service-card--featured .service-card__title {
  font-size: var(--fs-2xl);
}

.service-card__desc {
  font-size: var(--fs-sm);
  color: var(--color-text-medium);
  line-height: 1.7;
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.service-card__feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--color-text-medium);
}

.service-card__feature svg {
  width: 16px;
  height: 16px;
  color: var(--green-500);
  flex-shrink: 0;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-primary);
  margin-top: auto;
  padding-top: var(--space-2);
  transition: gap var(--transition-fast);
}

.service-card__link:hover {
  gap: var(--space-3);
}

.service-card__link svg {
  width: 14px;
  height: 14px;
}

/* ----------------------------------------------------------
   12. LOCAL TRUST SECTION
   ---------------------------------------------------------- */
.local-trust {
  background: var(--gradient-trust);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.local-trust::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.local-trust__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}


/* local-trust__content removed as it was empty */


.local-trust__eyebrow {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--orange-300);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.local-trust__title {
  font-size: clamp(var(--fs-2xl), 3vw, var(--fs-4xl));
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--space-5);
}

.local-trust__desc {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.local-trust__cities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.city-tag {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.local-trust__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Stats grid on right */
.local-trust__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.local-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  backdrop-filter: blur(8px);
}

.local-stat__value {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.local-stat__value .accent {
  color: var(--orange-300);
}

.local-stat__label {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  line-height: 1.4;
}

.local-stat__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-3);
}

.local-stat__icon svg {
  width: 26px;
  height: 26px;
  color: rgba(255, 255, 255, 0.92);
}

/* ----------------------------------------------------------
   13. HOW IT WORKS STEPS
   ---------------------------------------------------------- */
.how-it-works {
  background: var(--white);
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}

/* Connecting line between steps */
.steps__grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-300), var(--orange-300));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xl);
  font-weight: 800;
  margin: 0 auto var(--space-5);
  position: relative;
  transition: all var(--transition-slow);
}

.step__number--1 {
  background: var(--blue-100);
  color: var(--blue-500);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 4px var(--blue-100);
}

.step__number--2 {
  background: var(--orange-100);
  color: var(--orange-500);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 4px var(--orange-100);
}

.step__number--3 {
  background: #E8F5E9;
  color: #388E3C;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 4px #E8F5E9;
}

.step__number--4 {
  background: var(--blue-100);
  color: var(--blue-700);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 4px var(--blue-50);
}

.step:hover .step__number {
  transform: scale(1.1);
}

.step__title {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.step__desc {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ----------------------------------------------------------
   14. TESTIMONIALS
   ---------------------------------------------------------- */
.testimonials {
  background: var(--blue-50);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-slow);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.testimonial-card__quote {
  font-size: 3rem;
  color: var(--blue-100);
  line-height: 1;
  font-family: Georgia, serif;
  position: absolute;
  top: var(--space-5);
  right: var(--space-6);
}

.testimonial-card__stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: var(--space-4);
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.testimonial-card__text {
  font-size: var(--fs-base);
  color: var(--color-text-medium);
  line-height: 1.75;
  margin-bottom: var(--space-6);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-text);
}

.testimonial-card__location {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

/* ----------------------------------------------------------
   15. CTA BAND
   ---------------------------------------------------------- */
.cta-band {
  background: var(--orange-50);
  border-top: 1px solid rgba(255, 122, 0, 0.12);
  border-bottom: 1px solid rgba(255, 122, 0, 0.12);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-10);
  flex-wrap: wrap;
  padding-block: var(--space-12);
}

.cta-band__icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  background: rgba(255, 122, 0, 0.1);
  border: 2px solid rgba(255, 122, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-band__icon svg {
  width: 36px;
  height: 36px;
  color: var(--orange-500);
}

.cta-band__content {
  flex: 1;
}

.cta-band__eyebrow {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
}

.cta-band__title {
  font-size: clamp(var(--fs-2xl), 3vw, var(--fs-3xl));
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.cta-band__subtitle {
  font-size: var(--fs-base);
  color: var(--color-text-medium);
}

.cta-band__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

/* WhatsApp CTA side strip */
.whatsapp-strip {
  background: linear-gradient(135deg, #25D366, #128C7E);
  padding: var(--space-5) 0;
  overflow: hidden;
}

.whatsapp-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.whatsapp-strip__text {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--white);
  padding: 0 var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-3);
}

.whatsapp-strip__icon {
  width: 28px;
  height: 28px;
}

/* ----------------------------------------------------------
   16. FOOTER
   ---------------------------------------------------------- */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding-top: var(--space-16);
}

.footer__main {
  display: grid;
  grid-template-columns: 2fr 0.7fr 1fr 2fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.footer__logo-img {
  height: 64px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  border-radius: 4px;
}

.footer__logo-name {
  font-size: var(--fs-xl);
  font-weight: 800;
}

.footer__tagline {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: var(--space-6);
  max-width: 250px;
}

.footer__socials {
  display: flex;
  gap: var(--space-3);
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-base);
}

.footer__social-link:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
}

.footer__col-title {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--white);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer__contact-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer__contact-icon svg {
  width: 16px;
  height: 16px;
  color: var(--orange-300);
}

.footer__contact-text strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.footer__contact-text span,
.footer__contact-text a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition-fast);
}

.footer__contact-text a:hover {
  color: var(--orange-300);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-6);
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.4);
}

.footer__legal-links {
  display: flex;
  gap: var(--space-5);
}

.footer__legal-link {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition-fast);
}

.footer__legal-link:hover {
  color: var(--white);
}

/* ----------------------------------------------------------
   17. WHATSAPP FAB
   ---------------------------------------------------------- */
.whatsapp-fab {
  position: fixed;
  bottom: var(--space-8);
  left: var(--space-8);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  font-size: var(--fs-sm);
  font-weight: 700;
  transition: all var(--transition-slow);
  animation: fabIn 0.5s 1.5s ease both;
}

.whatsapp-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

/* Scroll to Top button */
.scroll-top {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  z-index: 900;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  padding: 0;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.scroll-top svg {
  width: 24px;
  height: 24px;
}

.whatsapp-fab svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

@keyframes fabIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----------------------------------------------------------
   18. SCROLL REVEAL
   ---------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 {
  transition-delay: 0.1s;
}

.reveal--delay-2 {
  transition-delay: 0.2s;
}

.reveal--delay-3 {
  transition-delay: 0.3s;
}

.reveal--delay-4 {
  transition-delay: 0.4s;
}

/* ----------------------------------------------------------
   19. NEW LAYOUT: TRUST STRIP & IMPACT SECTION & ANIMATIONS
   ---------------------------------------------------------- */
.trust-strip {
  background: linear-gradient(to right, #f8faff, #fff9f5);
  padding: var(--space-8) 0;
  border-top: 1px solid rgba(21, 101, 192, 0.08);
  border-bottom: 1px solid rgba(21, 101, 192, 0.08);
  position: relative;
  overflow: hidden;
}

.trust-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--blue-100) 0.5px, transparent 0.5px);
  background-size: 24px 24px;
  opacity: 0.3;
  pointer-events: none;
}

.trust-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  text-align: center;
  position: relative;
  z-index: 1;
}

.trust-strip__title {
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--blue-400);
}

.trust-strip__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

.trust-chip {
  background: var(--white);
  color: var(--blue-900);
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--white);
  transition: all var(--transition-base);
  cursor: default;
}

.trust-chip:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 24px rgba(21, 101, 192, 0.1);
  border-color: var(--blue-200);
  color: var(--color-primary);
}

.impact-section {
  padding: var(--section-py) 0;
  background: var(--white);
  position: relative;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  align-items: stretch;
  gap: var(--space-6);
}

@media (max-width: 1024px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

.impact__card {
  padding: var(--space-10);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base);
}

.impact__card--before {
  background: #fffafa;
  border: 1px solid #fee2e2;
  box-shadow: 0 4px 20px rgba(185, 28, 28, 0.03);
}

.impact__card--after {
  background: linear-gradient(165deg, #ffffff 0%, #f0f7ff 100%);
  border: 1px solid var(--blue-100);
  box-shadow: 0 10px 30px rgba(21, 101, 192, 0.08);
  position: relative;
}

.impact__card--after::after {
  content: 'PREMIUM CHOICE';
  position: absolute;
  top: -12px;
  right: 32px;
  background: var(--gradient-orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
}

.impact__card--no-badge::after {
  display: none;
}

.impact__icon {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}

.impact__icon--red {
  color: #ef4444;
}

.impact-section--animated .impact__icon--red circle,
.impact-section--animated .impact__icon--red line {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: drawJerky 8s infinite;
}

.impact__icon--green {
  color: var(--color-primary);
}

.impact-section--animated .impact__icon--green path,
.impact-section--animated .impact__icon--green polyline {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: drawSmooth 8s infinite;
}

@keyframes drawSmooth {
  0% {
    stroke-dashoffset: 1;
    opacity: 0;
  }

  5% {
    stroke-dashoffset: 1;
    opacity: 1;
  }

  25% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes drawJerky {
  0% {
    stroke-dashoffset: 1;
    opacity: 0;
    transform: scale(0.95);
  }

  3% {
    stroke-dashoffset: 1;
    opacity: 1;
    transform: scale(1);
  }

  /* Heavy Jerky steps */
  8% {
    stroke-dashoffset: 0.9;
  }

  12% {
    stroke-dashoffset: 0.9;
  }

  20% {
    stroke-dashoffset: 0.7;
  }

  28% {
    stroke-dashoffset: 0.7;
  }

  35% {
    stroke-dashoffset: 0.5;
  }

  45% {
    stroke-dashoffset: 0.5;
  }

  52% {
    stroke-dashoffset: 0.2;
  }

  58% {
    stroke-dashoffset: 0.2;
  }

  65% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

.impact__title {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: var(--space-2);
}

.impact__subtitle {
  font-size: var(--fs-sm);
  color: var(--gray-500);
  margin-bottom: var(--space-8);
  font-weight: 500;
}

.impact__list {
  list-style: none;
  display: grid;
  gap: var(--space-4);
}

.impact__item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--fs-base);
  font-weight: 500;
}

.impact__item--bad {
  color: var(--gray-600);
}

.impact__item--good {
  color: var(--blue-900);
}

.impact__item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.impact__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.impact__vs-circle {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: var(--fs-sm);
  color: var(--gray-400);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.impact__line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: var(--gray-200);
  transform: translateX(-50%);
}

@keyframes buttonPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(245, 124, 0, 0.4);
  }

  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 10px rgba(245, 124, 0, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(245, 124, 0, 0);
  }
}

.btn--orange {
  animation: buttonPulse 2.5s infinite ease-out;
}

.btn--orange:hover {
  animation: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(245, 124, 0, 0.3);
}

.wave-divider {
  position: relative;
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
  /* Hidden gap overlap fix */
}

.wave-divider svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400%;
  height: 100%;
}

.wave-divider--blue {
  background: var(--white);
}

.wave-divider--blue svg {
  fill: var(--color-primary);
}

.wave-divider--orange {
  background: var(--white);
}

.wave-divider--orange svg {
  fill: var(--orange-50);
}

.wave-divider--trust {
  background: var(--white);
}

.wave-divider--trust svg {
  fill: var(--blue-700);
}

/* Layer 1 - Faster, semi-transparent */
.wave-layer-1 {
  opacity: 0.4;
  animation: waveFlow1 15s linear infinite;
}

/* Layer 2 - Slower, solid */
.wave-layer-2 {
  opacity: 1;
  animation: waveFlow2 25s linear infinite;
}

@keyframes waveFlow1 {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes waveFlow2 {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* ----------------------------------------------------------
   20. RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .navbar__nav {
    display: none;
  }

  .navbar__actions {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .hero__image-wrap img {
    height: 360px;
  }

  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-stat:nth-child(2) {
    border-right: none;
  }

  .trust-stat:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .why-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .local-trust__inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact__grid,
  .grid-2-cols {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .impact__divider {
    height: 40px;
    margin: var(--space-2) 0;
  }

  .impact__line {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .impact__vs-circle {
    width: 40px;
    height: 40px;
    font-size: 10px;
  }

  .steps__grid::before {
    display: none;
  }

  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services__grid .service-card--featured {
    flex-direction: column;
    grid-column: 1 / -1;
  }

  .services__grid .service-card--featured .service-card__img-wrap {
    width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: var(--space-16);
  }

  .navbar__logo-img,
  .footer__logo-img {
    height: 44px;
  }

  .hero {
    padding-top: calc(var(--offer-bar-h) + 60px + var(--space-8));
  }

  .hero__title {
    font-size: var(--fs-3xl);
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__cta-group .btn {
    justify-content: center;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .trust-bar__grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-stat:last-child,
  .trust-stat:nth-last-child(2) {
    border-bottom: none;
  }

  .steps__grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-band__actions {
    justify-content: center;
  }

  .footer__main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__brand-logo {
    justify-content: center;
  }

  .footer__socials {
    justify-content: center;
  }

  .footer__tagline {
    margin: 0 auto var(--space-6);
    text-align: center;
  }

  .footer__contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-2);
  }

  .footer__links {
    align-items: center;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__legal-links {
    justify-content: center;
  }

  .why-strip__grid {
    grid-template-columns: 1fr;
  }

  .local-trust__stats {
    grid-template-columns: 1fr 1fr;
  }

  .whatsapp-fab span {
    display: none;
  }

  .whatsapp-fab {
    padding: var(--space-4);
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: var(--space-4);
  }

  .steps__grid {
    grid-template-columns: 1fr;
  }

  .why-strip__grid {
    grid-template-columns: 1fr;
  }

  .local-trust__stats {
    grid-template-columns: 1fr;
  }

  .cta-band__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .offer-bar {
    justify-content: flex-start;
  }

  .impact__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

/* ----------------------------------------------------------
   21. CONTACT PAGE SPECIFIC
   ---------------------------------------------------------- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-card {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-6);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
}

.contact-card:hover {
  transform: translateX(10px);
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  background: var(--blue-50);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.contact-card__icon svg {
  width: 24px;
  height: 24px;
}

.contact-card__content strong {
  display: block;
  font-size: var(--fs-sm);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.contact-card__content p {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--gray-800);
}

/* Form Styles */
.contact-form-wrapper {
  background: var(--white);
  padding: var(--space-10);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
}

.contact-form__title {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: var(--space-8);
}

.form-group {
  margin-bottom: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group label {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: var(--fs-base);
  transition: all var(--transition-base);
  background: var(--gray-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(30, 144, 255, 0.1);
}

.form-status {
  margin-top: var(--space-6);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  font-weight: 600;
  display: none;
  text-align: center;
  transition: opacity 0.5s ease;
}

.form-status--success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-status--error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.map-wrapper {
  border-top: 1px solid var(--gray-200);
  box-shadow: inset 0 4px 10px rgba(0,0,0,0.05);
}

/* ----------------------------------------------------------
   22. WHATSAPP STRIP (HOMEPAGE)
   ---------------------------------------------------------- */
.whatsapp-strip {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  padding: var(--space-8) 0;
  text-align: center;
}

.whatsapp-strip__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
}

.whatsapp-strip__text {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--fs-lg);
  font-weight: 700;
}

.whatsapp-strip__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .whatsapp-strip__inner {
    flex-direction: column;
    gap: var(--space-6);
  }

  .whatsapp-strip__text {
    flex-direction: column;
    text-align: center;
    gap: var(--space-2);
  }

  .whatsapp-strip__icon {
    width: 48px;
  }
}
/* ----------------------------------------------------------
   23. LEGAL CENTER (TYPOGRAPHY & LAYOUT)
   ---------------------------------------------------------- */
.legal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-12);
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 120px;
  background: var(--white);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.legal-sidebar__title {
  font-size: var(--fs-sm);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: var(--space-6);
  letter-spacing: 1px;
}

.legal-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.legal-nav__link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  color: var(--gray-600);
  font-weight: 600;
  transition: all var(--transition-base);
  text-decoration: none;
}

.legal-nav__link svg {
  width: 18px;
  height: 18px;
  opacity: 0.6;
}

.legal-nav__link:hover {
  background: var(--blue-50);
  color: var(--color-primary);
}

.legal-nav__link--active {
  background: var(--color-primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(30, 144, 255, 0.2);
}

.legal-nav__link--active svg {
  opacity: 1;
}

.legal-card {
  background: var(--white);
  padding: var(--space-12);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.legal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--color-primary), var(--orange-500));
}

/* Prose (Typography Optimization) */
.prose h2 {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--gray-900);
  margin: var(--space-10) 0 var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.prose h2 span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--blue-50);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
}

.prose h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--gray-800);
  margin: var(--space-8) 0 var(--space-2);
}

.prose p {
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: var(--space-4);
}

.prose ul, .prose ol {
  margin: var(--space-4) 0 var(--space-6) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.prose li {
  line-height: 1.6;
  color: var(--gray-600);
  position: relative;
}

.prose li::marker {
  color: var(--color-primary);
  font-weight: 800;
}

.legal-section {
  padding-top: 140px;
  padding-bottom: var(--section-py);
  min-height: 100vh;
}

@media (max-width: 1024px) {
  .legal-section {
    padding-top: 100px;
  }
  
  .legal-layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .legal-sidebar__title {
    display: none;
  }

  .legal-nav {
    flex-direction: column;
    gap: var(--space-2);
  }

  .legal-nav__link {
    width: 100%;
  }

  .legal-card {
    padding: var(--space-8);
  }
}

@media (max-width: 600px) {
  .legal-section {
    padding-top: 80px;
  }

  .legal-card {
    padding: var(--space-6);
  }
  
  .prose h2 {
    font-size: var(--fs-lg);
  }

  .prose p, .prose li {
    font-size: var(--fs-sm);
  }

  .prose ul, .prose ol {
    margin-left: var(--space-4);
  }
}