/* ============================================
   NIMA INVESTMENTS AFRICA LTD
   Main Stylesheet — nima.css
   Version 1.0 — June 2026

   Brand Colors:
   --navy:       #1A4F8A  (Deep Navy Blue)
   --navy-dark:  #1B3F7A  (Darker Blue)
   --navy-deep:  #122648  (Near-black Navy)
   --green:      #3DBE7A  (Emerald Green)
   --green-lt:   #2DC97E  (Light Emerald)
   --teal:       #2AACAA  (Mid Teal)
   --teal-lt:    #3BBFBD  (Light Teal)
   --white:      #FFFFFF
   --off-white:  #F4F8F6  (Cool White)
   --green-pale: #EBF7F2  (Very Light Green)
   --text-dark:  #1A2E3B
   --text-mid:   #3D5A6C
   --text-light: #7A9BAD
============================================ */

/* =============================================
   NIMA INVESTMENTS AFRICA - BRAND SYSTEM
   Primary:    #1A4F8A  (Deep Navy Blue)
   Dark Navy:  #1B3F7A  (Darker Blue)
   Deepest:    #122648  (Near-black navy)
   Green:      #3DBE7A  (Emerald Green)
   Green Lt:   #2DC97E  (Light Emerald)
   Teal:       #2AACAA  (Mid Teal)
   Teal Lt:    #3BBFBD  (Light Teal)
   Off-white:  #F4F8F6  (Cool white)
   Green Pale: #EBF7F2  (Very light green)
============================================= */
:root {
  --navy:       #1A4F8A;
  --navy-dark:  #1B3F7A;
  --navy-deep:  #122648;
  --green:      #3DBE7A;
  --green-lt:   #2DC97E;
  --teal:       #2AACAA;
  --teal-lt:    #3BBFBD;
  --white:      #FFFFFF;
  --off-white:  #F4F8F6;
  --green-pale: #EBF7F2;
  --text-dark:  #1A2E3B;
  --text-mid:   #3D5A6C;
  --text-light: #7A9BAD;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================
   NAVIGATION
============================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(18, 38, 72, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(61, 190, 122, 0.12);
  transition: height 0.3s ease, background 0.3s ease;
}

nav.scrolled {
  height: 60px;
  background: rgba(18, 38, 72, 0.99);
  border-bottom-color: rgba(61, 190, 122, 0.18);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
  filter: brightness(1.05);
}

nav.scrolled .nav-logo img { height: 34px; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  letter-spacing: 0.01em;
}

.nav-logo-tagline {
  font-size: 9.5px;
  color: var(--green-lt);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 3px;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 7px;
  letter-spacing: 0.02em;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-links a.active {
  color: var(--green-lt);
}

/* CTA button */
.nav-cta {
  background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  box-shadow: 0 3px 14px rgba(61,190,122,0.28) !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(61,190,122,0.38) !important;
  background: linear-gradient(135deg, #3DBE7A 0%, #2AACAA 100%) !important;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px;
  transition: background 0.2s;
}

.hamburger:hover { background: rgba(255,255,255,0.1); }

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger open state */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: rgba(18, 38, 72, 0.99);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(61,190,122,0.15);
  padding: 16px 5% 24px;
  flex-direction: column;
  gap: 2px;
  z-index: 999;
  animation: slideDown 0.25s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  padding: 13px 12px;
  border-radius: 8px;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu a:last-child {
  border-bottom: none;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%);
  color: var(--white);
  font-weight: 600;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(61,190,122,0.28);
}

.mobile-menu a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.mobile-menu a:last-child:hover {
  background: linear-gradient(135deg, #45d088 0%, #32bcba 100%);
}

.mobile-menu a .arrow {
  font-size: 12px;
  opacity: 0.4;
}

/* Nav scroll indicator */
.nav-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--teal));
  width: 0%;
  transition: width 0.1s linear;
}

/* ============================================
   HERO
============================================ */
.hero {
  min-height: 100vh;
  background: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 5% 0;
}

