/* GeoSystems Consulting — styles.css */
/* Consulting | Technology | Risk & Quality */

:root {
  --navy: #021829;
  --navy-mid: #042C53;
  --blue: #185FA5;
  --blue-light: #378ADD;
  --teal: #1D9E75;
  --teal-light: #5DCAA5;
  --amber: #EF9F27;
  --amber-dark: #BA7517;
  --white: #F7F4EF;
  --white-dim: rgba(247,244,239,0.7);
  --white-faint: rgba(247,244,239,0.12);
  --border: rgba(247,244,239,0.1);
  --sans: 'DM Sans', sans-serif;
  --serif: 'Playfair Display', Georgia, serif;
  --mono: 'DM Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  width: 10px; height: 10px;
  background: var(--teal-light);
  border-radius: 50%;
  position: fixed; z-index: 9999;
  pointer-events: none;
  transition: transform 0.15s ease, width 0.25s ease, height 0.25s ease, background 0.25s;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--teal-light);
  border-radius: 50%;
  position: fixed; z-index: 9998;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1), opacity 0.3s;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}
body:hover .cursor { opacity: 1; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 2px; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(2,24,41,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.02em; color: var(--white);
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-mark {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-globe-svg {
  width: 38px; height: 38px;
  animation: globeSpin 18s linear infinite;
  filter: drop-shadow(0 0 6px rgba(93,202,165,0.5));
}
@keyframes globeSpin {
  0%   { filter: drop-shadow(0 0 6px rgba(93,202,165,0.5)); }
  50%  { filter: drop-shadow(0 0 12px rgba(93,202,165,0.9)); }
  100% { filter: drop-shadow(0 0 6px rgba(93,202,165,0.5)); }
}
.nav-globe-svg .globe-ring {
  animation: ringRotate 12s linear infinite;
  transform-origin: 19px 19px;
}
.nav-globe-svg .globe-ring2 {
  animation: ringRotate2 18s linear infinite;
  transform-origin: 19px 19px;
}
@keyframes ringRotate  { from{transform:rotate(0deg)}  to{transform:rotate(360deg)} }
@keyframes ringRotate2 { from{transform:rotate(0deg)}  to{transform:rotate(-360deg)} }
.nav-globe-svg .sat-dot {
  animation: satOrbit 5s linear infinite;
  transform-origin: 19px 19px;
}
@keyframes satOrbit { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--white); letter-spacing: 0.01em; }
.nav-logo-sub  { font-family: var(--mono); font-size: 8px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-light); margin-top: 2px; }
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-size: 13px; letter-spacing: 0.05em;
  color: var(--white-dim); text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--teal-light); transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  position: relative;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border: none;
  color: #fff;
  padding: 0.55rem 1.35rem;
  border-radius: 8px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  cursor: none; text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 0 0 0 rgba(29,158,117,0.7);
  animation: ctaPulse 2.4s ease-out infinite;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
/* Shimmer sweep */
.nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.28) 50%, transparent 100%);
  animation: ctaShimmer 2.4s ease-in-out infinite;
  border-radius: 8px;
}
/* Outer glow ring */
.nav-cta::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--teal-light), var(--blue-light));
  z-index: -1;
  opacity: 0;
  animation: ctaRing 2.4s ease-out infinite;
}
@keyframes ctaPulse {
  0%   { box-shadow: 0 0 0 0 rgba(29,158,117,0.65), 0 4px 20px rgba(29,158,117,0.3); }
  50%  { box-shadow: 0 0 0 8px rgba(29,158,117,0), 0 4px 28px rgba(29,158,117,0.45); }
  100% { box-shadow: 0 0 0 0 rgba(29,158,117,0), 0 4px 20px rgba(29,158,117,0.3); }
}
@keyframes ctaShimmer {
  0%   { left: -75%; opacity: 0; }
  20%  { opacity: 1; }
  60%  { left: 130%; opacity: 0; }
  100% { left: 130%; opacity: 0; }
}
@keyframes ctaRing {
  0%,100% { opacity: 0; transform: scale(1); }
  45%     { opacity: 0.4; }
  50%     { opacity: 0; transform: scale(1.06); }
}
.nav-cta:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(29,158,117,0.55), 0 2px 8px rgba(0,0,0,0.3);
  animation: none;
  background: linear-gradient(135deg, var(--teal-light), var(--blue));
}
.nav-cta:hover::before { animation: none; opacity: 0; }

