/* ============================================================
   SPS Integrated Services — style.css
   Modern 2026 Premium UI | Navy + Teal Brand Theme
   ============================================================ */

:root {
  --navy: #0d2461;
  --navy-dark: #091849;
  --navy-light: #1a3a8c;
  --teal: #00b4c8;
  --teal-dark: #0092a3;
  --teal-light: #4dd4e4;
  --white: #ffffff;
  --off-white: #f4f7fb;
  --light-gray: #e8eef8;
  --mid-gray: #8898b8;
  --text-dark: #0d1b3e;
  --text-mid: #3a4d72;
  --text-light: #6b7fa8;
  --card-bg: rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.13);
  --shadow-sm: 0 2px 12px rgba(13,36,97,0.10);
  --shadow-md: 0 8px 32px rgba(13,36,97,0.14);
  --shadow-lg: 0 20px 60px rgba(13,36,97,0.18);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Outfit', sans-serif;  /* was 'Syne' */
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  cursor: none;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: none; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* Scroll Progress */
#scroll-progress {
  position: fixed; top: 0; left: 0;
  width: 0%; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--navy-light));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* Custom Cursor */
#cursor, #cursor-follower {
  position: fixed; border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%, -50%);
}
#cursor {
  width: 8px; height: 8px;
  background: var(--teal);
  transition: transform 0.1s;
}
#cursor-follower {
  width: 36px; height: 36px;
  border: 2px solid rgba(0,180,200,0.5);
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}
@media (max-width: 1024px) {
  #cursor, #cursor-follower { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}

/* ---- Preloader ---- */
#preloader {
  position: fixed; inset: 0;
  background: var(--navy-dark);
  z-index: 99998;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
#preloader.done { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 800;
  color: var(--white);
  letter-spacing: 4px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--teal), var(--white));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.preloader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 99px; overflow: hidden; margin: 0 auto;
}
.preloader-fill {
  width: 0%; height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  border-radius: 99px;
  animation: fillBar 1.8s ease forwards;
}
@keyframes fillBar { to { width: 100%; } }

/* ---- Container ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ---- Section Shared ---- */
.section { padding: 100px 0; position: relative; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--teal);
  background: rgba(0,180,200,0.1);
  border: 1px solid rgba(0,180,200,0.25);
  padding: 6px 16px; border-radius: 99px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.18;
  color: var(--text-dark); margin-bottom: 18px;
}
.text-accent {
  background: linear-gradient(135deg, var(--teal), var(--navy-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 1.05rem; color: var(--text-light); line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 600;
  padding: 14px 28px; border-radius: 99px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--teal-dark), var(--navy-light));
  color: var(--white);
  box-shadow: 0 4px 24px rgba(0,180,200,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,180,200,0.45);
}
.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }
.btn-primary-sm {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 99px;
  background: linear-gradient(135deg, var(--teal-dark), var(--navy-light));
  color: var(--white); font-size: 0.88rem; font-weight: 600;
}
.btn-outline-sm {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 99px;
  border: 2px solid var(--navy);
  color: var(--navy); font-size: 0.88rem; font-weight: 600;
}

/* ---- Reveal Animations ---- */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.revealed { opacity: 1 !important; transform: none !important; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.nav-container {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
/* ============================================================
   LOGO FIX — Add/replace in style.css
   ============================================================ */

/* Default state: navbar is over dark hero background
   → invert logo to white so it's visible */
.nav-logo img {
  height: 52px;
  width: auto;
  transition: filter 0.4s ease, opacity 0.4s ease;
  filter: brightness(0) invert(1);   /* makes logo fully white */
}

/* Scrolled state: navbar has white background
   → show original color logo */
#navbar.scrolled .nav-logo img {
  filter: none;   /* original colors restored */
}

/* ---- Mobile menu: always white bg, so always show color logo ---- */
@media (max-width: 768px) {
  /* When menu is open, nav bg is dark navy → keep white logo */
  #navbar .nav-logo img {
    filter: brightness(0) invert(1);
  }
  #navbar.scrolled .nav-logo img {
    filter: none;
  }
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 600;
  color: var(--white);
  transition: color 0.3s;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--teal);
  transform: scaleX(0); transition: transform 0.3s;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: var(--teal-light); }
