/* ==========================================================================
   KIPSTECH TECHNOLOGIES — Professional Clean Design
   Inspired by poa.co.ke & mawingu.co — Light, vibrant, trustworthy
   ========================================================================== */

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

/* ======================== DESIGN TOKENS ======================== */
:root {
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  /* Brand Colors */
  --blue:         #1565C0;   /* Strong trusted blue */
  --blue-mid:     #1976D2;
  --blue-light:   #2196F3;
  --blue-pale:    #E3F2FD;
  --blue-bg:      #F0F6FF;

  --navy:         #0D1B40;   /* Deep navy for text */
  --sky:          #03A9F4;   /* Sky accent */
  --teal:         #00897B;   /* Success/checkmarks */
  --orange:       #FF6D00;   /* Warm CTA accent */
  --orange-light: #FFF3E0;

  /* Neutrals */
  --white:   #FFFFFF;
  --bg:      #F8FBFF;
  --gray-50: #F9FAFB;
  --gray-100:#F3F4F6;
  --gray-200:#E5E7EB;
  --gray-400:#9CA3AF;
  --gray-600:#4B5563;
  --gray-800:#1F2937;
  --dark:    #0D1B40;

  /* Gradients */
  --grad-hero:    linear-gradient(135deg, #0D47A1 0%, #1565C0 40%, #1E88E5 100%);
  --grad-blue:    linear-gradient(135deg, #1565C0 0%, #2196F3 100%);
  --grad-sky:     linear-gradient(135deg, #0288D1 0%, #03A9F4 100%);
  --grad-teal:    linear-gradient(135deg, #00695C 0%, #00897B 100%);
  --grad-orange:  linear-gradient(135deg, #E65100 0%, #FF6D00 100%);
  --grad-navy:    linear-gradient(135deg, #0D1B40 0%, #1565C0 100%);
  --grad-section: linear-gradient(180deg, #F8FBFF 0%, #EBF4FF 100%);

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(21,101,192,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(21,101,192,.12), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:  0 12px 40px rgba(21,101,192,.18), 0 4px 12px rgba(0,0,0,.08);
  --shadow-xl:  0 24px 60px rgba(21,101,192,.22), 0 8px 20px rgba(0,0,0,.10);

  --r-xs:   6px;
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   36px;
  --r-full: 9999px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ======================== RESET ======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--gray-800);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  font-size: 1rem;
}
ul { list-style: none; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ======================== UTILITIES ======================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.text-center { text-align: center; }

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}
.sec-label i { font-size: 1rem; }

.sec-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.sec-title span { color: var(--blue); }
.sec-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 640px;
  line-height: 1.75;
}
.sec-sub.centered { margin: 0 auto; }
.sec-header { margin-bottom: 56px; }

/* ======================== BUTTONS ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .98rem;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: all .22s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn-blue {
  background: var(--grad-blue);
  color: #fff;
  box-shadow: 0 6px 22px rgba(21,101,192,.38);
}
.btn-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(21,101,192,.48);
  color: #fff;
}
.btn-orange {
  background: var(--grad-orange);
  color: #fff;
  box-shadow: 0 6px 22px rgba(255,109,0,.35);
}
.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,109,0,.45);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  color: var(--blue);
}
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,.6);
  color: #fff;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  color: #fff;
}
.btn-outline-blue {
  background: transparent;
  border: 2px solid var(--blue);
  color: var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: #fff;
}
.btn-sm { padding: 10px 22px; font-size: .88rem; }
.btn-full { width: 100%; justify-content: center; }

/* ======================== HEADER / NAV ======================== */
.header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 900;
  padding: 26px 0;
  background: transparent;
  transition: all .3s var(--ease);
}
.header.scrolled {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(21,101,192,.12);
  padding: 18px 0;
}
.header.hero-zone { background: transparent; }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 13px; }
.logo-img {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.2;
  transition: color .2s;
}
.logo-text small {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: .85;
}
.header.scrolled .logo-text { color: var(--dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: .98rem;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  padding: 10px 18px;
  border-radius: var(--r-full);
  transition: all .2s;
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(255,255,255,.2);
  color: #fff;
}
.header.scrolled .nav-links a {
  color: var(--gray-600);
}
.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active {
  background: var(--blue-pale);
  color: var(--blue);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
  padding: 4px;
  transition: color .2s;
}
.header.scrolled .hamburger { color: var(--dark); }

/* Drawer */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(13,27,64,.6);
  backdrop-filter: blur(6px);
  z-index: 950;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }
.drawer {
  position: fixed;
  top: 0; right: 0;
  width: 300px; height: 100vh;
  background: #fff;
  z-index: 960;
  display: flex;
  flex-direction: column;
  padding: 28px 28px;
  gap: 24px;
  transform: translateX(100%);
  transition: transform .3s var(--ease);
  box-shadow: -10px 0 40px rgba(0,0,0,.15);
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark);
}
.drawer-close {
  background: var(--gray-100);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--gray-600);
  cursor: pointer;
}
.drawer-close:hover { background: var(--gray-200); }
.drawer-links {
  display: flex;
  flex-direction: column;
}
.drawer-links a {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  padding: 13px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color .2s;
}
.drawer-links a:hover { color: var(--blue); }
.drawer-links a i { font-size: 1.15rem; color: var(--blue); width: 22px; }

/* ======================== HERO ======================== */
.hero {
  background: var(--grad-hero);
  min-height: 100vh;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Decorative wave shape at bottom */
.hero-wave {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.hero-wave svg {
  display: block;
  width: 100%;
  fill: var(--bg);
}

/* Subtle dot grid pattern */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  padding: 6px 18px;
  border-radius: var(--r-full);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 20px;
}
.hero-tag i { color: #FFD54F; }

.hero-h1 {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -.03em;
  margin-bottom: 18px;
}
.hero-h1 span {
  color: #FFD54F;
}

.hero-lead {
  font-size: 1.12rem;
  color: rgba(255,255,255,.85);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }

.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #FFD54F;
  line-height: 1;
}
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  font-weight: 600;
  letter-spacing: .3px;
  margin-top: 4px;
}

/* Hero right — image with floating cards */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ---- Hero Image: seamless dark-background team blend ---- */
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 660px;
  animation: gentle-float 7s ease-in-out infinite;
}
/* Outer glow ring — gives cinematic halo */
.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--r-xl) + 8px);
  background: conic-gradient(
    from 180deg,
    rgba(21,101,192,.7),
    rgba(255,213,79,.5),
    rgba(3,169,244,.7),
    rgba(21,101,192,.7)
  );
  filter: blur(14px);
  z-index: 0;
  opacity: .75;
  animation: rotateConic 6s linear infinite;
}
@keyframes rotateConic {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/* Thin bright border frame */
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  border: 2px solid rgba(255,255,255,.25);
  z-index: 2;
  pointer-events: none;
}
.hero-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-xl);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 40px 90px rgba(0,0,0,.6),
    inset 0 0 60px rgba(0,0,0,.3);
  /* Fade bottom edge into the hero background */
  -webkit-mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 60%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 60%,
    transparent 100%
  );
}
@keyframes gentle-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.hero-card {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  z-index: 10;
}
.hcard-1 { bottom: -15px; left: -20px; }
.hcard-2 { top: 15px; right: -20px; }
.hcard-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  flex-shrink: 0;
}
.hci-1 { background: var(--grad-blue); }
.hci-2 { background: var(--grad-orange); }
.hcard-val {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 800;
  color: var(--dark);
}
.hcard-sub { font-size: .78rem; color: var(--gray-400); }