/* Layered background atmosphere */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-layer::before {
  content: '';
  position: absolute;
  top: -10%; right: -8%;
  width: 55vw; height: 55vw;
  max-width: 700px; max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,172,170,0.07) 0%, transparent 68%);
}

.hero-bg-layer::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -8%;
  width: 45vw; height: 45vw;
  max-width: 580px; max-height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,190,122,0.06) 0%, transparent 65%);
}

/* Subtle grid texture - very faint on white */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,79,138,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,79,138,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

/* Diagonal accent line */
.hero-accent-line {
  position: absolute;
  top: 0; right: 28%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(42,172,170,0.15) 40%, rgba(61,190,122,0.1) 70%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 60px 0 80px;
}

/* Left - main content */
.hero-content {}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42,172,170,0.08);
  border: 1px solid rgba(42,172,170,0.2);
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}

.hero-eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: livepulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes livepulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(61,190,122,0.4); }
  50% { opacity: 0.7; transform: scale(0.85); box-shadow: 0 0 0 5px rgba(61,190,122,0); }
}

.hero-eyebrow span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-headline {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5.2vw, 66px);
  color: var(--navy-dark);
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s ease both;
  letter-spacing: -0.02em;
}

.hero-headline .line-green {
  display: block;
  background: linear-gradient(135deg, var(--green) 0%, var(--teal-lt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-headline .line-white {
  display: block;
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 17.5px);
  color: var(--text-mid);
  max-width: 500px;
  line-height: 1.78;
  font-weight: 300;
  margin-bottom: 40px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-sub strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* CTA buttons */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
  margin-bottom: 52px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 22px rgba(61,190,122,0.33);
  transition: transform 0.22s, box-shadow 0.22s;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(61,190,122,0.45);
}

.btn-primary svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--navy);
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(26,79,138,0.2);
  transition: all 0.22s;
}

.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(42,172,170,0.05);
}

/* Client trust logos row */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.4s ease both;
}

.hero-trust-label {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}

.hero-trust-divider {
  width: 1px; height: 20px;
  background: rgba(26,79,138,0.12);
  flex-shrink: 0;
}

.hero-trust-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-pale);
  border: 1px solid rgba(42,172,170,0.15);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11.5px;
  color: var(--text-mid);
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s;
}

.trust-badge:hover {
  background: rgba(42,172,170,0.1);
  border-color: rgba(42,172,170,0.3);
  color: var(--navy);
}

.trust-badge-icon {
  font-size: 13px;
}

/* Right - stat cards column */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeUp 0.7s 0.35s ease both;
}

.stat-card {
  background: var(--off-white);
  border: 1px solid rgba(42,172,170,0.15);
  border-radius: 16px;
  padding: 22px 26px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--teal));
  opacity: 0;
  transition: opacity 0.3s;
}

.stat-card:hover {
  background: var(--white);
  border-color: rgba(42,172,170,0.3);
  transform: translateX(-3px);
  box-shadow: 0 8px 32px rgba(26,79,138,0.08);
}

.stat-card:hover::before { opacity: 1; }

.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 12px;
  color: var(--text-mid);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 600;
}

.stat-detail {
  font-size: 12.5px;
  color: var(--text-light);
  margin-top: 4px;
  font-weight: 300;
}

/* Bottom tagline strip */
.hero-tagline-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(26,79,138,0.08);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.hero-tagline-line {
  flex: 1;
  max-width: 140px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42,172,170,0.3), transparent);
}

.hero-tagline-text {
  font-family: 'Sora', sans-serif;
  font-size: 12.5px;
  font-style: italic;
  color: var(--text-light);
  letter-spacing: 0.07em;
  white-space: nowrap;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero responsive */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 48px 0 64px;
  }
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .stat-card {
    flex: 1;
    min-width: 140px;
  }
  .stat-card:hover { transform: translateY(-3px); }
}

