/* ============================================
   153 GROUP ASIA — 8-BIT × BOLD DESIGN SYSTEM
   Inspired by Bike Bear's bold, playful approach
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  /* Bold High-Contrast Palette (Bike Bear inspired) */
  --yellow-pop: #FFE600;
  --yellow-soft: #FFF176;
  --black-deep: #0a0a0a;
  --black-surface: #111118;
  --black-card: #1a1a28;
  --white-clean: #f5f5f5;

  /* 8-bit accent neons */
  --neon-green: #39ff14;
  --electric-blue: #00f0ff;
  --hot-pink: #ff2d95;
  --purple-pop: #b026ff;
  --arcade-orange: #ff6600;
  --mint: #4BC9B9;

  /* Fonts */
  --font-pixel: 'Press Start 2P', monospace;
  --font-display: 'Space Grotesk', sans-serif;

  /* Spacing */
  --container-width: 1300px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--yellow-pop) var(--black-deep);
}

body {
  font-family: var(--font-display);
  background: var(--black-deep);
  color: var(--white-clean);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: default;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black-deep); }
::-webkit-scrollbar-thumb { background: var(--yellow-pop); }

/* ---- CRT Scanline ---- */
.crt-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0.06) 0px,
    rgba(0,0,0,0.06) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: multiply;
}

/* ---- Container ---- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- Section Headers (Bike Bear style — MASSIVE) ---- */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header .level-tag {
  font-family: var(--font-pixel);
  font-size: 11px;
  color: var(--mint);
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 3px;
  padding: 8px 24px;
  border: 2px solid var(--mint);
  border-radius: 50px;
  animation: pulse-glow 2s ease-in-out infinite;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 700;
  color: var(--white-clean);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -3px;
}

.section-header h2 em {
  font-style: italic;
  color: var(--yellow-pop);
  -webkit-text-stroke: 0;
}

.section-header .subtitle {
  font-family: var(--font-display);
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  margin-top: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ============================================
   NAVIGATION — Pill style (Bike Bear)
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s;
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,230,0,0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s;
  filter: drop-shadow(0 0 20px rgba(255, 230, 0, 0.4));
}

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-logo:hover {
  filter: drop-shadow(0 0 30px rgba(255, 230, 0, 0.7));
  transform: scale(1.05);
}

.nav-logo span {
  color: var(--white-clean);
  font-size: 12px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  color: var(--black-deep);
  background: var(--yellow-pop);
}

.nav-links .nav-cta {
  background: var(--yellow-pop);
  color: var(--black-deep);
  font-weight: 700;
  padding: 10px 24px;
}

.nav-links .nav-cta:hover {
  background: var(--white-clean);
  box-shadow: 0 0 30px rgba(255, 230, 0, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  transition: all 0.3s;
}

.hamburger:hover {
  border-color: var(--yellow-pop);
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white-clean);
  transition: all 0.3s;
  display: block;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ============================================
   HERO — MASSIVE BOLD (Bike Bear style)
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}

.hero-badge {
  font-family: var(--font-pixel);
  font-size: 10px;
  color: var(--mint);
  letter-spacing: 4px;
  margin-bottom: 32px;
  display: inline-block;
  padding: 10px 28px;
  border: 2px solid var(--mint);
  border-radius: 50px;
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Massive Bike Bear style headline */
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 10vw, 140px);
  font-weight: 700;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -4px;
  margin-bottom: 0;
}

.hero h1 .line1 {
  display: block;
  color: var(--white-clean);
}

.hero h1 .line2 {
  display: block;
  color: var(--yellow-pop);
  font-style: italic;
}

.hero h1 .pixel-accent {
  font-family: var(--font-pixel);
  font-size: clamp(16px, 2.5vw, 28px);
  color: var(--neon-green);
  display: block;
  margin-top: 16px;
  letter-spacing: 4px;
  text-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.5vw, 20px);
  color: rgba(255,255,255,0.5);
  margin: 36px auto 48px;
  max-width: 550px;
  line-height: 1.8;
}

/* Pill CTA Button (Bike Bear style) */
.cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--black-deep);
  background: var(--yellow-pop);
  border: none;
  padding: 18px 44px;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background: var(--white-clean);
  box-shadow: 0 0 50px rgba(255, 230, 0, 0.4);
  transform: translateY(-3px);
}