/* ======================== FIBER PRICING TEASER STRIP ======================== */
.fiber-teaser {
  background: linear-gradient(135deg, #0D1B40 0%, #1565C0 55%, #1E88E5 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.fiber-teaser::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
.fiber-teaser::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
  pointer-events: none;
}
.ft-inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 18px 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.ft-label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.9);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 24px;
  flex-shrink: 0;
}
.ft-label i {
  font-size: 1.2rem;
  color: #FFD54F;
  animation: pulseWifi 2s ease-in-out infinite;
}
@keyframes pulseWifi {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .7; transform: scale(1.15); }
}
.ft-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
  margin: 0 24px;
}
.ft-packages {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  flex-wrap: wrap;
}
.ft-pkg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-md);
  padding: 10px 20px;
  cursor: pointer;
  text-decoration: none;
  transition: all .22s var(--ease);
  position: relative;
  min-width: 110px;
  backdrop-filter: blur(4px);
}
.ft-pkg:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.ft-pkg-hot {
  background: rgba(255,213,79,.15);
  border-color: #FFD54F;
  padding-top: 22px;
}
.ft-pkg-hot:hover {
  background: rgba(255,213,79,.28);
  border-color: #FFD54F;
}
.ft-hot-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #FF6D00, #FFD54F);
  color: #0D1B40;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 3px 10px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 3px;
}
.ft-hot-badge i { font-size: .75rem; }
.ft-speed {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.ft-speed span {
  font-size: .65rem;
  font-weight: 700;
  color: rgba(255,255,255,.65);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.ft-price {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  margin-top: 3px;
  white-space: nowrap;
}
.ft-price span {
  font-size: .68rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}
.ft-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #FF6D00;
  color: #fff;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .5px;
  padding: 11px 22px;
  border-radius: var(--r-full);
  white-space: nowrap;
  transition: all .22s var(--ease);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255,109,0,.4);
}
.ft-cta i {
  font-size: 1rem;
  transition: transform .22s;
}
.ft-cta:hover {
  background: #E65100;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255,109,0,.5);
}
.ft-cta:hover i { transform: translateX(4px); }