/* HERO */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 7rem 4rem 4rem;
  position: relative; overflow: hidden;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 2rem;
  align-items: center;
  width: 100%;
}
.hero-globe-col {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-globe-wrap {
  position: relative;
  width: 460px; height: 460px;
}
.hero-globe-wrap svg.big-globe {
  width: 460px; height: 460px;
  animation: globeFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 0 50px rgba(29,158,117,0.3)) drop-shadow(0 0 100px rgba(24,95,165,0.2));
}
@keyframes globeFloat {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-16px); }
}
.big-ring1 { animation: bigRing1 16s linear infinite; transform-origin: 230px 230px; }
.big-ring2 { animation: bigRing2 24s linear infinite; transform-origin: 230px 230px; }
.big-sat   { animation: bigSat 9s linear infinite; transform-origin: 230px 230px; }
.big-sat2  { animation: bigSat 14s linear infinite reverse; transform-origin: 230px 230px; }
@keyframes bigRing1 { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes bigRing2 { from{transform:rotate(0deg)} to{transform:rotate(-360deg)} }
@keyframes bigSat   { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.radar-pulse  { animation: radarPulse 3s ease-out infinite; }
.radar-pulse2 { animation: radarPulse 3s ease-out infinite 1.2s; }
@keyframes radarPulse {
  0%   { r: 10px; opacity: 0.8; }
  100% { r: 35px; opacity: 0; }
}
.data-line { stroke-dasharray: 6 4; animation: dashFlow 2s linear infinite; }
@keyframes dashFlow { from{stroke-dashoffset:0} to{stroke-dashoffset:-20} }
@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-globe-col { display: none; }
}
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; z-index: 0;
}
.hero-orb-1 { width: 500px; height: 500px; background: rgba(24,95,165,0.2); top: -100px; right: -100px; }
.hero-orb-2 { width: 400px; height: 400px; background: rgba(29,158,117,0.15); bottom: 0; left: 200px; }
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 100px;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal-light); margin-bottom: 2rem;
  background: rgba(29,158,117,0.08);
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-light); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900; line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title .accent { color: var(--teal-light); font-style: italic; }
.hero-title .line2 { color: var(--white-dim); font-weight: 400; font-style: italic; }
.hero-desc {
  font-size: 1.05rem; line-height: 1.8;
  color: var(--white-dim); max-width: 560px;
  font-weight: 300; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff; padding: 0.9rem 2rem;
  border-radius: 8px; border: none;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  cursor: none; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(29,158,117,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(29,158,117,0.4); }
.btn-ghost {
  color: var(--white-dim); padding: 0.9rem 2rem;
  border-radius: 8px; border: 1px solid var(--border);
  font-family: var(--sans); font-size: 14px;
  cursor: none; text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--white-dim); color: var(--white); }
.hero-stats {
  display: flex; gap: 3rem; margin-top: 4rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.stat-num span { color: var(--teal-light); }
.stat-label { font-size: 12px; color: var(--white-dim); margin-top: 4px; letter-spacing: 0.05em; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--white-dim); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  z-index: 1;
}
.scroll-line {
  width: 1px; height: 48px; background: linear-gradient(to bottom, var(--teal-light), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 50.01%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* SECTIONS */
section { padding: 6rem 4rem; }
.section-label {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--teal-light); font-family: var(--mono);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--white); line-height: 1.15;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem; color: var(--white-dim); line-height: 1.7;
  font-weight: 300; max-width: 580px;
}

/* DIVISIÓN INTRO BAND */
.div-band {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0 4rem;
}
.div-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
  cursor: default;
}
.div-item:last-child { border-right: none; }
.div-item:hover { background: rgba(247,244,239,0.03); }
.div-num {
  font-family: var(--mono); font-size: 11px;
  color: var(--white-dim); margin-bottom: 0.5rem; letter-spacing: 0.1em;
}
.div-name {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.5rem;
}
.div-bar { height: 2px; width: 40px; border-radius: 1px; margin-top: 0.75rem; }

/* SERVICE CARDS */
#division-1 { background: linear-gradient(180deg, var(--navy) 0%, rgba(4,44,83,0.3) 100%); }