.btn-secondary {
  font-family: var(--font-pixel);
  font-size: 10px;
  color: var(--white-clean);
  text-decoration: none;
  padding: 16px 32px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 60px;
  transition: all 0.3s;
  letter-spacing: 2px;
}

.btn-secondary:hover {
  border-color: var(--electric-blue);
  color: var(--electric-blue);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.hero-coins {
  font-family: var(--font-pixel);
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  margin-top: 48px;
  letter-spacing: 3px;
}

.hero-coins span {
  color: var(--yellow-pop);
}

/* ============================================
   MARQUEE — Scrolling Ticker (Bike Bear)
   ============================================ */
.marquee-section {
  overflow: hidden;
  padding: 20px 0;
  border-top: 2px solid rgba(255,255,255,0.05);
  border-bottom: 2px solid rgba(255,255,255,0.05);
  position: relative;
}

.marquee-section.yellow-bg {
  background: var(--yellow-pop);
  border-color: var(--black-deep);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-track.reverse {
  animation-direction: reverse;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255,255,255,0.08);
  letter-spacing: -1px;
}

.yellow-bg .marquee-item {
  color: rgba(0,0,0,0.15);
}

.marquee-item .star {
  color: var(--mint);
  font-size: 20px;
}

.yellow-bg .marquee-item .star {
  color: var(--black-deep);
}

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

/* ============================================
   ABOUT — BOLD STORY (Bike Bear fullscreen)
   ============================================ */
.about {
  padding: 140px 0;
  position: relative;
}

.about-intro {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
}

.about-intro .big-statement {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--white-clean);
}

.about-intro .big-statement em {
  color: var(--yellow-pop);
  font-style: italic;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-card {
  background: var(--black-card);
  border: 2px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.about-card:hover {
  border-color: var(--yellow-pop);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(255, 230, 0, 0.08);
}

.about-card .card-icon {
  font-family: var(--font-pixel);
  font-size: 18px;
  color: var(--yellow-pop);
  margin-bottom: 20px;
  display: block;
  text-shadow: 0 0 15px rgba(255, 230, 0, 0.4);
}

/* Service icon abbreviation */
.svc-icon {
  font-family: var(--font-pixel);
  font-size: 12px;
  color: var(--yellow-pop);
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(255, 230, 0, 0.3);
}

.service-row:hover .svc-icon {
  text-shadow: 0 0 20px rgba(255, 230, 0, 0.6);
}

/* Team avatar initials */
.avatar-letter {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--yellow-pop);
  line-height: 1;
}

.about-card .card-label {
  font-family: var(--font-pixel);
  font-size: 8px;
  color: var(--mint);
  letter-spacing: 3px;
  display: block;
  margin-bottom: 12px;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white-clean);
  margin-bottom: 16px;
}

.about-card p {
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  line-height: 1.8;
}

/* ============================================
   SERVICES — Bike Bear list + pixel hybrid
   ============================================ */
.services {
  padding: 140px 0;
  position: relative;
}

.services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.services-left {
  position: sticky;
  top: 120px;
}

.services-left h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 90px);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.services-left h2 em {
  color: var(--yellow-pop);
  font-style: italic;
  display: block;
}

.services-left .services-desc {
  margin-top: 32px;
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 400px;
}

.services-left .pixel-tag {
  font-family: var(--font-pixel);
  font-size: 9px;
  color: var(--neon-green);
  margin-top: 24px;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(57,255,20,0.4);
}

/* Services List (Bike Bear line-separated style) */
.services-list {
  display: flex;
  flex-direction: column;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.service-row:first-child {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.service-row:hover {
  padding-left: 16px;
}

.service-row:hover .service-name {
  color: var(--yellow-pop);
}

.service-row:hover .service-num {
  color: var(--yellow-pop);
}

.service-row:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-num {
  font-family: var(--font-pixel);
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  min-width: 36px;
  transition: color 0.3s;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: var(--black-card);
  border-radius: 16px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.service-row:hover .service-icon-wrap {
  background: rgba(255, 230, 0, 0.1);
  transform: scale(1.1) rotate(-5deg);
}

.service-name {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  transition: color 0.3s;
  flex: 1;
}

.service-desc-text {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  max-width: 200px;
  display: none;
}

.service-arrow {
  font-size: 24px;
  color: var(--yellow-pop);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s;
}

/* ============================================
   TEAM — Player Cards (enhanced)
   ============================================ */
.team {
  padding: 140px 0;
  background: var(--black-surface);
  position: relative;
}

.team::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow-pop), var(--hot-pink), var(--electric-blue), var(--neon-green), var(--yellow-pop));
  background-size: 200% 100%;
  animation: gradient-slide 4s linear infinite;
}