/* ======================== SERVICES STRIP ======================== */
.services-strip {
  background: #fff;
  box-shadow: 0 4px 24px rgba(21,101,192,.08);
}
.strip-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid var(--gray-100);
}
.strip-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 16px;
  border-right: 1px solid var(--gray-100);
  text-align: center;
  transition: background .2s;
  cursor: default;
}
.strip-cell:last-child { border-right: none; }
.strip-cell:hover { background: var(--blue-bg); }
.strip-cell .sc-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: #fff;
}
.strip-cell span {
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 700;
  color: var(--gray-600);
  line-height: 1.3;
}

/* ======================== ABOUT ======================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-img-wrap img { width: 100%; height: 500px; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: 28px; right: 28px;
  background: var(--grad-blue);
  color: #fff;
  border-radius: var(--r-md);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}
.about-badge-label { font-size: .8rem; font-weight: 600; opacity: .88; }

.about-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}
.ab-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .97rem;
  font-weight: 600;
  color: var(--gray-700, #374151);
}
.ab-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.about-body {
  color: var(--gray-600);
  font-size: .98rem;
  line-height: 1.75;
  margin-bottom: 10px;
}

/* ======================== WHY US ======================== */
.why-bg {
  background: linear-gradient(135deg, #0D47A1 0%, #1565C0 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
/* ---- Why Section Image: seamless clean blend ---- */
.why-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.why-img-wrap img {
  position: relative;
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-xl);
  border: none;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  transition: transform .3s var(--ease);
}

.why-content .sec-label { background: rgba(255,255,255,.2); color: #fff; }
.why-content .sec-title { color: #fff; }
.why-content .sec-title span { color: #FFD54F; }

.why-tabs {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,.12);
  border-radius: var(--r-full);
  padding: 4px;
  margin-bottom: 24px;
  display: inline-flex;
}
.why-tab {
  padding: 10px 24px;
  border-radius: var(--r-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  cursor: pointer;
  border: none;
  background: none;
  transition: all .2s;
}
.why-tab.active {
  background: #fff;
  color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.why-tab-panel { display: none; }
.why-tab-panel.active { display: block; }

.why-points { display: flex; flex-direction: column; gap: 18px; margin-top: 20px; }
.why-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-md);
  padding: 18px 20px;
  transition: background .2s;
}
.why-point:hover { background: rgba(255,255,255,.16); }
.wp-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: #FFD54F;
  flex-shrink: 0;
}
.wp-text h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 4px;
}
.wp-text p { font-size: .9rem; color: rgba(255,255,255,.75); line-height: 1.55; }

/* ======================== SKILLS ======================== */
.skills-bg { background: #fff; }
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.skills-img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.skills-img-wrap img { width: 100%; height: 440px; object-fit: cover; }

.skill-items { display: flex; flex-direction: column; gap: 26px; }
.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.skill-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .97rem;
  color: var(--dark);
}
.skill-pct {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .95rem;
  color: var(--blue);
}
.skill-track {
  height: 10px;
  background: var(--gray-100);
  border-radius: var(--r-full);
  overflow: hidden;
}
.skill-fill {
  height: 100%;
  width: 0%;
  border-radius: var(--r-full);
  transition: width 1.4s cubic-bezier(.22,.61,.36,1);
}
.sf-1 { background: var(--grad-blue); }
.sf-2 { background: var(--grad-sky); }
.sf-3 { background: var(--grad-orange); }
.sf-4 { background: var(--grad-teal); }

/* ======================== SERVICES ======================== */
.services-bg { background: var(--bg); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  transition: all .25s var(--ease);
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(21,101,192,.15);
}
.svc-img { height: 200px; overflow: hidden; position: relative; }
.svc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.svc-card:hover .svc-img img { transform: scale(1.08); }
.svc-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(13,27,64,.65), transparent);
}
.svc-icon {
  position: absolute;
  bottom: 14px; left: 20px;
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.3);
}
.svc-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.svc-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.svc-desc {
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 16px;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: .88rem;
  font-weight: 700;
  color: var(--blue);
  transition: gap .2s;
}
.svc-link:hover { gap: 12px; }