#navbar.scrolled .nav-link { color: var(--text-dark); }
#navbar.scrolled .nav-link:hover, #navbar.scrolled .nav-link.active { color: var(--teal-dark); }
.nav-link.nav-cta {
  background: linear-gradient(135deg, var(--teal-dark), var(--navy-light));
  color: var(--white) !important;
  padding: 10px 22px; border-radius: 99px;
  font-size: 0.88rem;
  box-shadow: 0 4px 16px rgba(0,180,200,0.3);
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,180,200,0.4); }
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; width: 28px; padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block; height: 2px; width: 100%;
  background: var(--white);
  border-radius: 99px; transition: var(--transition);
}
#navbar.scrolled .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, #1a4a8c 70%, var(--navy-dark) 100%);
  display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
}
.hero-bg-blobs { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.2;
}
.blob-1 {
  width: 500px; height: 500px;
  background: var(--teal);
  top: -100px; right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-2 {
  width: 400px; height: 400px;
  background: var(--navy-light);
  bottom: -50px; left: -100px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
.blob-3 {
  width: 300px; height: 300px;
  background: var(--teal-light);
  top: 50%; left: 40%;
  animation: blobFloat 12s ease-in-out infinite 2s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-30px) scale(1.05); }
  66% { transform: translate(-20px,20px) scale(0.95); }
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute; width: 4px; height: 4px;
  background: rgba(0,180,200,0.6); border-radius: 50%;
  animation: particleFloat var(--duration, 8s) ease-in-out infinite var(--delay, 0s);
}
@keyframes particleFloat {
  0%, 100% { transform: translateY(0) opacity(1); opacity: 0.6; }
  50% { transform: translateY(-60px); opacity: 0.2; }
}
.hero-container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 500;
  color: var(--teal-light);
  background: rgba(0,180,200,0.12);
  border: 1px solid rgba(0,180,200,0.3);
  padding: 8px 18px; border-radius: 99px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,180,200,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(0,180,200,0); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.1;
  color: var(--white); margin-bottom: 20px;
}
.hero-typed-wrapper {
  display: block;
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.typed-cursor {
  -webkit-text-fill-color: var(--teal);
  color: var(--teal);
  animation: blink 0.9s step-end infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
.hero-desc {
  font-size: 1.08rem; color: rgba(255,255,255,0.75);
  line-height: 1.75; margin-bottom: 36px; max-width: 520px;
}
.hero-cta { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.hero .btn-outline {
  border-color: rgba(255,255,255,0.4); color: var(--white);
}
.hero .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.hstat { text-align: left; }
.hstat-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800; color: var(--white);
}
.hstat-num + span {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: var(--teal);
}
.hstat-label {
  display: block; font-size: 0.8rem;
  color: rgba(255,255,255,0.55); margin-top: 2px;
}
.hstat-divider {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.2);
}
/* Hero Visual */
.hero-visual {
  position: relative; height: 500px;
  display: flex; align-items: center; justify-content: center;
}
.hero-img-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero-img-bg {
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,200,0.2) 0%, rgba(13,36,97,0.4) 70%);
  border: 1px solid rgba(0,180,200,0.25);
  animation: heroRing 6s ease-in-out infinite;
}
.hero-img-ring {
  position: absolute;
  width: 380px; height: 380px; border-radius: 50%;
  border: 1px dashed rgba(0,180,200,0.3);
  animation: heroRing 10s linear infinite;
}
@keyframes heroRing { to { transform: rotate(360deg); } }
.hero-card-main {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  padding: 28px 36px;
  z-index: 2;
}
.hero-card-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(circle, rgba(0,180,200,0.3), transparent 70%);
  filter: blur(20px);
}
.hero-card-inner {
  display: flex; align-items: center; gap: 16px;
  position: relative; z-index: 1;
}
.hcard-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.4rem;
}
.hcard-text strong, .hcard-text span {
  display: block; color: var(--white);
}
.hcard-text strong { font-family: var(--font-display); font-size: 1rem; font-weight: 700; }
.hcard-text span { font-size: 0.8rem; opacity: 0.7; }
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  color: var(--white); z-index: 3;
  animation: floatCard 4s ease-in-out infinite;
}
.hero-float-card i { font-size: 1.5rem; color: var(--teal-light); }
.hero-float-card strong { display: block; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.hero-float-card span { display: block; font-size: 0.75rem; opacity: 0.7; }
.fc-1 { top: 60px; left: 0; animation-delay: 0s; }
.fc-2 { bottom: 80px; right: 0; animation-delay: 1.5s; }
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--off-white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; margin-bottom: 80px;
}
.about-visual { position: relative; }
.about-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--teal-dark) 100%);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img-inner {
  width: 100%; height: 100%;
  display: flex; align-items: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, transparent 50%, rgba(9,24,73,0.85) 100%);
}
.about-img-overlay {
  background: rgba(0,180,200,0.9);
  color: var(--white);
  padding: 12px 20px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px;
}
.about-mini-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
}
.about-mini-card i { font-size: 1.6rem; color: var(--teal); }
.about-mini-card strong { display: block; font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: var(--text-dark); }
.about-mini-card span { font-size: 0.78rem; color: var(--text-light); }
.ac-1 { top: 24px; right: -24px; }
.ac-2 { bottom: 60px; right: -24px; }
.about-content .section-tag { margin-bottom: 12px; }
.about-content p { color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; }
.about-pillars { margin: 28px 0 32px; display: flex; flex-direction: column; gap: 20px; }
.pillar {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border-radius: var(--radius-sm);
  background: var(--white); border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.pillar:hover { border-color: var(--teal); box-shadow: 0 4px 20px rgba(0,180,200,0.15); }
.pillar-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0,180,200,0.15), rgba(26,58,140,0.15));
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}
.pillar strong { display: block; font-family: var(--font-display); font-weight: 700; margin-bottom: 4px; }
.pillar span { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }
/* Stats Row */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  text-align: center; padding: 36px 24px;
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--light-gray); box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.stat-item:hover { border-color: var(--teal); box-shadow: 0 8px 32px rgba(0,180,200,0.2); transform: translateY(-4px); }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 800;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1; margin-bottom: 8px;
}
.stat-label { font-size: 0.9rem; color: var(--text-light); font-weight: 500; }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative; overflow: hidden;
}
.services::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--off-white), transparent);
  pointer-events: none;
}
.services .section-tag { color: var(--teal-light); background: rgba(0,180,200,0.15); border-color: rgba(0,180,200,0.3); }
.services .section-title { color: var(--white); }
.services .section-sub { color: rgba(255,255,255,0.6); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: var(--transition);
  transition-delay: var(--delay, 0s);
}
.service-card:hover {
  border-color: rgba(0,180,200,0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.sc-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at top left, rgba(0,180,200,0.15), transparent 70%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:hover .sc-glow { opacity: 1; }
.sc-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0,180,200,0.2), rgba(0,180,200,0.05));
  border: 1px solid rgba(0,180,200,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--teal-light);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .sc-icon {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0,180,200,0.4);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.service-card p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }
