/* ============================================================
   EALOP (PVT) Ltd — Premium Corporate Website Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --navy:        #0a1628;
  --navy-mid:    #0d1f3c;
  --navy-light:  #152847;
  --navy-soft:   #1a3259;
  --teal:        #00d4aa;
  --teal-light:  #00f0c4;
  --teal-dark:   #009e80;
  --cyan:        #00b4d8;
  --slate:       #8a9bbf;
  --slate-light: #b8c5da;
  --white:       #ffffff;
  --off-white:   #f4f7fc;
  --grey-50:     #f8faff;
  --grey-100:    #eef2f9;
  --grey-200:    #d8e1f0;
  --text-dark:   #0a1628;
  --text-body:   #3d4f6e;
  --text-muted:  #6b7fa8;

  --shadow-sm:   0 2px 12px rgba(10, 22, 40, 0.08);
  --shadow-md:   0 8px 32px rgba(10, 22, 40, 0.14);
  --shadow-lg:   0 16px 64px rgba(10, 22, 40, 0.20);
  --shadow-teal: 0 8px 32px rgba(0, 212, 170, 0.25);
  --shadow-glow: 0 0 60px rgba(0, 212, 170, 0.15);

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;

  --section-pad: 100px 0;
  --container:   1200px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 10px; }

/* ── Selection ── */
::selection { background: var(--teal); color: var(--navy); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

#navbar.scrolled {
  padding: 14px 0;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 44px;
  width: auto;
  transition: var(--transition);
  object-fit: contain;
}

.nav-logo img:hover {
  opacity: 0.8;
}


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

.nav-logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.04em;
}

.nav-logo-sub {
  font-size: 0.62rem;
  color: var(--teal);
  letter-spacing: 0.15em;
  font-weight: 500;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  transition: var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--navy); opacity: 0.7; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  color: var(--navy) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-teal);
  transition: var(--transition) !important;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 212, 170, 0.4) !important;
  color: var(--navy) !important;
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.mobile-menu a:hover { color: var(--teal); }

.mobile-menu .nav-cta {
  padding: 14px 40px !important;
  font-size: 1rem !important;
  color: var(--navy) !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url('hero_bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.92) 0%,
    rgba(10, 22, 40, 0.75) 50%,
    rgba(0, 180, 216, 0.08) 100%
  );
  z-index: 1;
}

/* Animated grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(0,212,170,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,170,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,170,0.18), transparent 70%);
  top: -100px; right: -100px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(0,180,216,0.15), transparent 70%);
  bottom: 50px; left: -80px;
  animation-delay: -4s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-top: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 170, 0.12);
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease both;
}

.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.hero-badge span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 12px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--teal), var(--cyan), #7dd3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-slogan {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
  font-style: italic;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin-bottom: 44px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 16px 36px;
  border-radius: 50px;
  box-shadow: var(--shadow-teal);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 212, 170, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 15px 34px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-3px);
  background: rgba(0,212,170,0.06);
}

.btn-primary svg,
.btn-secondary svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.8s ease 0.5s both;
  flex-wrap: wrap;
}

.stat-item { text-align: left; }

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-number span { color: var(--teal); }

.stat-label {
  font-size: 0.78rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s ease 0.8s both;
}

.scroll-mouse {
  width: 26px; height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--teal);
  border-radius: 2px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  60%      { transform: translateY(10px); opacity: 0.3; }
}

.scroll-text {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
section { padding: var(--section-pad); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0,212,170,0.12), rgba(0,180,216,0.12));
  border: 1px solid rgba(0,212,170,0.25);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title.light { color: var(--white); }
.section-title.light .highlight {
  background: linear-gradient(135deg, var(--teal), #7dd3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-desc.light { color: rgba(255,255,255,0.65); }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,170,0.06), transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-card-main {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-card-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
}

.about-card-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.about-card-icon svg { width: 32px; height: 32px; color: var(--navy); }

.about-card-main h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.about-card-main p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.about-metric-row {
  display: flex;
  gap: 24px;
}

.about-metric {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}

.about-metric-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--teal);
  display: block;
}

.about-metric-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--grey-200);
}

.about-badge-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-badge-icon svg { width: 24px; height: 24px; color: var(--white); }

.about-badge-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.about-badge-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* About content */
.about-content .section-header { text-align: left; margin-bottom: 32px; }
.about-content .section-header .section-desc { margin: 0; }

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.pillar-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pillar-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(0,212,170,0.12), rgba(0,180,216,0.12));
  border: 1px solid rgba(0,212,170,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.pillar-icon svg { width: 22px; height: 22px; color: var(--teal); }

.pillar-item:hover .pillar-icon {
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  border-color: transparent;
}

.pillar-item:hover .pillar-icon svg { color: var(--navy); }

.pillar-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.pillar-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services {
  background: var(--white);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
  group: true;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,212,170,0.03), rgba(0,180,216,0.03));
  opacity: 0;
  transition: opacity 0.35s ease;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,212,170,0.2);
}