/* ======================== CTA BANNER ======================== */
.cta-banner {
  background: var(--grad-hero);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  padding: 70px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 36px 36px;
}
.cta-content { position: relative; max-width: 560px; }
.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.2);
  color: #FFD54F;
  padding: 5px 16px;
  border-radius: var(--r-full);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cta-h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}
.cta-p { color: rgba(255,255,255,.82); font-size: 1.05rem; }
.cta-right {
  position: relative;
  flex-shrink: 0;
  text-align: center;
}
.cta-phone {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: #FFD54F;
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ======================== PRICING ======================== */
.pricing-bg { background: var(--bg); }
.ptab-wrap { display: flex; justify-content: center; margin-bottom: 48px; }
.ptabs {
  display: inline-flex;
  background: var(--gray-100);
  border-radius: var(--r-full);
  padding: 5px;
  gap: 4px;
}
.ptab {
  padding: 11px 28px;
  border-radius: var(--r-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .92rem;
  color: var(--gray-600);
  background: none;
  border: none;
  cursor: pointer;
  transition: all .22s;
}
.ptab.active {
  background: var(--grad-blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(21,101,192,.38);
}

.price-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.price-card {
  background: #fff;
  border-radius: var(--r-lg);
  border: 2px solid var(--gray-100);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: all .25s var(--ease);
  position: relative;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: var(--shadow-xl);
}
.price-card.featured {
  background: var(--grad-hero);
  border-color: transparent;
  box-shadow: var(--shadow-xl);
}
.pop-badge {
  position: absolute;
  top: -13px;
  left: 50%; transform: translateX(-50%);
  background: var(--grad-orange);
  color: #fff;
  font-family: var(--font-heading);
  font-size: .73rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 4px 16px;
  border-radius: var(--r-full);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(255,109,0,.45);
}
.pname {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.price-card.featured .pname { color: rgba(255,255,255,.85); font-size: 1rem; font-weight: 600; }
.pamount {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}
.price-card.featured .pamount { color: #FFD54F; }
.pperiod {
  font-size: .83rem;
  color: var(--gray-400);
  margin-bottom: 20px;
  font-weight: 600;
}
.price-card.featured .pperiod { color: rgba(255,255,255,.6); }
.divider { height: 1px; background: var(--gray-100); margin-bottom: 20px; }
.price-card.featured .divider { background: rgba(255,255,255,.2); }
.pfeatures { display: flex; flex-direction: column; gap: 11px; flex-grow: 1; margin-bottom: 24px; }
.pfeat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--gray-700, #374151);
  font-weight: 500;
}
.pfeat i { color: var(--teal); font-size: 1.05rem; flex-shrink: 0; }
.price-card.featured .pfeat { color: rgba(255,255,255,.9); }
.price-card.featured .pfeat i { color: #69F0AE; }

/* ======================== TEAM ======================== */
.team-bg { background: #fff; }
.team-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg);
  border-radius: var(--r-xl);
  padding: 40px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-lg);
}
.team-single-img {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
  border: 1px solid var(--gray-200);
}
.team-single-img img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s var(--ease);
}
.team-single-img:hover img {
  transform: scale(1.03);
}
.team-single-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.team-single-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-pale);
  color: var(--blue);
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-full);
  width: fit-content;
}
.team-single-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.team-single-quote {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.75;
  font-style: italic;
  border-left: 4px solid var(--blue);
  padding-left: 18px;
  margin: 8px 0;
}
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.2;
}
.team-img-name span {
  font-size: .8rem;
  font-weight: 600;
  color: #FFD54F;
  letter-spacing: .3px;
}
.team-body { padding: 22px; }
.team-quote {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  border-left: 3px solid var(--blue-light);
  padding-left: 14px;
}