.services-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 4rem; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.srv {
  padding: 2rem 1.75rem;
  background: rgba(255,255,255,0.02);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, transform 0.3s ease;
  position: relative; overflow: hidden;
}
.srv:nth-child(3n) { border-right: none; }
.srv:nth-last-child(-n+3) { border-bottom: none; }
.srv::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-light), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.srv:hover { background: rgba(29,158,117,0.06); }
.srv:hover::before { opacity: 1; }
.srv-icon-wrap {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 20px;
}
.srv h3 { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem; line-height: 1.3; }
.srv p { font-size: 13px; color: var(--white-dim); line-height: 1.7; font-weight: 300; }
.srv-pill {
  display: inline-block; margin-top: 1rem;
  font-size: 10px; font-family: var(--mono);
  padding: 3px 10px; border-radius: 100px;
  border: 1px solid rgba(29,158,117,0.3);
  color: var(--teal-light); letter-spacing: 0.05em;
}
.srv.wide { grid-column: span 3; }

/* AUDIT SECTION */
#division-2 {
  background: linear-gradient(180deg, rgba(4,44,83,0.3) 0%, var(--navy) 100%);
}
.audit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 4rem; }
.audit-card {
  padding: 2rem; border: 1px solid var(--border); border-radius: 12px;
  background: rgba(255,255,255,0.02);
  position: relative; overflow: hidden; transition: border-color 0.3s, background 0.3s;
}
.audit-card:hover {
  border-color: rgba(29,158,117,0.3);
  background: rgba(29,158,117,0.04);
}
.audit-card::after {
  content: attr(data-num);
  position: absolute; top: 1rem; right: 1.25rem;
  font-family: var(--serif); font-size: 3.5rem; font-weight: 900;
  color: rgba(255,255,255,0.04); line-height: 1;
  pointer-events: none;
}
.audit-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-family: var(--mono); letter-spacing: 0.08em;
  padding: 4px 10px; border-radius: 100px;
  margin-bottom: 1rem;
}
.badge-teal { background: rgba(29,158,117,0.12); color: var(--teal-light); border: 1px solid rgba(29,158,117,0.2); }
.badge-blue { background: rgba(24,95,165,0.15); color: #85B7EB; border: 1px solid rgba(24,95,165,0.25); }
.badge-amber { background: rgba(239,159,39,0.12); color: var(--amber); border: 1px solid rgba(239,159,39,0.2); }
.audit-card h3 { font-family: var(--serif); font-size: 1.05rem; color: var(--white); margin-bottom: 0.6rem; font-weight: 700; }
.audit-card p { font-size: 13px; color: var(--white-dim); line-height: 1.7; font-weight: 300; }

/* DISRUPTIVE */
#division-3 { background: var(--navy); }
.disrupt-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 4rem; align-items: start; }
.disrupt-left {}
.disrupt-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  display: flex; gap: 1.25rem; align-items: flex-start;
  transition: padding-left 0.3s ease;
  cursor: default;
}
.disrupt-item:hover { padding-left: 8px; }
.disrupt-item:first-child { padding-top: 0; }
.disrupt-item:last-child { border-bottom: none; }
.disrupt-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber); margin-top: 6px; flex-shrink: 0;
}
.disrupt-item h3 { font-size: 1rem; font-weight: 500; color: var(--white); margin-bottom: 0.4rem; }
.disrupt-item p { font-size: 13px; color: var(--white-dim); line-height: 1.7; font-weight: 300; }
.disrupt-right {
  position: sticky; top: 120px;
  border: 1px solid var(--border); border-radius: 16px;
  padding: 2rem; background: rgba(255,255,255,0.02);
  overflow: hidden;
}
.disrupt-right-title { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 1.5rem; }
.tech-tag {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--border); padding: 6px 12px;
  border-radius: 6px; margin: 4px; font-size: 12px;
  color: var(--white-dim); transition: all 0.25s;
  cursor: default; font-family: var(--mono);
}
.tech-tag:hover { border-color: var(--amber); color: var(--amber); background: rgba(239,159,39,0.06); }
.tech-tag .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--amber); }