.service-card:hover::before { opacity: 1; }
.service-card:hover::after  { transform: scaleX(1); }

.service-icon-wrap {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(3deg);
}

.service-icon-wrap svg { width: 32px; height: 32px; }

/* Icon color themes */
.icon-teal   { background: linear-gradient(135deg, rgba(0,212,170,0.15), rgba(0,180,216,0.1)); }
.icon-blue   { background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(99,102,241,0.1)); }
.icon-purple { background: linear-gradient(135deg, rgba(168,85,247,0.15), rgba(236,72,153,0.1)); }
.icon-amber  { background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(249,115,22,0.1)); }
.icon-green  { background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(16,185,129,0.1)); }
.icon-rose   { background: linear-gradient(135deg, rgba(239,68,68,0.15), rgba(236,72,153,0.1)); }

.icon-teal   svg { color: var(--teal); }
.icon-blue   svg { color: #3b82f6; }
.icon-purple svg { color: #a855f7; }
.icon-amber  svg { color: #f59e0b; }
.icon-green  svg { color: #22c55e; }
.icon-rose   svg { color: #ef4444; }

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.coming-soon-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 8px;
  background: rgba(0, 229, 184, 0.1);
  color: var(--teal);
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal);
  background: rgba(0,212,170,0.08);
  border: 1px solid rgba(0,212,170,0.2);
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */
#why {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,170,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,170,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.why-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,212,170,0.06), transparent 60%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0,212,170,0.04), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.why-card:hover {
  border-color: rgba(0,212,170,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

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

.why-card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(0,212,170,0.15), rgba(0,180,216,0.1));
  border: 1px solid rgba(0,212,170,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.why-card-icon svg { width: 26px; height: 26px; color: var(--teal); }

.why-card:hover .why-card-icon {
  background: linear-gradient(135deg, var(--teal), var(--cyan));
}

.why-card:hover .why-card-icon svg { color: var(--navy); }

.why-card-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.why-card-body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* Feature highlight strip */
.why-highlight {
  margin-top: 60px;
  background: linear-gradient(135deg, rgba(0,212,170,0.1), rgba(0,180,216,0.06));
  border: 1px solid rgba(0,212,170,0.2);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.why-highlight-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-teal);
}

.why-highlight-icon svg { width: 36px; height: 36px; color: var(--navy); }

.why-highlight-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.why-highlight-text p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ============================================================
   PROCESS / HOW WE WORK SECTION
   ============================================================ */
#process {
  background: var(--off-white);
  position: relative;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 20px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--cyan), var(--teal));
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  margin-bottom: 24px;
  position: relative;
  transition: var(--transition);
}

.step-number-inner {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.process-step:hover .step-number-inner {
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  border-color: transparent;
  color: var(--navy);
  transform: scale(1.12);
  box-shadow: var(--shadow-teal);
}

.step-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   INDUSTRIES SECTION (Ticker)
   ============================================================ */
#industries {
  background: var(--navy);
  padding: 60px 0;
  overflow: hidden;
}

.industries-label {
  text-align: center;
  margin-bottom: 36px;
}

.industries-label span {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

.ticker-wrapper {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, white 15%, white 85%, transparent);
  mask: linear-gradient(90deg, transparent, white 15%, white 85%, transparent);
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  white-space: nowrap;
}

.ticker-item svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; }

.ticker-item span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

.ticker-divider {
  color: rgba(255,255,255,0.15) !important;
  font-size: 1.2rem !important;
  font-weight: 300 !important;
  padding: 0 8px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,170,0.06), transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact-info { position: relative; }

.contact-intro {
  margin-bottom: 40px;
}

.contact-intro .section-header { text-align: left; margin-bottom: 0; }

.contact-detail-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.contact-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
}

.contact-detail-card:hover {
  border-color: rgba(0,212,170,0.3);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-detail-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg { width: 20px; height: 20px; color: var(--white); }

.contact-detail-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}