@media (max-width: 600px) {
  .hero-stats { flex-direction: column; }
  .stat-card { flex: auto; }
  .hero-eyebrow { font-size: 10px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .hero-trust-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-tagline-line { display: none; }
}

/* ============================================
   TRUST BAR
============================================ */
.trust-bar {
  background: var(--navy-dark);
  border-top: 1px solid rgba(61,190,122,0.12);
  border-bottom: 1px solid rgba(61,190,122,0.12);
  padding: 0 5%;
  overflow: hidden;
  position: relative;
}

.trust-bar-inner {
  display: flex;
  align-items: stretch;
  max-width: 1240px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 18px 28px 18px 0;
  flex: 1;
  min-width: 180px;
  position: relative;
  transition: background 0.2s;
}

.trust-bar-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(61,190,122,0.15);
}

.trust-bar-item:first-child { padding-left: 0; }

.trust-bar-icon {
  width: 36px; height: 36px;
  background: rgba(61,190,122,0.1);
  border: 1px solid rgba(61,190,122,0.18);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.25s;
}

.trust-bar-item:hover .trust-bar-icon {
  background: rgba(61,190,122,0.18);
  border-color: rgba(61,190,122,0.35);
  transform: scale(1.08);
}

.trust-bar-text {}

.trust-bar-title {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 2px;
}

.trust-bar-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.42);
  font-weight: 400;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .trust-bar-inner { gap: 0; }
  .trust-bar-item {
    min-width: calc(50% - 14px);
    padding: 16px 20px 16px 0;
  }
  .trust-bar-item:nth-child(2)::after,
  .trust-bar-item:nth-child(4)::after { display: none; }
}

@media (max-width: 540px) {
  .trust-bar-item {
    min-width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(61,190,122,0.08);
  }
  .trust-bar-item:not(:last-child)::after { display: none; }
  .trust-bar-item:last-child { border-bottom: none; }
}


/* ============================================
   SHARED SECTION STYLES
============================================ */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.section-title span {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  max-width: 520px;
}
/* ============================================
   SERVICES SECTION
============================================ */
.services { background: var(--off-white); padding: 96px 5%; }
.services-header { text-align: center; margin-bottom: 64px; }
.services-header .section-desc { margin: 0 auto; text-align: center; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1240px;
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(26,79,138,0.08);
  border-radius: 18px;
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--teal), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(42,172,170,0.2);
  box-shadow: 0 16px 48px rgba(26,79,138,0.09);
}
.service-card.featured {
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy-deep) 100%);
  border-color: rgba(61,190,122,0.2);
}
.service-card.featured::before { background: linear-gradient(90deg, var(--green), var(--teal)); }
.service-card.featured:hover { border-color: rgba(61,190,122,0.4); box-shadow: 0 16px 48px rgba(18,38,72,0.25); }
.service-icon-wrap {
  width: 52px; height: 52px;
  background: var(--green-pale);
  border: 1px solid rgba(42,172,170,0.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 22px; transition: all 0.3s;
}
.service-card:hover .service-icon-wrap { background: rgba(42,172,170,0.12); border-color: rgba(42,172,170,0.3); transform: scale(1.05); }
.service-card.featured .service-icon-wrap { background: rgba(61,190,122,0.12); border-color: rgba(61,190,122,0.2); }
.service-name { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.25; }
.service-card.featured .service-name { color: var(--white); }
.service-desc-text { font-size: 13.5px; color: var(--text-mid); line-height: 1.7; font-weight: 300; margin-bottom: 18px; }
.service-card.featured .service-desc-text { color: rgba(255,255,255,0.55); }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tag { font-size: 11px; background: var(--green-pale); color: var(--navy); border: 1px solid rgba(42,172,170,0.12); padding: 3px 10px; border-radius: 100px; font-weight: 500; transition: all 0.2s; }
.service-card:hover .service-tag { background: rgba(42,172,170,0.08); border-color: rgba(42,172,170,0.2); }
.service-cta-link { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%); color: var(--white); font-weight: 600; font-size: 13px; padding: 10px 20px; border-radius: 8px; text-decoration: none; box-shadow: 0 4px 14px rgba(61,190,122,0.28); transition: all 0.2s; margin-top: 8px; }
.service-cta-link:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(61,190,122,0.38); }
.mid-cta {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-deep) 100%);
  border-radius: 18px; padding: 36px 40px;
  max-width: 1240px; margin: 48px auto 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  border: 1px solid rgba(61,190,122,0.15);
  position: relative; overflow: hidden;
}
.mid-cta::before { content: ''; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(42,172,170,0.12) 0%, transparent 70%); pointer-events: none; }
.mid-cta-title { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.mid-cta-sub { font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 300; }
.mid-cta-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.btn-cta-white { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--navy-dark); padding: 12px 24px; border-radius: 9px; font-weight: 700; font-size: 14px; text-decoration: none; transition: all 0.2s; white-space: nowrap; }
.btn-cta-white:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-cta-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: rgba(255,255,255,0.8); padding: 12px 22px; border-radius: 9px; font-weight: 500; font-size: 14px; text-decoration: none; border: 1px solid rgba(255,255,255,0.2); transition: all 0.2s; white-space: nowrap; }
.btn-cta-ghost:hover { border-color: var(--green); color: var(--white); background: rgba(61,190,122,0.08); }
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } .mid-cta { padding: 28px 24px; } .mid-cta-actions { width: 100%; } .btn-cta-white, .btn-cta-ghost { flex: 1; justify-content: center; } }