/* QUALITY CHECK */
#quality {
  background: linear-gradient(180deg, var(--navy) 0%, rgba(4,44,83,0.5) 100%);
  padding: 6rem 4rem;
}
.quality-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 4rem; }
.quality-card {
  padding: 2rem 1.5rem; border: 1px solid var(--border); border-radius: 12px;
  background: rgba(255,255,255,0.02);
  text-align: center; transition: transform 0.3s, border-color 0.3s;
}
.quality-card:hover { transform: translateY(-6px); border-color: rgba(29,158,117,0.3); }
.q-icon { font-size: 2rem; margin-bottom: 1rem; }
.q-title { font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 0.5rem; line-height: 1.4; }
.q-sub { font-size: 12px; color: var(--white-dim); line-height: 1.6; font-weight: 300; }
.checkmark {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(29,158,117,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-size: 16px; color: var(--teal-light);
}

/* CAPACITACIÓN */
#training {
  background: var(--navy);
  border-top: 1px solid var(--border);
}
.training-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.training-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2rem; }
.training-tag {
  padding: 8px 16px; border-radius: 8px;
  background: rgba(24,95,165,0.12);
  border: 1px solid rgba(24,95,165,0.25);
  font-size: 13px; color: #85B7EB;
  font-family: var(--mono);
}
.training-visual {
  border: 1px solid var(--border); border-radius: 16px; padding: 2rem;
  background: rgba(255,255,255,0.02);
}
.tv-row {
  display: flex; align-items: center; gap: 1rem; padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.tv-row:last-child { border-bottom: none; }
.tv-icon { font-size: 1.5rem; width: 40px; text-align: center; }
.tv-label { font-size: 13px; font-weight: 500; color: var(--white); }
.tv-sub { font-size: 11px; color: var(--white-dim); }
.progress-bar { height: 3px; background: var(--border); border-radius: 2px; margin-top: 6px; flex: 1; }
.progress-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--blue-light), var(--teal-light)); }

/* CONTACT */
#contact {
  background: linear-gradient(135deg, rgba(4,44,83,0.8) 0%, rgba(2,24,41,1) 100%);
  border-top: 1px solid var(--border);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-family: var(--serif); font-size: 2.5rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.contact-info p { font-size: 1rem; color: var(--white-dim); line-height: 1.7; font-weight: 300; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem; border: 1px solid var(--border); border-radius: 10px;
  background: rgba(255,255,255,0.02); transition: border-color 0.3s;
}
.contact-item:hover { border-color: var(--teal); }
.ci-icon { font-size: 1.25rem; width: 36px; text-align: center; color: var(--teal-light); }
.ci-label { font-size: 11px; color: var(--white-dim); text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--mono); }
.ci-val { font-size: 14px; color: var(--white); font-weight: 500; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 11px; color: var(--white-dim); letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--mono); }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 0.75rem 1rem;
  color: var(--white); font-family: var(--sans); font-size: 14px;
  outline: none; transition: border-color 0.25s;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group select option { background: #042C53; color: #F7F4EF; }
.form-group select optgroup { background: #021829; color: #5DCAA5; font-style: normal; font-weight: 600; }
.form-group select { color: #F7F4EF; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* FOOTER */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 3rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; align-items: start;
}
.footer-brand { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--white); }
.footer-tagline { font-size: 12px; color: var(--white-dim); margin-top: 4px; font-family: var(--mono); letter-spacing: 0.08em; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: var(--white-dim); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal-light); }
.footer-bottom {
  grid-column: span 3; border-top: 1px solid var(--border);
  padding-top: 1.5rem; margin-top: 1rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 12px; color: var(--white-dim); font-family: var(--mono); }

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* DIVIDER LINE */
.section-divider { height: 1px; background: var(--border); margin: 0 4rem; }

/* MOBILE NAV TOGGLE */
.nav-mobile { display: none; background: none; border: 1px solid var(--border); padding: 6px 10px; border-radius: 6px; color: var(--white); cursor: pointer; font-size: 18px; }

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-mobile { display: flex; }
  #hero, section { padding: 5rem 1.5rem 4rem; }
  .hero-title { font-size: 2.8rem; }
  .div-band { margin: 0 1.5rem; grid-template-columns: 1fr; }
  .div-item { border-right: none; border-bottom: 1px solid var(--border); }
  .services-wrap { grid-template-columns: 1fr; }
  .srv { border-right: none !important; }
  .srv.wide { grid-column: span 1; }
  .audit-grid, .disrupt-layout, .training-inner, .contact-grid, .quality-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .footer-bottom { grid-column: span 1; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .section-divider { margin: 0 1.5rem; }
}

/* FLOATING MAP DECORATION */
.map-lines {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.06;
}

