/* ============================================================
   TMK GLOBAL LLC — styles.css
   Base / Common Styles
   Colors: Neon Green #00ff88 · Electric Blue #00d4ff
============================================================ */
/* ── Local Fonts ─────────────────────────────────────────── */
@font-face {
  font-family: 'Space Grotesk';
  src: url('fonts/SpaceGrotesk-VariableFont_wght.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-VariableFont_opsz,wght.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  --bg-primary:       #050508;
  --bg-secondary:     #090910;
  --bg-card:          #0d0d16;
  --neon-green:       #00ff88;
  --neon-green-glow:  rgba(0, 255, 136, 0.22);
  --neon-green-dim:   rgba(0, 255, 136, 0.1);
  --electric-blue:    #00d4ff;
  --blue-glow:        rgba(0, 212, 255, 0.22);
  --blue-dim:         rgba(0, 212, 255, 0.1);
  --blue-deep:        #0055ee;
  --glass-bg:         rgba(255, 255, 255, 0.035);
  --glass-bg-hover:   rgba(255, 255, 255, 0.065);
  --glass-border:     rgba(0, 255, 136, 0.16);
  --glass-border-h:   rgba(0, 255, 136, 0.5);
  --text-primary:     #ffffff;
  --text-secondary:   #c4ccd8;
  --text-muted:       #7a8494;
  --border-subtle:    rgba(255, 255, 255, 0.07);
  --shadow-neon:      0 0 40px rgba(0, 255, 136, 0.2), 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-blue:      0 0 40px rgba(0, 212, 255, 0.2), 0 8px 32px rgba(0, 0, 0, 0.5);
  --nav-h:            76px;
  --sec-pad:          88px;
  --radius:           18px;
  --radius-sm:        10px;
  --ease:             cubic-bezier(0.4, 0, 0.2, 1);
  --trans:            all 0.35s var(--ease);
  --font-display:     'Space Grotesk', system-ui, sans-serif;
--font-body:        'Inter', system-ui, sans-serif;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }
input, textarea, select { font-family: inherit; color: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--neon-green); border-radius: 3px; }

::selection { background: rgba(0, 255, 136, 0.28); }

/* ── Container ────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Sections ─────────────────────────────────────────────── */
.section { padding: var(--sec-pad) 0; position: relative; }

/* ── Utility ──────────────────────────────────────────────── */
.text-center { text-align: center; }

.gradient-text {
  background: linear-gradient(130deg, var(--neon-green) 0%, var(--electric-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Glass Card ───────────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ── Section Badge ────────────────────────────────────────── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  background: rgba(0, 255, 136, 0.07);
  border: 1px solid rgba(0, 255, 136, 0.28);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neon-green);
  margin-bottom: 14px;
}

/* ── Section Heading ──────────────────────────────────────── */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
}
.text-center .section-sub { margin: 0 auto; }

.section-header { margin-bottom: 48px; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(130deg, var(--neon-green) 0%, #00cc6a 100%);
  color: #040408;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0, 255, 136, 0.42);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  transform: translateY(-2px);
  background: rgba(0, 255, 136, 0.06);
}

.btn-lg { padding: 16px 38px; font-size: 1rem; }
.btn-block { width: 100%; border-radius: var(--radius-sm); }

/* ============================================================
   NAVIGATION
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.navbar.scrolled {
  background: rgba(5, 5, 8, 0.93);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 8px 15px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 50px;
  transition: var(--trans);
}
.nav-link:hover,
.nav-link.active {
  color: var(--neon-green);
  background: rgba(0, 255, 136, 0.08);
}

.nav-cta { flex-shrink: 0; }

/* ── Hamburger ────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  gap: 5px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--trans);
  transform-origin: center;
}
.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 Overlay ──────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5, 5, 8, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-menu.open { display: flex; animation: fadeInMenu 0.25s ease; }
@keyframes fadeInMenu {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.mobile-menu-close {
  position: absolute;
  top: 22px; right: 24px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--text-muted);
  transition: var(--trans);
  border-radius: 50%;
}
.mobile-menu-close:hover { color: var(--neon-green); background: var(--neon-green-dim); }

.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 4px; width: 100%; padding: 0 40px; }

.mobile-nav-link {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  color: var(--text-muted);
  padding: 10px 24px;
  border-radius: 12px;
  transition: var(--trans);
  letter-spacing: -0.02em;
}
.mobile-nav-link:hover { color: var(--neon-green); background: var(--neon-green-dim); }

.mobile-cta { margin-top: 16px; }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  position: relative;
  background: var(--bg-secondary);
  overflow: hidden;
  padding-top: 90px;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--neon-green) 30%, var(--electric-blue) 70%, transparent 100%);
}

.footer-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,136,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,136,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  opacity: 0.6;
}

.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 64px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin: 16px 0 26px;
  max-width: 275px;
}

.footer-soc { display: flex; gap: 9px; }
.footer-soc a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--trans);
}
.footer-soc a:hover { color: var(--neon-green); border-color: var(--neon-green); background: var(--neon-green-dim); }

.footer-col-heading {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--neon-green);
  margin-bottom: 22px;
}

.footer-nav-links { display: flex; flex-direction: column; gap: 11px; }
.footer-nav-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--trans);
}
.footer-nav-links a:hover { color: var(--text-primary); padding-left: 5px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 13px; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.footer-contact-list li i {
  color: var(--neon-green);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.78rem;
  filter: drop-shadow(0 0 3px var(--neon-green));
}

.footer-bottom {
  position: relative;
  border-top: 1px solid var(--border-subtle);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: 0.83rem; color: var(--text-muted); }
.footer-legal { display: flex; align-items: center; gap: 16px; }
.footer-legal a { font-size: 0.83rem; color: var(--text-muted); transition: var(--trans); }
.footer-legal a:hover { color: var(--neon-green); }

.footer-links a {
  color: rgba(255,255,255,0.72);
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.footer-links a:hover {
  color: #00ff88;
  transform: translateX(6px);
  text-shadow: 0 0 12px rgba(0,255,136,0.4);
}

/* ── Accessibility: Focus Styles ── */
:focus-visible {
  outline: 2px solid var(--neon-green);
  outline-offset: 3px;
  border-radius: 4px;
}
#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 75% 60% at 65% 50%, rgba(0, 85, 238, 0.14) 0%, transparent 70%),
    radial-gradient(ellipse 45% 55% at 15% 75%, rgba(0, 255, 136, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 15%, rgba(0, 212, 255, 0.07) 0%, transparent 60%);
}
/* ── Hero Badge ───────────────────────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 255, 136, 0.07);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--neon-green);
  margin-bottom: 14px;
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--neon-green);
  border-radius: 50%;
  animation: pulseDot 2.2s ease-in-out infinite;
  box-shadow: 0 0 6px var(--neon-green);
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(0.65); opacity: 0.45; }
}
/* ============================================================
   SCROLL-IN ANIMATION CLASSES
============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes blobPulse {
  from { transform: scale(0.9); opacity: 0.6; }
  to   { transform: scale(1.15); opacity: 1; }
}
@keyframes orbitA {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes orbitB {
  from { transform: rotate(0deg) scaleX(1.25); }
  to   { transform: rotate(360deg) scaleX(1.25); }
}
/* ============================================================
   WHATSAPP FLOATING BUTTON
============================================================ */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 1001;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem;
  color: #fff;
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 34px rgba(37, 211, 102, 0.55);
}
.wa-pulse {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.55);
  animation: waPulse 2.8s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.75); opacity: 0; }
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 7px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.wa-float:hover .wa-tooltip { opacity: 1; }