@keyframes gradient-slide {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

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

.team-card {
  background: var(--black-card);
  border: 2px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 40px 24px 32px;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,230,0,0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

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

.team-card:hover {
  border-color: var(--yellow-pop);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(255, 230, 0, 0.1);
}

.team-avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: linear-gradient(135deg, var(--black-surface), var(--black-deep));
  border: 3px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: all 0.4s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(30%);
  transition: all 0.4s;
}

.team-card:hover .team-avatar img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

.team-card:hover .team-avatar {
  border-color: var(--yellow-pop);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(255, 230, 0, 0.2);
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white-clean);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.team-card .role {
  font-family: var(--font-pixel);
  font-size: 7px;
  color: var(--mint);
  letter-spacing: 1px;
  margin-bottom: 24px;
  line-height: 2;
  position: relative;
  z-index: 1;
}

/* Stats Bars */
.stats { 
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.stat-label {
  font-family: var(--font-pixel);
  color: rgba(255,255,255,0.3);
  width: 36px;
  text-align: left;
  font-size: 7px;
}

.stat-bar {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
}

.stat-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 0;
}

.stat-fill.creativity { background: linear-gradient(90deg, var(--hot-pink), var(--purple-pop)); }
.stat-fill.speed { background: linear-gradient(90deg, var(--neon-green), var(--mint)); }
.stat-fill.power { background: linear-gradient(90deg, var(--electric-blue), var(--purple-pop)); }

/* ============================================
   CLIENTS — Bold Statement + High Score
   ============================================ */
.clients {
  padding: 140px 0;
  position: relative;
}

.clients-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.clients-content .big-statement {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
  margin-bottom: 60px;
}

.clients-content .big-statement em {
  color: var(--yellow-pop);
  font-style: italic;
}

.highscore-board {
  background: var(--black-card);
  border: 2px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 48px;
  max-width: 700px;
  margin: 0 auto;
}

.highscore-title {
  font-family: var(--font-pixel);
  font-size: 14px;
  color: var(--yellow-pop);
  text-align: center;
  margin-bottom: 36px;
  text-shadow: 0 0 15px rgba(255, 230, 0, 0.4);
  letter-spacing: 3px;
}

.highscore-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-family: var(--font-pixel);
  font-size: 11px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
  border-radius: 12px;
  margin-bottom: 4px;
}

.highscore-row:hover {
  background: rgba(255, 230, 0, 0.04);
  transform: translateX(4px);
}

.highscore-row:last-child { border-bottom: none; }

.rank { color: var(--hot-pink); width: 44px; }
.player-name { color: var(--white-clean); flex: 1; text-align: left; margin-left: 16px; }
.score-val { color: var(--neon-green); }

/* Client Logos Marquee */
.client-logos-section {
  margin-top: 80px;
}

.client-logos-title {
  font-family: var(--font-pixel);
  font-size: 12px;
  color: var(--yellow-pop);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 3px;
  text-shadow: 0 0 15px rgba(255, 230, 0, 0.4);
}

.client-logos-marquee {
  overflow: hidden;
  padding: 20px 0;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.client-logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: client-scroll 25s linear infinite;
}

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

.client-logo-item {
  flex-shrink: 0;
  width: 140px;
  height: 80px;
  margin: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-card);
  border: 2px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 16px;
  transition: all 0.4s;
}

.client-logo-item:hover {
  border-color: var(--yellow-pop);
  box-shadow: 0 0 25px rgba(255, 230, 0, 0.15);
  transform: translateY(-4px);
}

.client-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.4s;
}


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

/* ============================================
   CONTACT — Bold Split
   ============================================ */
.contact {
  padding: 140px 0;
  background: var(--black-surface);
  position: relative;
}

.contact .section-header h2 em {
  color: var(--yellow-pop);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  padding: 48px;
  background: var(--black-card);
  border: 2px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  transition: all 0.4s;
}

