:root {
  --dark: #050510;
  --dark-2: #0a0a1a;
  --navy: #0d1b3e;
  --electric-blue: #0066ff;
  --neon-blue: #00a8ff;
  --cyan: #00e5ff;
  --yellow: #ffd600;
  --yellow-glow: rgba(255, 214, 0, 0.3);
  --orange: #ff6b00;
  --white: #ffffff;
  --gray: rgba(255, 255, 255, 0.5);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --font-main: 'Outfit', sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ══════════ SLIDER / BUBBLE HERO ══════════ */
.slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  cursor: none;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.base-slide {
  z-index: 1;
}

.mask-slide {
  z-index: 2;
  clip-path: circle(0px at 50% 50%);
  transition: clip-path 0.08s ease-out;
}

.slider-content {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
  width: 90%;
  max-width: 800px;
}

.slider-content .brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 102, 255, 0.15);
  border: 1px solid rgba(0, 102, 255, 0.3);
  border-radius: 100px;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
  pointer-events: auto;
  animation: fadeDown 0.8s ease both;
  backdrop-filter: blur(10px);
}

.brand-tag .live-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.5);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(0, 229, 255, 0);
  }
}

.slider-content h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 120px);
  line-height: 0.95;
  letter-spacing: 3px;
  color: var(--white);
  text-shadow: 0 0 60px rgba(0, 102, 255, 0.3);
  margin-bottom: 20px;
  animation: fadeDown 0.8s 0.15s ease both;
}

.slider-content h1 .accent {
  color: var(--yellow);
}

.slider-content .sub {
  font-size: clamp(15px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.6;
  animation: fadeDown 0.8s 0.3s ease both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  pointer-events: auto;
  animation: fadeDown 0.8s 0.45s ease both;
}

.btn-glow {
  background: var(--electric-blue);
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-main);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.5s;
}

.btn-glow:hover::before {
  left: 100%;
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(0, 102, 255, 0.5);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 40px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-main);
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Custom cursor for hero */
.bubble-cursor {
  position: fixed;
  width: 160px;
  height: 160px;
  border: 2px solid rgba(0, 229, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s,
    border-color 0.3s;
  mix-blend-mode: difference;
}

.bubble-cursor.active {
  width: 250px;
  height: 250px;
  border-color: rgba(255, 214, 0, 0.5);
}

/* Slide indicators */
.slide-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.slide-dot {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.slide-dot.active {
  background: var(--yellow);
  width: 60px;
}

.slide-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.scroll-hint {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  transform: rotate(45deg);
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
  }
}

.slider-content .brand-tag {
  animation: fadeTag 0.8s ease both;
}

.slider-content h1 {
  animation: fadeTag 0.8s 0.15s ease both;
}

.slider-content .sub {
  animation: fadeTag 0.8s 0.3s ease both;
}

.hero-btns {
  animation: fadeTag 0.8s 0.45s ease both;
}

@keyframes fadeTag {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════ NAV ══════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 5, 16, 0.3);
  backdrop-filter: blur(30px) saturate(1.5);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.4s;
}

nav.scrolled {
  background: rgba(5, 5, 16, 0.85);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 2px;
  text-decoration: none;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-brand .teo {
  color: var(--yellow);
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-whatsapp {
  background: #25d366 !important;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 13px !important;
  display: flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.2s,
    box-shadow 0.3s !important;
}

.nav-whatsapp::after {
  display: none !important;
}

.nav-whatsapp:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.4) !important;
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s;
}

/* ══════════ MARQUEE ══════════ */
.marquee {
  position: relative;
  z-index: 1;
  padding: 24px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
  background: rgba(0, 102, 255, 0.03);
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.12);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 48px;
}

.marquee-item .dot {
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.4;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ══════════ SECTIONS ══════════ */
.section {
  position: relative;
  z-index: 1;
}

.section-head {
  text-align: center;
  padding: 120px 24px 56px;
}

.section-head .label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 8px 20px;
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 16px;
}

.section-head h2 .hl {
  color: var(--yellow);
}

.section-head p {
  color: var(--gray);
  font-size: 17px;
  max-width: 500px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.6;
}