/* ============================================
   WHO WE SERVE
============================================ */
.who-we-serve {
  background: var(--navy-dark);
  padding: 96px 5%;
  position: relative;
  overflow: hidden;
}

.who-we-serve::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,190,122,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.who-we-serve::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,172,170,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.who-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.who-left .section-tag { color: var(--green-lt); }

.who-left .section-title {
  color: var(--white);
}

.who-left .section-title span {
  background: linear-gradient(135deg, var(--green) 0%, var(--teal-lt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.who-left .section-desc {
  color: rgba(255,255,255,0.52);
  max-width: 440px;
  margin-bottom: 36px;
}

.who-stat-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.who-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.who-stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green) 0%, var(--teal-lt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.who-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* Client type cards grid */
.who-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.who-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(61,190,122,0.1);
  border-radius: 16px;
  padding: 26px 22px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.who-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.who-card:hover {
  background: rgba(61,190,122,0.07);
  border-color: rgba(61,190,122,0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.who-card:hover::after { transform: scaleX(1); }

.who-card-icon {
  font-size: 26px;
  margin-bottom: 14px;
  display: block;
}

.who-card-name {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 7px;
  line-height: 1.2;
}

.who-card-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  font-weight: 300;
}

@media (max-width: 960px) {
  .who-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .who-left .section-desc { max-width: 100%; }
}

@media (max-width: 480px) {
  .who-cards { grid-template-columns: 1fr; }
}


/* ============================================
   WHY NIMA
============================================ */
.why-nima {
  background: var(--off-white);
  padding: 96px 5%;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
}

.why-left .section-desc { margin-bottom: 0; }

.why-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-point {
  background: var(--white);
  border: 1px solid rgba(26,79,138,0.07);
  border-radius: 16px;
  padding: 24px 26px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.why-point::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--green), var(--teal));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
  border-radius: 0 0 0 16px;
}

.why-point:hover {
  border-color: rgba(42,172,170,0.2);
  box-shadow: 0 8px 32px rgba(26,79,138,0.07);
  transform: translateX(4px);
}

.why-point:hover::before { transform: scaleY(1); }

.why-num {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  padding-top: 2px;
  transition: opacity 0.3s;
}

.why-point:hover .why-num { opacity: 0.55; }

.why-point-body {}

.why-point-title {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.why-point-desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}

/* Tagline block */
.tagline-block {
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy-deep) 100%);
  border-radius: 20px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(61,190,122,0.12);
  margin-top: 12px;
}