.sc-list { margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.sc-list li {
  font-size: 0.85rem; color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 8px;
}
.sc-list li i { color: var(--teal); font-size: 0.75rem; }
.sc-link {
  font-family: var(--font-display);
  font-size: 0.88rem; font-weight: 600;
  color: var(--teal-light);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.3s;
}
.sc-link:hover { gap: 14px; }

/* ============================================================
   WHY US
   ============================================================ */
.why-us { background: var(--white); }
.why-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 72px; align-items: center;
}
.why-content p { color: var(--text-mid); line-height: 1.8; margin-bottom: 32px; }
.feature-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.feature-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 20px; border-radius: var(--radius-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}
.feature-item:hover { border-color: var(--teal); background: rgba(0,180,200,0.04); }
.fi-check {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.75rem;
}
.feature-item strong { display: block; font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.feature-item span { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }
.why-card-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.why-card {
  padding: 32px 24px; border-radius: var(--radius-md);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 14px; text-align: center;
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card i { font-size: 2rem; }
.why-card strong { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; }
.wc-blue { background: linear-gradient(135deg, #e8f4fd, #c8e6f9); color: var(--navy); }
.wc-blue i { color: var(--navy-light); }
.wc-teal { background: linear-gradient(135deg, #e0f8fb, #b2eef5); color: var(--teal-dark); }
.wc-teal i { color: var(--teal); }
.wc-navy { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color: var(--white); }
.wc-navy i { color: var(--teal-light); }
.wc-sky { background: linear-gradient(135deg, #e0f2fe, #bae6fd); color: #0369a1; }
.wc-sky i { color: #0ea5e9; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 16px;
}
.gi-tall { grid-row: span 2; }
.gi-wide { grid-column: span 2; }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; cursor: pointer; }
.gi-inner {
  width: 100%; height: 100%;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.5s;
}
.gallery-item:hover .gi-inner { transform: scale(1.04); }
.gi-placeholder {
  font-size: 4rem; color: rgba(255,255,255,0.3);
  transition: var(--transition);
}
.gallery-item:hover .gi-placeholder { opacity: 0; }
.gi-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(9,24,73,0.9) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 24px;
  opacity: 0; transition: opacity 0.4s;
  color: var(--white);
}
.gallery-item:hover .gi-overlay { opacity: 1; }
.gi-overlay i { font-size: 1.5rem; margin-bottom: 8px; color: var(--teal-light); }
.gi-overlay span { font-family: var(--font-display); font-weight: 600; }
/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(9,24,73,0.95);
  backdrop-filter: blur(12px);
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.3s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-content { text-align: center; max-width: 600px; padding: 24px; }
.lightbox-icon {
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 3rem; color: var(--white);
}
#lightbox-caption {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 600; color: var(--white);
}

/* ============================================================
   TESTIMONIALS — FIXED CSS
   Add these styles to your style.css
   (Replace the old testimonials block completely)
   ============================================================ */

.testimonials {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0f2d6b 50%, var(--navy) 100%);
  overflow: hidden;
  position: relative;
}
.testimonials::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,200,0.08), transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.testimonials .section-tag {
  color: var(--teal-light);
  background: rgba(0,180,200,0.12);
  border-color: rgba(0,180,200,0.25);
}
.testimonials .section-title { color: var(--white); }
.testimonials .section-sub { color: rgba(255,255,255,0.6); }

/* Viewport clips overflow — NO overflow:hidden on track wrapper */
.testimonials-slider-wrap { position: relative; }

.tslider-viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  align-items: stretch;
}

/* Each card — fixed width calculated by JS */
.tcard {
  flex: 0 0 calc(33.33% - 16px);
  min-width: calc(33.33% - 16px);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-md);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-sizing: border-box;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.tcard:hover {
  border-color: rgba(0, 180, 200, 0.45);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-4px);
}

/* Quote icon at top */
.tcard-quote {
  color: var(--teal);
  font-size: 1.4rem;
  opacity: 0.7;
  margin-bottom: 16px;
  line-height: 1;
}

/* Review text */
.tcard > p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 24px;
}