.contact-detail-text a,
.contact-detail-text span {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-detail-text a:hover { color: var(--teal); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
}

.form-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

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

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--grey-50);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  font-family: 'Poppins', sans-serif;
  font-size: 0.93rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
  outline: none;
  appearance: none;
}

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

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  color: var(--navy);
  border: none;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-teal);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,212,170,0.4);
}

.form-submit svg { width: 18px; height: 18px; }

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

.form-success.show { display: block; }

.form-success svg {
  width: 64px; height: 64px;
  color: var(--teal);
  margin: 0 auto 16px;
}

.form-success h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.footer-top {
  padding: 72px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-logo-text .footer-logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.04em;
}

.footer-logo-text .footer-logo-sub {
  font-size: 0.6rem;
  color: var(--teal);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 280px;
}

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

.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition-fast);
}

.social-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--navy);
  transform: translateY(-2px);
}

.social-btn svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--teal);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  color: var(--teal);
  transform: translateX(4px);
}

.footer-links a:hover::before { opacity: 1; }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 16px; height: 16px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover { color: var(--teal); }

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

.footer-copyright span { color: var(--teal); }

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

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s ease;
}

.footer-legal a:hover { color: var(--teal); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-teal);
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}

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

#back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,212,170,0.5);
}

#back-to-top svg { width: 22px; height: 22px; color: var(--navy); }

/* ============================================================
   UTILITY ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.3); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .why-highlight { flex-direction: column; gap: 24px; }
  .about-grid    { gap: 48px; }
}

@media (max-width: 900px) {
  :root { --section-pad: 72px 0; }
  .about-grid    { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .why-grid      { grid-template-columns: 1fr; }
  .about-visual  { order: -1; }
  .about-badge-float { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-stats { gap: 28px; }
  .stat-number { font-size: 1.8rem; }

  .services-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
}

@media (max-width: 480px) {
  :root { --section-pad: 56px 0; }
  .container { padding: 0 16px; }
  .hero-stats { justify-content: center; gap: 20px; }
  .stat-item { flex: 1 1 40%; text-align: center; }
  .hero-subtitle { font-size: 1rem; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-actions  { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; padding: 14px 24px; }
  .about-metric-row { flex-direction: column; }
  .why-highlight { padding: 28px 20px; }
}



/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
#whatsapp-float {
  position: fixed;
  bottom: 92px;
  right: 32px;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  z-index: 900;
  transition: var(--transition);
  text-decoration: none;
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

#whatsapp-float.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}

#whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,0.6);
}

#whatsapp-float svg { width: 26px; height: 26px; color: white; }

.wa-tooltip {
  position: absolute;
  right: 60px;
  background: rgba(10,22,40,0.9);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  letter-spacing: 0.03em;
}

#whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
#testimonials {
  background: var(--off-white);
  overflow: hidden;
}

.testimonials-track-wrap {
  overflow: hidden;
  position: relative;
  margin: 0 -24px;
  padding: 0 24px;
  -webkit-mask: linear-gradient(90deg, transparent, white 8%, white 92%, transparent);
  mask: linear-gradient(90deg, transparent, white 8%, white 92%, transparent);
}

.testimonials-track {
  display: flex;
  gap: 24px;
  animation: testimonialsScroll 35s linear infinite;
  width: max-content;
}

.testimonials-track:hover { animation-play-state: paused; }

@keyframes testimonialsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  width: 360px;
  flex-shrink: 0;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
  border-color: rgba(0,212,170,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(0,212,170,0.12);
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 16px; height: 16px;
  color: #f59e0b;
  fill: #f59e0b;
}

.testimonial-text {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--teal);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  display: block;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   MAP / LOCATION SECTION
   ============================================================ */
#location {
  background: var(--navy);
  padding: 80px 0 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 60px;
}

.location-content .section-tag { margin-bottom: 16px; }

.location-content .section-title.light {
  margin-bottom: 16px;
}

.location-content p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.location-detail-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.location-detail-row svg {
  width: 18px; height: 18px;
  color: var(--teal);
  flex-shrink: 0;
}