.tagline-block::before {
  content: '"';
  position: absolute;
  top: -30px; left: 20px;
  font-family: 'Sora', sans-serif;
  font-size: 200px;
  color: rgba(61,190,122,0.05);
  line-height: 1;
  font-weight: 900;
  pointer-events: none;
}

.tagline-block::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,172,170,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.tagline-quote {
  font-family: 'Sora', sans-serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.tagline-quote em {
  font-style: italic;
  background: linear-gradient(135deg, var(--green) 0%, var(--teal-lt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline-body {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

@media (max-width: 960px) {
  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 540px) {
  .why-point { padding: 20px 18px; gap: 14px; }
  .tagline-block { padding: 32px 24px; }
}


/* ============================================
   HOW IT WORKS
============================================ */
.how-it-works {
  background: var(--white);
  padding: 96px 5%;
}

.how-header {
  text-align: center;
  margin-bottom: 72px;
}

.how-header .section-desc {
  margin: 0 auto;
  text-align: center;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}

/* Connecting line between steps */
.how-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--teal), rgba(42,172,170,0.2));
  z-index: 0;
}

.how-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(42,172,170,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  z-index: 2;
  transition: all 0.35s ease;
}

.step-circle-inner {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.step-num-text {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.how-step:hover .step-circle {
  border-color: var(--teal);
  box-shadow: 0 0 0 6px rgba(42,172,170,0.08);
}

.how-step:hover .step-circle-inner {
  background: linear-gradient(135deg, var(--green), var(--teal));
}

.how-step:hover .step-num-text {
  background: linear-gradient(135deg, #fff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-title {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.step-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}

/* Bottom reassurance strip */
.how-reassure {
  max-width: 1240px;
  margin: 64px auto 0;
  background: var(--green-pale);
  border: 1px solid rgba(42,172,170,0.15);
  border-radius: 16px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.how-reassure-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.how-reassure-text {}

.how-reassure-title {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.how-reassure-sub {
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.6;
}

.how-reassure-cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%);
  color: var(--white);
  padding: 11px 22px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(61,190,122,0.28);
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.how-reassure-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(61,190,122,0.38);
}

@media (max-width: 860px) {
  .how-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }
  .how-steps::before { display: none; }
}

@media (max-width: 500px) {
  .how-steps { grid-template-columns: 1fr; gap: 36px; }
  .how-reassure { flex-direction: column; align-items: flex-start; }
  .how-reassure-cta { margin-left: 0; width: 100%; justify-content: center; }
}


/* ============================================
   AI CHATBOT WIDGET
============================================ */
.chat-launcher {
  position: fixed;
  bottom: 28px; left: 28px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.chat-bubble-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(26,79,138,0.35);
  transition: all 0.25s;
  animation: floatIn 0.5s 1.2s ease both;
  position: relative;
}

.chat-bubble-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(26,79,138,0.45);
}

.chat-bubble-btn svg {
  width: 26px; height: 26px;
  color: var(--white);
  transition: all 0.25s;
}

.chat-bubble-btn .icon-open  { display: flex; }
.chat-bubble-btn .icon-close { display: none; }
.chat-bubble-btn.open .icon-open  { display: none; }
.chat-bubble-btn.open .icon-close { display: flex; }

/* Notification dot */
.chat-notif {
  position: absolute;
  top: 2px; right: 2px;
  width: 13px; height: 13px;
  background: var(--green);
  border: 2px solid var(--white);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

/* Tooltip label */
.chat-tooltip {
  background: var(--navy-dark);
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  animation: floatIn 0.5s 2s ease both;
  border: 1px solid rgba(61,190,122,0.18);
  position: relative;
}

.chat-tooltip::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 20px;
  width: 9px; height: 9px;
  background: var(--navy-dark);
  border-right: 1px solid rgba(61,190,122,0.18);
  border-bottom: 1px solid rgba(61,190,122,0.18);
  transform: rotate(45deg);
}

.chat-tooltip.hidden { display: none; }

/* Chat window */
.chat-window {
  position: fixed;
  bottom: 100px; left: 28px;
  width: 360px;
  max-height: 520px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(26,79,138,0.18), 0 4px 16px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 499;
  border: 1px solid rgba(42,172,170,0.12);
  transform-origin: bottom left;
  animation: chatOpen 0.3s ease both;
}

@keyframes chatOpen {
  from { opacity: 0; transform: scale(0.92) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.chat-window.hidden {
  display: none;
}

/* Chat header */
.chat-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-deep) 100%);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(61,190,122,0.12);
}

.chat-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.chat-header-info {}

.chat-header-name {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.chat-header-status {
  font-size: 11px;
  color: var(--green-lt);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.chat-status-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

.chat-close-btn {
  margin-left: auto;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 7px;
  width: 28px; height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
  flex-shrink: 0;
}

.chat-close-btn:hover {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}

/* Messages area */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--off-white);
  min-height: 0;
}

.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(42,172,170,0.2); border-radius: 4px; }

/* Message bubbles */
.msg {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  max-width: 88%;
}

.msg.bot { align-self: flex-start; }
.msg.user { align-self: flex-end; flex-direction: row-reverse; }

.msg-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.msg-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.6;
  font-family: "DM Sans", sans-serif;
}

.msg.bot .msg-bubble {
  background: var(--white);
  color: var(--text-dark);
  border: 1px solid rgba(26,79,138,0.08);
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.msg.user .msg-bubble {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: var(--white);
  border-bottom-right-radius: 4px;
}

/* Typing indicator */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
}

.typing-dots {
  background: var(--white);
  border: 1px solid rgba(26,79,138,0.08);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  padding: 12px 16px;
  display: flex;
  gap: 4px;
  align-items: center;
}

.typing-dots span {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: typingBounce 1.2s ease-in-out infinite;
  opacity: 0.5;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-5px); opacity: 1; }
}