/* Footer: avatar + name + stars */
.tcard-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  margin-top: auto;
}
.tcard-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-dark), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.88rem;
  flex-shrink: 0;
  border: 2px solid rgba(0, 180, 200, 0.35);
}
.tcard-info { display: flex; flex-direction: column; gap: 3px; }
.tcard-info strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.92rem; font-weight: 700;
}
.tcard-info span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.50);
  display: block;
  margin-bottom: 4px;
}
.tcard-stars {
  color: #fbbf24;
  font-size: 0.78rem;
  display: flex; gap: 2px;
}

/* Navigation */
.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.slider-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 0.88rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
  flex-shrink: 0;
}
.slider-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  transform: scale(1.08);
}
.slider-dots { display: flex; gap: 8px; align-items: center; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.35s ease;
}
.slider-dot.active {
  width: 28px;
  background: var(--teal);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .tcard {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
  }
}
@media (max-width: 640px) {
  .tcard {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .tcard { padding: 24px 20px 20px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--off-white); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border-radius: var(--radius-sm);
  border: 1px solid var(--light-gray); overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--teal); box-shadow: 0 4px 20px rgba(0,180,200,0.15); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; background: none;
  font-family: var(--font-display); font-size: 0.98rem;
  font-weight: 700; color: var(--text-dark);
  cursor: pointer; transition: color 0.3s;
  text-align: left;
}
.faq-item.open .faq-question { color: var(--teal-dark); }
.faq-icon { font-size: 0.85rem; color: var(--teal); transition: transform 0.4s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem; color: var(--text-light); line-height: 1.75;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px;
}
.ci-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--light-gray);
}
.ci-item:last-of-type { border-bottom: none; }
.ci-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0,180,200,0.15), rgba(26,58,140,0.1));
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 1rem;
}
.ci-item strong { display: block; font-family: var(--font-display); font-weight: 700; margin-bottom: 6px; }
.ci-item a, .ci-item span {
  display: block; font-size: 0.9rem; color: var(--text-light); line-height: 1.6;
  transition: color 0.3s;
}
.ci-item a:hover { color: var(--teal); }
.ci-social { display: flex; gap: 12px; margin-top: 24px; }
.ci-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 0.9rem;
  transition: var(--transition);
}
.ci-social a:hover { background: var(--navy); color: var(--white); transform: translateY(-3px); }
/* Form */
.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.form-group label {
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 700;
  color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem; color: var(--text-dark);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none; width: 100%;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0,180,200,0.12);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #ef4444; }