/* ======================== CONTACT ======================== */
.contact-bg { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.ci-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: var(--r-md);
  padding: 22px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all .2s;
}
.ci-card:hover {
  border-color: rgba(21,101,192,.2);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.ci-icon {
  width: 50px; height: 50px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  flex-shrink: 0;
}
.ci-label {
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.ci-val {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}
.ci-val a { color: var(--dark); }
.ci-val a:hover { color: var(--blue); }

.contact-form {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 40px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
}
.form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-sub { font-size: .92rem; color: var(--gray-600); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fg { margin-bottom: 18px; }
.fg label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .88rem;
  color: var(--gray-700, #374151);
  margin-bottom: 8px;
}
.fg input, .fg textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--dark);
  transition: all .2s;
}
.fg input:focus, .fg textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(21,101,192,.1);
}
.fg textarea { min-height: 120px; resize: vertical; }

/* ======================== FOOTER ======================== */
.footer { background: var(--navy); color: rgba(255,255,255,.75); padding-top: 80px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-text { color: #fff; }
.footer-desc {
  font-size: .9rem;
  line-height: 1.7;
  margin-top: 14px;
  color: rgba(255,255,255,.55);
}
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.soc-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  transition: all .2s;
}
.soc-icon:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-3px);
}
.f-col-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.f-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 3px;
  background: var(--blue-light);
  border-radius: var(--r-full);
}
.f-links { display: flex; flex-direction: column; gap: 11px; }
.f-link {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.f-link:hover { color: #fff; transform: translateX(4px); }
.f-link i { font-size: .8rem; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  color: rgba(255,255,255,.4);
}

/* ======================== FLOATERS ======================== */
.floaters {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  transition: all .22s;
  border: none;
  cursor: pointer;
}
.float-wa { background: #25D366; }
.float-wa:hover { transform: scale(1.12); box-shadow: 0 12px 30px rgba(37,211,102,.5); color: #fff; }
.float-call { background: var(--grad-blue); }
.float-call:hover { transform: scale(1.12); box-shadow: 0 12px 30px rgba(21,101,192,.55); color: #fff; }

/* ======================== WHATSAPP CHAT WIDGET ======================== */
.wa-chat-widget {
  position: fixed;
  bottom: 100px; right: 28px;
  z-index: 799;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-chat-bubble {
  background: #fff;
  border-radius: 18px 18px 4px 18px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.08);
  max-width: 240px;
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  transform-origin: bottom right;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  pointer-events: none;
  border: 1px solid rgba(37,211,102,.15);
}
.wa-chat-bubble.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-chat-bubble .wab-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-100);
}
.wa-chat-bubble .wab-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; flex-shrink: 0;
}
.wa-chat-bubble .wab-name {
  font-weight: 700;
  font-size: .82rem;
  color: var(--navy);
}
.wa-chat-bubble .wab-status {
  font-size: .72rem;
  color: #25D366;
  display: flex; align-items: center; gap: 4px;
}
.wa-chat-bubble .wab-status::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #25D366;
  display: inline-block;
}
.wa-chat-bubble .wab-msg {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 12px;
}
.wa-chat-bubble .wab-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  padding: 9px 14px;
  border-radius: var(--r-full);
  transition: background .2s, transform .2s;
}
.wa-chat-bubble .wab-cta:hover { background: #1ebe5d; transform: scale(1.04); }
.wa-chat-bubble .wab-cta i { font-size: 1.1rem; }
.wa-chat-dismiss {
  position: absolute;
  top: 8px; right: 10px;
  background: none; border: none; cursor: pointer;
  color: var(--gray-400); font-size: 1rem; line-height: 1;
  padding: 2px;
}
.wa-chat-dismiss:hover { color: var(--gray-800); }
.wa-chat-bubble { position: relative; }

/* ======================== TESTIMONIALS ======================== */
.testimonials-bg {
  background: linear-gradient(180deg, #EBF4FF 0%, #F8FBFF 100%);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.testi-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(21,101,192,.07);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: -10px; left: 18px;
  font-size: 7rem;
  line-height: 1;
  color: var(--blue-pale);
  font-family: Georgia, serif;
  pointer-events: none;
  z-index: 0;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.testi-card.featured {
  border: 2px solid var(--blue);
  background: linear-gradient(145deg, #fff 60%, #E3F2FD 100%);
}
.testi-card.featured::after {
  content: '⭐ Top Review';
  position: absolute;
  top: 18px; right: 18px;
  background: var(--blue);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 4px 10px;
  border-radius: var(--r-full);
}
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.testi-stars i {
  color: #FFC107;
  font-size: 1.05rem;
}
.testi-quote {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative; z-index: 1;
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
}
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 800;
  flex-shrink: 0;
  font-family: var(--font-heading);
}
.testi-name {
  font-weight: 700;
  font-size: .92rem;
  color: var(--navy);
  line-height: 1.2;
}
.testi-loc {
  font-size: .78rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}
.testi-loc i { font-size: .8rem; color: var(--blue); }

/* Service badge on testimonials */
.testi-service {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-full);
  margin-bottom: 12px;
}

/* ======================== GOOGLE MAP EMBED ======================== */
.map-wrap {
  margin-top: 48px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--blue-pale);
  position: relative;
}
.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
  filter: saturate(1.1) contrast(1.02);
}
.map-label {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--blue);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-size: .82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-md);
  pointer-events: none;
}