/* ══════════ SERVICES ══════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 48px 120px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--electric-blue), var(--cyan), var(--yellow));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 60px rgba(0, 102, 255, 0.12);
}

.service-icon {
  font-size: 52px;
  margin-bottom: 24px;
  display: block;
  transition: transform 0.4s;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(-8deg);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}

.card-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.service-card:hover .card-glow {
  opacity: 0.2;
}

/* ══════════ STATS ══════════ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--glass-border);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.stat-item {
  background: var(--dark);
  padding: 48px 24px;
  text-align: center;
  transition: background 0.3s;
}

.stat-item:hover {
  background: var(--dark-2);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 56px;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-num .hl {
  color: var(--yellow);
}

.stat-label {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ══════════ LOCATIONS ══════════ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
  padding: 0 48px 120px;
  max-width: 1400px;
  margin: 0 auto;
}

.loc-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.35s;
  cursor: pointer;
}

.loc-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 102, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.loc-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--yellow);
  line-height: 1;
  min-width: 48px;
}

.loc-info h4 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.loc-info .loc-addr {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 6px;
}

.loc-info .loc-hours {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan);
  padding: 4px 12px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 100px;
  display: inline-block;
}

/* ══════════ WHY US ══════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 0 48px 120px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.why-card .why-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.4s;
}

.why-card:hover .why-icon {
  transform: scale(1.15);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}

.why-full {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-visual {
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--dark));
}

.animated-rings {
  position: absolute;
  width: 200px;
  height: 200px;
}

.ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(0, 229, 255, 0.15);
  border-radius: 50%;
  animation: ringRotate 8s linear infinite;
}

.ring:nth-child(2) {
  inset: 20px;
  animation-duration: 12s;
  animation-direction: reverse;
  border-color: rgba(255, 214, 0, 0.1);
}

.ring:nth-child(3) {
  inset: 40px;
  animation-duration: 16s;
  border-color: rgba(0, 102, 255, 0.15);
}

@keyframes ringRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ══════════ CTA ══════════ */
.cta-section {
  padding: 0 48px 120px;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-card {
  border-radius: 32px;
  padding: 100px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--electric-blue), #0044cc, var(--neon-blue));
  background-size: 200% 200%;
  animation: ctaGrad 6s ease-in-out infinite;
}

@keyframes ctaGrad {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 214, 0, 0.1), transparent 50%);
  pointer-events: none;
}

.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  max-width: 480px;
  margin: 0 auto 40px;
  position: relative;
  font-weight: 300;
}

.cta-whatsapp {
  background: #25d366;
  color: #fff;
  border: none;
  padding: 18px 52px;
  border-radius: 100px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-main);
  position: relative;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 50px rgba(37, 211, 102, 0.4);
}

/* ══════════ FOOTER ══════════ */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--glass-border);
  padding: 72px 48px 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .f-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.footer-brand .f-logo .teo {
  color: var(--yellow);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  font-weight: 300;
}

.footer-col h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 14px;
  padding: 5px 0;
  transition: color 0.2s;
  font-weight: 300;
}

.footer-col a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.2);
  flex-wrap: wrap;
  gap: 16px;
}

.social-links {
  display: flex;
  gap: 24px;
}

.social-links a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.social-links a:hover {
  color: var(--yellow);
}

/* ══════════ REVEAL ══════════ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════ FLOATING BG BLOBS ══════════ */
.bg-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.25;
  animation: blobDrift 14s ease-in-out infinite;
}

.bb1 {
  width: 500px;
  height: 500px;
  background: var(--electric-blue);
  top: -5%;
  right: -5%;
  animation-duration: 16s;
}

.bb2 {
  width: 400px;
  height: 400px;
  background: var(--yellow);
  top: 40%;
  left: -8%;
  animation-delay: -5s;
  animation-duration: 20s;
}

.bb3 {
  width: 350px;
  height: 350px;
  background: var(--cyan);
  bottom: -5%;
  right: 20%;
  animation-delay: -10s;
  animation-duration: 18s;
}

@keyframes blobDrift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(60px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-40px, 60px) scale(0.9);
  }
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 900px) {
  nav {
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .services-grid,
  .why-grid {
    grid-template-columns: 1fr;
    padding: 0 20px 80px;
  }

  .why-full {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    padding: 0 20px 80px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .cta-section {
    padding: 0 20px 80px;
  }

  .cta-card {
    padding: 60px 24px;
  }

  .phones-showcase {
    gap: 12px;
  }
}