/* GEOAI HIGHLIGHT */
.highlight-box {
  background: linear-gradient(135deg, rgba(29,158,117,0.08), rgba(24,95,165,0.08));
  border: 1px solid rgba(29,158,117,0.2);
  border-radius: 16px; padding: 2.5rem; margin-top: 3rem;
  position: relative; overflow: hidden;
}
.highlight-box::before {
  content: 'GeoAI'; position: absolute; right: 2rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif); font-size: 6rem; font-weight: 900;
  color: rgba(255,255,255,0.03); pointer-events: none;
}
.highlight-box h3 { font-family: var(--serif); font-size: 1.25rem; color: var(--white); margin-bottom: 0.5rem; font-weight: 700; }
.highlight-box p { font-size: 14px; color: var(--white-dim); line-height: 1.7; font-weight: 300; }

/* HERO GLOBE IMAGE */
.hero-globe-img-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(93,202,165,0.15),
    0 30px 80px rgba(2,24,41,0.7),
    0 0 60px rgba(24,95,165,0.2),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  animation: globeFloat 6s ease-in-out infinite;
}
.hero-globe-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  /* Intensify the glow feel of the image */
  filter: brightness(1.05) saturate(1.15) contrast(1.05);
}
/* Subtle vignette over the image edges */
.hero-globe-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, transparent 55%, rgba(2,24,41,0.45) 100%),
    linear-gradient(to bottom, rgba(2,24,41,0.25) 0%, transparent 25%, transparent 75%, rgba(2,24,41,0.4) 100%);
  border-radius: 24px;
  pointer-events: none;
}
/* Animated ping dots over the globe */
.globe-ping {
  position: absolute;
  border-radius: 55%;
  pointer-events: none;
}
.globe-ping-1 {
  width: 9px; height: 9px;
  background: #5DCAA5;
  box-shadow: 0 0 12px #5DCAA5, 0 0 24px rgba(93,202,165,0.5);
  top: 55%; left: 18%;
  animation: pingPulse 3s ease-in-out infinite;
}
.globe-ping-2 {
  width: 9px; height: 9px;
  background: #EF9F27;
  box-shadow: 0 0 8px #EF9F27;
  top: 38%; left: 75%;
  animation: pingPulse 3.1s ease-in-out infinite 0.8s;  
}
@keyframes pingPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.7); opacity: 0.4; }
}
/* Floating labels over the image */
.globe-label {
  position: absolute;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
  pointer-events: none;
  backdrop-filter: blur(8px);
  z-index: 5;
}
.globe-label-sat {
  top: 10px; right: 14px;
  background: rgba(2,24,41,0.75);
  border: 1px solid rgba(93,202,165,0.35);
  color: #5DCAA5;
  animation: labelBlink 3s ease-in-out infinite;
}
.globe-label-bo {
  bottom: 14px; left: 14px;
  background: rgba(2,24,41,0.75);
  border: 1px solid rgba(239,159,39,0.3);
  color: var(--amber);
}
@keyframes labelBlink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.55; }
}
@media (max-width:900px) {
  .hero-globe-col { display: none; }
}

/* PROJECTS BAND */
.projects-band { margin-top: 3rem; }
.projects-label {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-family: var(--mono); color: var(--amber);
  margin-bottom: 1.5rem; display: flex; align-items: center; gap: 8px;
}
.projects-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem;
}
.project-card {
  padding: 1.75rem; border-radius: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.project-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--teal-light));
  opacity: 0; transition: opacity 0.3s;
}
.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239,159,39,0.25);
  background: rgba(239,159,39,0.04);
}
.project-card:hover::before { opacity: 1; }
.project-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.project-tag {
  font-size: 10px; font-family: var(--mono); letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 0.5rem;
}
.project-title {
  font-family: var(--serif); font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.65rem; line-height: 1.35;
}
.project-desc {
  font-size: 12.5px; color: var(--white-dim); line-height: 1.7; font-weight: 300;
}
.project-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1rem; }
.proj-pill {
  font-size: 10px; font-family: var(--mono); letter-spacing: 0.05em;
  padding: 3px 10px; border-radius: 100px;
  background: rgba(239,159,39,0.1);
  border: 1px solid rgba(239,159,39,0.25);
  color: var(--amber);
}
@media(max-width:900px){
  .projects-grid { grid-template-columns: 1fr; }
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  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.45), 0 2px 8px rgba(0,0,0,0.3);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(.16,1,.3,1), box-shadow 0.25s;
  animation: waPulse 2.8s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.65), 0 2px 12px rgba(0,0,0,0.35);
  animation: none;
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: #1a1a2e;
  color: #F7F4EF;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(37,211,102,0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: rgba(37,211,102,0.25);
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0); }
}