/* ======================== STAT COUNTER ======================== */
.stat-num {
  display: inline-block;
  transition: all .3s;
}
.hero-stat.counting .stat-num {
  opacity: .85;
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1100px) {
  .price-row { grid-template-columns: repeat(2,1fr); }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .strip-row { grid-template-columns: repeat(3,1fr); }
  .testi-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .hero-grid, .about-grid, .why-grid, .skills-grid, .contact-grid, .team-showcase { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 2.5rem; }
  .sec-title { font-size: 2rem; }
  .cta-banner { flex-direction: column; padding: 50px 30px; text-align: center; }
  .cta-btns { justify-content: center; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hcard-1, .hcard-2 { display: none; }
  .team-grid { grid-template-columns: 1fr; }
  .team-showcase { padding: 24px 20px; gap: 28px; }
  .team-single-img img { max-height: 340px; }
  .ft-divider { display: none; }
  .ft-inner { gap: 12px; padding: 16px 0; justify-content: center; }
  .ft-label { padding-right: 0; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero-h1 { font-size: 2rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .strip-row { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .wa-chat-bubble { max-width: 200px; }
  .map-wrap iframe { height: 260px; }
  .ft-packages { justify-content: center; }
  .ft-pkg { min-width: 90px; padding: 8px 14px; }
  .ft-speed { font-size: 1.2rem; }
  .team-showcase { padding: 20px 16px; gap: 20px; }
  .team-single-img img { width: 100%; max-height: 280px; object-fit: cover; }
}