/* Quick reply chips */
.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 14px;
  background: var(--off-white);
  border-top: 1px solid rgba(26,79,138,0.06);
  flex-shrink: 0;
}

.qr-chip {
  font-size: 11.5px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(42,172,170,0.2);
  padding: 5px 12px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.qr-chip:hover {
  background: var(--green-pale);
  border-color: var(--teal);
  color: var(--navy-dark);
}

/* Input area */
.chat-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: var(--white);
  border-top: 1px solid rgba(26,79,138,0.08);
  flex-shrink: 0;
}

.chat-input {
  flex: 1;
  background: var(--off-white);
  border: 1px solid rgba(42,172,170,0.18);
  border-radius: 10px;
  padding: 9px 14px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  line-height: 1.4;
  max-height: 80px;
  overflow-y: auto;
}

.chat-input:focus { border-color: var(--teal); background: var(--white); }
.chat-input::placeholder { color: var(--text-light); }

.chat-send-btn {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  border: none;
  border-radius: 9px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(61,190,122,0.25);
}

.chat-send-btn:hover { transform: scale(1.07); box-shadow: 0 4px 12px rgba(61,190,122,0.35); }
.chat-send-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.chat-send-btn svg { width: 16px; height: 16px; color: var(--white); }

@media (max-width: 480px) {
  .chat-window { width: calc(100vw - 32px); left: 16px; bottom: 90px; }
  .chat-launcher { left: 16px; bottom: 16px; }
}

@keyframes floatIn {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}