.contact-info:hover {
  border-color: var(--hot-pink);
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white-clean);
  margin-bottom: 36px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border-radius: 16px;
  transition: all 0.3s;
}

.info-item:hover {
  background: rgba(255, 230, 0, 0.04);
  transform: translateX(4px);
}

.info-icon {
  font-family: var(--font-pixel);
  font-size: 14px;
  color: var(--yellow-pop);
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  text-shadow: 0 0 10px rgba(255, 230, 0, 0.3);
}

.info-text { font-size: 15px; line-height: 1.7; }

.info-label {
  font-family: var(--font-pixel);
  font-size: 8px;
  color: var(--mint);
  display: block;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.info-text a {
  color: var(--white-clean);
  text-decoration: none;
  transition: color 0.3s;
}

.info-text a:hover { color: var(--yellow-pop); }

/* Contact Form */
.contact-form-wrapper {
  padding: 48px;
  background: var(--black-card);
  border: 2px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  transition: all 0.4s;
}

.contact-form-wrapper:hover {
  border-color: var(--neon-green);
}

.contact-form-wrapper h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white-clean);
  margin-bottom: 36px;
}

.contact-form .form-group { margin-bottom: 24px; }

.contact-form label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--white-clean);
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  outline: none;
  transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--yellow-pop);
  box-shadow: 0 0 20px rgba(255, 230, 0, 0.1);
  background: rgba(255,230,0,0.02);
}

.contact-form textarea {
  height: 130px;
  resize: vertical;
}

.submit-btn {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  padding: 18px 44px;
  background: var(--yellow-pop);
  color: var(--black-deep);
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
}

.submit-btn:hover {
  background: var(--white-clean);
  box-shadow: 0 0 40px rgba(255, 230, 0, 0.3);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER — Yellow Section (Bike Bear)
   ============================================ */
.footer {
  background: var(--yellow-pop);
  color: var(--black-deep);
  padding: 80px 0 0;
  position: relative;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-brand {
  max-width: 400px;
}

.footer-brand .footer-logo {
  margin-bottom: 16px;
  display: block;
}

.footer-brand .footer-logo img {
  height: 60px;
  width: auto;
  display: block;
}

.footer-brand p {
  font-size: 16px;
  color: rgba(0,0,0,0.5);
  line-height: 1.7;
}

.footer-nav-group h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-nav-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-group a {
  font-size: 15px;
  color: rgba(0,0,0,0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav-group a:hover {
  color: var(--black-deep);
}

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

.footer-social a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-deep);
  color: var(--yellow-pop);
  border-radius: 50%;
  text-decoration: none;
  font-family: var(--font-pixel);
  font-size: 11px;
  transition: all 0.3s;
}

.footer-social a:hover {
  transform: translateY(-4px) rotate(-3deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Footer Marquee */
.footer-marquee {
  overflow: hidden;
  border-top: 2px solid rgba(0,0,0,0.1);
  padding: 16px 0;
}

.footer-marquee .marquee-track {
  animation-duration: 20s;
}

.footer-marquee .marquee-item {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: rgba(0,0,0,0.25);
  gap: 16px;
  padding: 0 16px;
}

.footer-marquee .marquee-item .star {
  color: rgba(0,0,0,0.4);
}

.footer-bottom {
  border-top: 2px solid rgba(0,0,0,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-family: var(--font-pixel);
  font-size: 8px;
  color: rgba(0,0,0,0.4);
  letter-spacing: 1px;
}

.footer-bottom .hearts {
  color: var(--hot-pink);
  animation: heartbeat 1s ease-in-out infinite;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 5px rgba(75, 201, 185, 0.2); }
  50% { box-shadow: 0 0 20px rgba(75, 201, 185, 0.4); }
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.35s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-split {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .services-left {
    position: relative;
    top: auto;
    text-align: center;
  }
  .services-left .services-desc {
    margin: 24px auto 0;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 18px;
    padding: 14px 32px;
  }

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

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .footer-top {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .container {
    padding: 0 20px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .section-header h2 {
    letter-spacing: -1px;
  }
}

@media (max-width: 480px) {
  .about-card { padding: 32px 24px; }
  .contact-info, .contact-form-wrapper { padding: 32px 24px; }
  .highscore-board { padding: 32px 20px; }
  .highscore-row { font-size: 9px; padding: 12px; }
  .cta-group { flex-direction: column; }
}