.location-detail-row a,
.location-detail-row span {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.location-detail-row a:hover { color: var(--teal); }

.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
  height: 320px;
  position: relative;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

.map-wrap .map-overlay {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(10,22,40,0.9);
  border: 1px solid rgba(0,212,170,0.25);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
}

.map-overlay svg { width: 16px; height: 16px; color: var(--teal); }

.map-overlay span {
  font-size: 0.78rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.04em;
}

.map-cta-strip {
  background: linear-gradient(90deg, rgba(0,212,170,0.08), rgba(0,180,216,0.06));
  border-top: 1px solid rgba(0,212,170,0.12);
  padding: 28px 0;
  text-align: center;
}

.map-cta-strip p {
  color: rgba(255,255,255,0.55);
  font-size: 0.93rem;
  margin-bottom: 16px;
}

.map-cta-strip .btn-primary {
  display: inline-flex;
}

@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   STATS BAND (between About & Services)
   ============================================================ */
#stats-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

#stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,170,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,170,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.stats-band-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.stats-band-item:last-child { border-right: none; }

.stats-band-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stats-band-num span { color: var(--teal); }

.stats-band-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stats-band-item { border-right: none; }
}
@media (max-width: 480px) {
  .stats-band-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   PARTNERS / TRUSTED BY
   ============================================================ */
#partners {
  background: var(--white);
  padding: 56px 0;
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
}
.partners-header { text-align: center; margin-bottom: 36px; }
.partners-header span { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
.partners-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; align-items: center; }
.partner-item { padding: 20px 16px; border-right: 1px solid var(--grey-100); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.partner-item:last-child { border-right: none; }
.partner-item:hover .partner-logo-text { opacity: 1; color: var(--navy); }
.partner-logo-text { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.95rem; color: var(--text-muted); opacity: 0.4; letter-spacing: 0.02em; text-align: center; line-height: 1.1; transition: var(--transition); }
.partner-logo-text span { display: block; font-size: 0.6rem; font-weight: 600; color: var(--teal); letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.9; }
@media (max-width: 900px) { .partners-grid { grid-template-columns: repeat(3,1fr); } .partner-item:nth-child(3) { border-right: none; } }
@media (max-width: 480px) { .partners-grid { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   FAQ SECTION
   ============================================================ */
#faq { background: var(--off-white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.faq-col { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1.5px solid var(--grey-200); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: rgba(0,229,184,0.35); box-shadow: 0 4px 20px rgba(0,229,184,0.08); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; background: none; border: none; cursor: pointer; text-align: left; font-family: 'Montserrat',sans-serif; font-weight: 600; font-size: 0.92rem; color: var(--text-dark); transition: var(--transition-fast); line-height: 1.4; }
.faq-question:hover { color: var(--teal); }
.faq-item.open .faq-question { color: var(--teal); }
.faq-icon { width: 30px; height: 30px; border-radius: 50%; background: var(--grey-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.faq-icon svg { width: 14px; height: 14px; color: var(--text-muted); transition: transform 0.35s ease; }
.faq-item.open .faq-icon { background: linear-gradient(135deg, var(--teal), var(--cyan)); }
.faq-item.open .faq-icon svg { color: var(--navy); transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { margin: 0 22px 18px; padding-top: 14px; border-top: 1px solid var(--grey-100); font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }
@media (max-width: 768px) { .faq-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRE-FOOTER CTA BANNER
   ============================================================ */
#cta-banner { background: var(--navy); padding: 80px 0; position: relative; overflow: hidden; }
#cta-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,229,184,0.06), transparent 50%, rgba(124,58,237,0.06)); pointer-events: none; }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; background: rgba(255,255,255,0.03); border: 1px solid rgba(0,229,184,0.12); border-radius: var(--radius-xl); padding: 48px 56px; position: relative; z-index: 1; overflow: hidden; }
.cta-banner-inner::before { content: ''; position: absolute; top: -80px; right: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(0,229,184,0.1), transparent 70%); pointer-events: none; }
.cta-banner-inner::after { content: ''; position: absolute; bottom: -60px; left: 10%; width: 240px; height: 240px; background: radial-gradient(circle, rgba(124,58,237,0.08), transparent 70%); pointer-events: none; }
.cta-banner-content { display: flex; align-items: center; gap: 24px; position: relative; z-index: 1; }
.cta-banner-badge { width: 64px; height: 64px; background: linear-gradient(135deg, var(--teal), var(--cyan)); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--shadow-teal); animation: badgePulse 2.5s ease-in-out infinite; }
@keyframes badgePulse { 0%,100% { box-shadow: 0 8px 32px rgba(0,229,184,0.3); } 50% { box-shadow: 0 8px 48px rgba(0,229,184,0.55); } }
.cta-banner-badge svg { width: 32px; height: 32px; color: var(--navy); }
.cta-banner-text h2 { font-family: 'Montserrat',sans-serif; font-size: clamp(1.3rem,2.5vw,1.85rem); font-weight: 900; color: var(--white); margin-bottom: 8px; line-height: 1.2; }
.cta-banner-text p { font-size: 0.93rem; color: rgba(255,255,255,0.5); line-height: 1.65; }
.cta-banner-actions { display: flex; flex-direction: column; gap: 14px; flex-shrink: 0; align-items: stretch; position: relative; z-index: 1; min-width: 220px; }
.cta-banner-actions .btn-primary { justify-content: center; }
.cta-phone-link { display: flex; align-items: center; justify-content: center; gap: 8px; color: rgba(255,255,255,0.55); font-size: 0.88rem; font-weight: 600; padding: 8px; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.08); transition: var(--transition-fast); }
.cta-phone-link:hover { color: var(--teal); border-color: rgba(0,229,184,0.25); background: rgba(0,229,184,0.04); }
@media (max-width: 900px) { .cta-banner-inner { flex-direction: column; text-align: center; padding: 36px 24px; gap: 32px; } .cta-banner-content { flex-direction: column; text-align: center; } .cta-banner-actions { width: 100%; min-width: unset; } }

/* ============================================================
   CORPORATE DESIGN OVERHAUL
   ============================================================ */
:root {
  --teal: #00e5b8; --teal-light: #00ffce; --teal-dark: #00b891;
  --cyan: #00b891; --purple: #0a1628; --purple-light: #182b4a;
  --shadow-teal: 0 8px 32px rgba(0,229,184,0.32);
}
.hero-title .gradient-text {
  background: linear-gradient(135deg,#00e5b8 0%,#00b891 50%,#00e5b8 100%);
  background-size: 300% 300%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.hero-badge { background: rgba(0,229,184,0.1); border-color: rgba(0,229,184,0.25); }
.hero-badge-dot { background: #00e5b8; }
.hero-badge span { color: #00e5b8; }
.section-title .highlight, .section-title.light .highlight {
  background: linear-gradient(135deg,#00e5b8,#00b891,#00e5b8);
  background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: gradientShift 5s ease infinite;
}
.btn-primary { background: linear-gradient(135deg,#00e5b8,#00b891); position: relative; overflow: hidden; }
.btn-primary::after { content:''; position:absolute; top:0; left:-100%; width:100%; height:100%; background:linear-gradient(90deg,transparent,rgba(255,255,255,0.22),transparent); transition:left 0.55s ease; pointer-events:none; }
.btn-primary:hover::after { left:100%; }
.nav-cta { background: linear-gradient(135deg,#00e5b8,#00b891) !important; }
.hero-orb-2 { background: radial-gradient(circle,rgba(0,229,184,0.12),transparent 70%); }
.about-card-main::before { background: linear-gradient(90deg,#00e5b8,#00b891,#00e5b8); }
.service-card { background: rgba(255,255,255,0.92); backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px); }
.service-card:hover { box-shadow: 0 20px 60px rgba(0,229,184,0.14),0 8px 32px rgba(0,0,0,0.07); }
.icon-purple { background: linear-gradient(135deg,rgba(0,229,184,0.1),rgba(0,184,145,0.1)); }
.icon-purple svg { color: #00b891; }
#why { background: linear-gradient(160deg,#0a1628,#0e0a20); }
#industries { background: linear-gradient(160deg,#0a1628,#100a20); }
#location { background: linear-gradient(160deg,#0a1628,#0e0a20); }
#stats-band { background: linear-gradient(135deg,#0d1830,#130b24); }
#cta-banner { background: linear-gradient(160deg,#0a1628,#100820); }
footer { background: linear-gradient(160deg,#0a1628,#0a0618); position: relative; }
footer::before { content:''; position:absolute; top:0; left:0; right:0; height:1px; background:linear-gradient(90deg,transparent,#00e5b8,#00b891,transparent); }
.process-steps::before { background: linear-gradient(90deg,#00e5b8,#00b891,#00e5b8); }
.why-highlight { background: linear-gradient(135deg,rgba(0,229,184,0.07),rgba(0,184,145,0.05)); border-color: rgba(0,229,184,0.16); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--teal-dark),var(--teal)); }
.contact-form-wrap::before { background: linear-gradient(90deg,#00e5b8,#00b891,#00e5b8); }
.form-submit { background: linear-gradient(135deg,#00e5b8,#00b891); }
#back-to-top { background: linear-gradient(135deg,#00e5b8,#00b891); }
.about-metric-num { color: #00e5b8; }
.section-tag { background: linear-gradient(135deg,rgba(0,229,184,0.1),rgba(0,184,145,0.07)); border-color: rgba(0,229,184,0.22); color: #00e5b8; }
.hero-stats .stat-number span { color: #00b891; }