/* ============================================
   CONTACT & QUOTE FORM
============================================ */
.contact {
  background: var(--navy-deep);
  padding: 96px 5%;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,172,170,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.contact::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,190,122,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Left side */
.contact-left .section-tag { color: var(--green-lt); }
.contact-left .section-title { color: var(--white); }
.contact-left .section-title span {
  background: linear-gradient(135deg, var(--green) 0%, var(--teal-lt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-left .section-desc {
  color: rgba(255,255,255,0.5);
  margin-bottom: 44px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: all 0.2s;
  padding: 4px 0;
}

.contact-info-item:hover .contact-info-icon {
  background: rgba(61,190,122,0.2);
  border-color: rgba(61,190,122,0.4);
  transform: scale(1.05);
}

.contact-info-icon {
  width: 46px; height: 46px;
  background: rgba(61,190,122,0.1);
  border: 1px solid rgba(61,190,122,0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.2s;
}

.contact-info-text {}

.contact-info-label {
  font-size: 10.5px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-info-value {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
  transition: color 0.2s;
}

.contact-info-item:hover .contact-info-value { color: var(--green-lt); }

/* Form card */
.contact-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(61,190,122,0.14);
  border-radius: 22px;
  padding: 40px 36px;
  backdrop-filter: blur(8px);
}

.form-title {
  font-family: "Sora", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group { margin-bottom: 16px; }

.form-label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.form-label .required { color: var(--green-lt); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(42,172,170,0.18);
  border-radius: 10px;
  padding: 11px 15px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: all 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.22); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--teal);
  background: rgba(42,172,170,0.07);
  box-shadow: 0 0 0 3px rgba(42,172,170,0.1);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.35)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.form-select option { background: var(--navy-deep); color: var(--white); }

.form-textarea { resize: vertical; min-height: 100px; line-height: 1.6; }

/* Submit button */
.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%);
  color: var(--white);
  border: none;
  padding: 14px 20px;
  border-radius: 11px;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 6px;
  box-shadow: 0 4px 18px rgba(61,190,122,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.01em;
}

.form-submit:hover {
  box-shadow: 0 8px 28px rgba(61,190,122,0.45);
  transform: translateY(-1px);
}

.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  font-size: 11.5px;
  color: rgba(255,255,255,0.28);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success-icon { font-size: 52px; margin-bottom: 16px; }

.form-success-title {
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-lt);
  margin-bottom: 10px;
}

.form-success-text {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 24px;
}

.form-success-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.form-success-wa:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }

@media (max-width: 960px) {
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 540px) {
  .contact-form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
}


/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(61,190,122,0.1);
}

.footer-main {
  padding: 64px 5% 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1240px;
  margin: 0 auto;
}

/* Brand column */
.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 18px;
}

.footer-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.footer-logo-name {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  line-height: 1.2;
}

.footer-logo-tag {
  font-size: 10px;
  color: var(--green-lt);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}

.footer-tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,0.42);
  line-height: 1.75;
  font-weight: 300;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s;
}

.footer-social-btn:hover {
  background: rgba(61,190,122,0.12);
  border-color: rgba(61,190,122,0.3);
  color: var(--green-lt);
  transform: translateY(-2px);
}

/* Nav columns */
.footer-col {}

.footer-col-title {
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  list-style: none;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--green-lt); }

.footer-links a .link-arrow {
  font-size: 10px;
  opacity: 0;
  transition: all 0.2s;
  transform: translateX(-4px);
}

.footer-links a:hover .link-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Contact column */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.footer-contact-item:hover .footer-contact-val { color: var(--green-lt); }

.footer-contact-icon {
  font-size: 14px;
  margin-top: 1px;
  flex-shrink: 0;
  opacity: 0.6;
}

.footer-contact-val {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  font-weight: 400;
  transition: color 0.2s;
}

/* Divider */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 0 5%;
}

/* Bottom copyright bar */
.footer-bottom {
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1240px;
  margin: 0 auto;
}

.footer-copyright {
  font-size: 12.5px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}

.footer-copyright strong { color: rgba(255,255,255,0.5); font-weight: 600; }

.footer-copyright a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-copyright a:hover { color: var(--green-lt); }

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-links a:hover { color: var(--green-lt); }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 500;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: all 0.25s;
  animation: floatInRight 0.5s 1.5s ease both;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55);
}