.form-error { font-size: 0.8rem; color: #ef4444; min-height: 18px; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  margin-top: 16px; padding: 16px 20px;
  background: rgba(0,180,200,0.1);
  border: 1px solid var(--teal);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 12px;
  color: var(--teal-dark); font-weight: 600;
}
.form-success i { font-size: 1.2rem; }

/* ============================================================
   MAP
   ============================================================ */
.map-section { height: 400px; }
.map-wrap { height: 100%; }
.map-wrap iframe { width: 100%; height: 100%; filter: saturate(0.8) contrast(0.9); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-dark); }
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 48px;
}
.footer-logo { height: 52px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 0.88rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--teal); border-color: var(--teal); color: var(--white); transform: translateY(-3px); }
.footer-links h4 {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700;
  color: var(--white); margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem; color: rgba(255,255,255,0.55);
  transition: color 0.3s; display: flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--teal-light); }
.footer-newsletter h4 {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.footer-newsletter p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 20px; }
.newsletter-form {
  display: flex; gap: 0; margin-bottom: 24px;
  border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}
.newsletter-form input {
  flex: 1; padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  color: var(--white); font-family: var(--font-body);
  border: none; outline: none; font-size: 0.88rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
  padding: 12px 18px;
  background: var(--teal);
  color: var(--white); font-size: 1rem;
  cursor: pointer; transition: background 0.3s;
}
.newsletter-form button:hover { background: var(--teal-dark); }
.footer-contact-mini { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-mini span {
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  display: flex; align-items: center; gap: 8px;
}
.footer-contact-mini i { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.footer-bottom-links a:hover { color: var(--teal-light); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.whatsapp-btn {
  position: fixed; bottom: 88px; right: 24px;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white); font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 800; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.wa-tooltip {
  position: absolute; right: 70px;
  background: var(--text-dark); color: var(--white);
  padding: 6px 12px; border-radius: 8px;
  font-size: 0.82rem; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.whatsapp-btn:hover .wa-tooltip { opacity: 1; }
#back-to-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy);
  color: var(--white); font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 800; cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(20px);
  transition: var(--transition);
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--teal); }
.mobile-sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--light-gray);
  padding: 10px 20px;
  gap: 12px; justify-content: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .ac-1, .ac-2 { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gi-tall { grid-row: auto; }
  .gi-wide { grid-column: auto; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 300px; height: 100vh;
    background: var(--navy-dark);
    flex-direction: column; gap: 0;
    padding: 0 0 40px;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
    box-shadow: -20px 0 60px rgba(0,0,0,0.4);
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links::before {
    content: '';
    display: block;
    height: 80px;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 8px;
  }
  .nav-link {
    color: rgba(255,255,255,0.85) !important;
    padding: 15px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
    font-size: 1rem !important;
    font-weight: 600;
    display: flex; align-items: center;
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
  }
  .nav-link:hover {
    background: rgba(255,255,255,0.06);
    color: var(--teal-light) !important;
    padding-left: 36px;
  }
  .nav-link.active {
    color: var(--teal-light) !important;
    background: rgba(0,180,200,0.08);
    border-left: 3px solid var(--teal);
    padding-left: 25px;
  }
  .nav-link::after { display: none; }
  .nav-link.nav-cta {
    margin: 20px 24px 0;
    padding: 14px 24px;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal-dark), var(--navy-light));
    color: var(--white) !important;
    border-radius: 99px; border: none;
    width: calc(100% - 48px);
    box-shadow: 0 4px 16px rgba(0,180,200,0.3);
    font-size: 0.92rem !important;
  }
  .nav-link.nav-cta:hover { padding-left: 24px; }
  .hamburger { display: flex; z-index: 1001; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .tcard { min-width: calc(100% - 0px); }
  .mobile-sticky-cta { display: flex; }
  .whatsapp-btn { bottom: 80px; }
  #back-to-top { bottom: 72px; right: 16px; }
  .contact-form-wrap { padding: 28px 20px; }
  .hero-desc { max-width: 100%; }
  .hero-title { font-size: clamp(2rem, 6vw, 3rem); }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hstat-divider { width: 60px; height: 1px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .why-card-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   MOBILE FIXES — Add these at the BOTTOM of your style.css
   (These will override existing mobile styles)
   ============================================================ */

/* ============================================================
   FIX 1: Right side white gap on mobile (SS1)
   Root cause: body/section overflow or blob going outside
   ============================================================ */
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
.hero {
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}
.hero-bg-blobs,
.hero-particles,
.blob {
  max-width: 100vw;
  overflow: hidden;
}
/* Ensure no section bleeds outside */
section, .section {
  overflow-x: hidden;
  max-width: 100vw;
}

/* ============================================================
   FIX 2: Hero stats — horizontal (left-right) on mobile (SS2)
   ============================================================ */
@media (max-width: 768px) {
  .hero-stats {
    display: flex;
    flex-direction: row !important;   /* horizontal row */
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0 8px;
  }
  .hstat {
    flex: 1;
    text-align: center;
    min-width: 0;
  }
  .hstat-num {
    font-size: 1.6rem;
  }
  .hstat-num + span {
    font-size: 1.6rem;
  }
  .hstat-label {
    font-size: 0.68rem;
    white-space: nowrap;
  }
  .hstat-divider {
    width: 1px !important;
    height: 40px !important;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
    margin: 0 4px;
  }
}

@media (max-width: 400px) {
  .hstat-num { font-size: 1.3rem; }
  .hstat-num + span { font-size: 1.3rem; }
  .hstat-label { font-size: 0.62rem; }
}

/* ============================================================
   FIX 3: About stats row — not going outside screen (SS3)
   ============================================================ */
@media (max-width: 768px) {
  .stats-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    width: 100% !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  .stat-item {
    padding: 24px 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }
  .stat-num {
    font-size: 2rem !important;
  }
  .stat-label {
    font-size: 0.82rem !important;
  }
  /* Fix container padding so nothing bleeds */
  .container {
    padding: 0 16px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100vw !important;
  }
}

/* ============================================================
   FIX 4: Footer — complete mobile fix (SS4)
   ============================================================ */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding: 0 16px !important;
  }

  .footer-top {
    padding: 48px 0 32px !important;
  }

  .footer-logo {
    height: 44px !important;
    margin-bottom: 16px !important;
  }

  /* Show Privacy Policy and Terms links properly */
  .footer-bottom {
    padding: 20px 0 100px !important; /* 100px bottom = above mobile sticky CTA */
  }

  .footer-bottom-inner {
    flex-direction: column !important;
    gap: 14px !important;
    text-align: center !important;
    align-items: center !important;
  }

  .footer-bottom-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .footer-bottom-links a {
    font-size: 0.82rem !important;
    color: rgba(255,255,255,0.55) !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .footer-bottom-links a:hover {
    color: var(--teal-light) !important;
  }

  /* Newsletter form fix on mobile */
  .newsletter-form {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .newsletter-form input {
    min-width: 0 !important;
    flex: 1 !important;
  }

  /* Footer social icons */
  .footer-social {
    flex-wrap: wrap !important;
  }

  /* Footer quick links readable */
  .footer-links ul {
    gap: 12px !important;
  }
  .footer-links a {
    font-size: 0.9rem !important;
  }
}

/* Extra small phones */
@media (max-width: 400px) {
  .footer-bottom-links {
    flex-direction: column !important;
    gap: 10px !important;
  }
}

/* ============================================================
   BONUS: Mobile sticky CTA — ensure it doesn't cover footer links
   ============================================================ */
@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important; left: 0 !important; right: 0 !important;
    z-index: 900 !important;
    background: rgba(255,255,255,0.98) !important;
    backdrop-filter: blur(12px) !important;
    border-top: 1px solid var(--light-gray) !important;
    padding: 10px 20px !important;
    gap: 12px !important;
    justify-content: center !important;
    box-shadow: 0 -4px 20px rgba(13,36,97,0.12) !important;
  }

  .btn-primary-sm,
  .btn-outline-sm {
    flex: 1 !important;
    justify-content: center !important;
    font-size: 0.88rem !important;
    padding: 12px 16px !important;
    border-radius: 99px !important;
  }

  /* WhatsApp & back-to-top stay above sticky CTA */
  .whatsapp-btn {
    bottom: 76px !important;
    right: 16px !important;
    width: 52px !important;
    height: 52px !important;
  }

  #back-to-top {
    bottom: 76px !important;
    right: 76px !important;
  }
}