/* WhatsApp tooltip */
.whatsapp-float::before {
  content: "Chat with us";
  position: absolute;
  right: 68px;
  background: var(--navy-dark);
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: all 0.25s;
  pointer-events: none;
  border: 1px solid rgba(61,190,122,0.2);
}

.whatsapp-float:hover::before {
  opacity: 1;
  transform: translateX(0);
}

@keyframes floatInRight {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 100px; right: 28px;
  z-index: 500;
  width: 40px; height: 40px;
  background: rgba(18,38,72,0.85);
  border: 1px solid rgba(42,172,170,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(42,172,170,0.2);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 16px; height: 16px;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 960px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 560px) {
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .whatsapp-float { bottom: 16px; right: 16px; }
  .back-to-top { bottom: 86px; right: 16px; }
  .chat-launcher { bottom: 16px; left: 16px; }
}




/* ============================================
   HOMEPAGE REVIEWS SECTION
============================================ */
.reviews-section {
  background: var(--white);
  padding: 88px 5%;
}
.reviews-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}
.reviews-section-header .section-desc { margin-bottom: 0; }
.leave-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  border: 1px solid rgba(42,172,170,0.2);
  color: var(--navy);
  padding: 10px 20px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.leave-review-btn:hover {
  background: rgba(42,172,170,0.12);
  border-color: var(--teal);
  transform: translateY(-1px);
}

/* Overall rating bar */
.overall-rating {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-deep));
  border-radius: 18px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 36px;
  border: 1px solid rgba(61,190,122,0.12);
  flex-wrap: wrap;
}
.overall-num {
  font-family: 'Sora', sans-serif;
  font-size: 52px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green), var(--teal-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
}
.overall-stars { display: flex; gap: 5px; margin-bottom: 5px; }
.overall-stars i { font-size: 18px; color: #F59E0B; }
.overall-label { font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 300; }
.overall-cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: var(--white);
  padding: 12px 22px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(61,190,122,0.28);
  transition: all 0.2s;
}
.overall-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(61,190,122,0.38); }

/* Review cards */
.home-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.home-review-card {
  background: var(--off-white);
  border: 1px solid rgba(26,79,138,0.07);
  border-radius: 16px;
  padding: 26px 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.home-review-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--teal));
  opacity: 0;
  transition: opacity 0.3s;
}
.home-review-card:hover {
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(26,79,138,0.08);
  border-color: rgba(42,172,170,0.2);
}
.home-review-card:hover::before { opacity: 1; }
.hrc-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.hrc-stars i { font-size: 13px; color: #F59E0B; }
.hrc-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 18px;
}
.hrc-text::before {
  content: '"';
  font-size: 28px;
  color: var(--green-pale);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 0;
  position: relative;
  top: 9px;
  margin-right: 2px;
}
.hrc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--green-pale);
}
.hrc-name { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; color: var(--text-dark); }
.hrc-org  { font-size: 11px; color: var(--text-light); font-weight: 300; margin-top: 1px; }
.hrc-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--green-pale);
  border: 1px solid rgba(42,172,170,0.18);
  padding: 3px 8px;
  border-radius: 100px;
  font-size: 10px;
  color: var(--teal);
  font-weight: 600;
}

/* No reviews state */
.no-reviews-state {
  text-align: center;
  padding: 48px 20px;
  background: var(--off-white);
  border-radius: 16px;
  border: 1px dashed rgba(42,172,170,0.25);
  margin-bottom: 28px;
}
.no-reviews-state i { font-size: 36px; color: var(--text-light); display: block; margin-bottom: 12px; }
.no-reviews-state p { font-size: 14px; color: var(--text-mid); font-weight: 300; margin-bottom: 16px; }

.reviews-view-all {
  text-align: center;
}
.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}
.view-all-link:hover { color: var(--teal); }

@media (max-width: 900px) {
  .home-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .overall-rating { gap: 20px; }
  .overall-cta { margin-left: 0; }
}
@media (max-width: 560px) {
  .home-reviews-grid { grid-template-columns: 1fr; }
}