/* Lunar Eclipse International – Theme & Base */
:root {
  --space-black: #050505;
  --eclipse-red: #8B0000;
  --eclipse-red-glow: rgba(139, 0, 0, 0.5);
  --text: #e8e8e8;
  --text-muted: #b0b0b0;
  --text-dim: #888;
  --spectrum-1: #FF004C;
  --spectrum-2: #FF7A00;
  --spectrum-3: #FFD500;
  --spectrum-4: #00D084;
  --spectrum-5: #00C2FF;
  --spectrum-6: #7A5CFF;
  --spectrum-7: #FF00E6;
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --font-heading: 'Orbitron', 'Montserrat', sans-serif;
  --font-body: 'Poppins', 'Roboto', sans-serif;
  --header-height: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--space-black);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 768px) {
  body { cursor: auto; }
}

.cursor-trail {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  animation: cursor-fade 0.6s ease-out forwards;
}
@keyframes cursor-fade {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.3); }
}

body.theme-day {
  background: linear-gradient(180deg, #b9dfff 0%, #93c9f4 42%, #6eaedc 72%, #5a9ccc 100%);
  --text: #0f1b2e;
  --text-muted: #233752;
  --text-dim: #3f5674;
  --glass-bg: rgba(255, 255, 255, 0.30);
  --glass-border: rgba(15, 30, 52, 0.24);
}
body.theme-day .spectrum-lines::before,
body.theme-day .spectrum-lines::after { opacity: 0.6; }
body.theme-day .section { background: transparent; }
body.theme-day .hero-video-wrap,
body.theme-day .hero-cinematic .hero-video-wrap {
  background: linear-gradient(135deg, #aacfe9 0%, #83b9df 55%, #659dc6 100%);
}
body.theme-day .contact-bg .contact-rainbow-wave { opacity: 0.4; }
body.theme-day .section-title,
body.theme-day .hero-title,
body.theme-day .company-name,
body.theme-day .nav-link,
body.theme-day .footer-col h4,
body.theme-day .footer-bottom p {
  color: #10233d;
  -webkit-text-fill-color: initial;
}
body.theme-day .hero-sub,
body.theme-day .hero-sub-2,
body.theme-day .about-intro,
body.theme-day .section-sub,
body.theme-day .footer-tagline,
body.theme-day .footer-col a,
body.theme-day .footer-col p {
  color: #27405f;
}
body.theme-day .btn-outline {
  color: #10233d;
  border-color: rgba(16, 35, 61, 0.35);
}

/* Full-page eclipse background */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
/* Day/Night light source (moon -> sun) */
.site-bg::before {
  content: "";
  position: absolute;
  top: 26px;
  right: 34px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,0.95) 0%, rgba(220,230,255,0.72) 45%, rgba(170,190,255,0.0) 75%);
  box-shadow:
    0 0 28px rgba(210,220,255,0.45),
    0 0 80px rgba(190,210,255,0.22),
    0 0 140px rgba(170,190,255,0.14);
  animation: moonlight-pulse 4.8s ease-in-out infinite;
  opacity: 0.95;
}
body.theme-day .site-bg::before {
  background:
    radial-gradient(circle at 40% 40%, rgba(255,255,250,1) 0%, rgba(255,247,195,0.98) 32%, rgba(255,232,135,0.9) 52%, rgba(255,212,98,0) 86%);
  box-shadow:
    0 0 55px rgba(255,236,150,0.95),
    0 0 150px rgba(255,220,110,0.75),
    0 0 320px rgba(255,204,90,0.62),
    0 0 520px rgba(255,230,175,0.46);
  animation: sunlight-pulse 4.2s ease-in-out infinite;
}
@keyframes moonlight-pulse {
  0%, 100% { transform: scale(1); opacity: 0.92; }
  50% { transform: scale(1.06); opacity: 1; }
}
@keyframes sunlight-pulse {
  0%, 100% { transform: scale(1); opacity: 0.98; }
  50% { transform: scale(1.14); opacity: 1; }
}
.site-bg .eclipse-bg-base {
  position: absolute;
  inset: 0;
  background: #030303;
  background-image: radial-gradient(ellipse 120% 100% at 50% 50%, #0a0508 0%, #050305 40%, #020202 70%, #000 100%);
}
.site-bg .eclipse-cosmic-layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(20,5,10,0.4) 0%, transparent 55%);
}
.site-bg .eclipse-cosmic-layer-2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(139,0,0,0.08) 0%, transparent 45%);
}
.site-bg .eclipse-globe {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(90vmin, 720px);
  height: min(90vmin, 720px);
  margin-left: min(-45vmin, -360px);
  margin-top: min(-45vmin, -360px);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%,
    rgba(139,0,0,0.35) 0%,
    rgba(80,0,0,0.25) 25%,
    rgba(30,0,0,0.15) 45%,
    rgba(10,0,0,0.08) 65%,
    transparent 85%);
  box-shadow:
    0 0 120px 60px rgba(139,0,0,0.2),
    0 0 200px 80px rgba(139,0,0,0.08),
    inset 0 0 80px 20px rgba(0,0,0,0.5);
  animation: eclipse-globe-pulse 8s ease-in-out infinite;
}
@keyframes eclipse-globe-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.92; transform: scale(1.02); }
}
.site-bg .eclipse-rays-wrap {
  position: absolute;
  width: 200%;
  height: 200%;
  left: -50%;
  top: -50%;
  animation: eclipse-rays-flow 25s linear infinite;
}
@keyframes eclipse-rays-flow {
  0% { transform: translateX(0); }
  100% { transform: translateX(-20%); }
}
.site-bg .eclipse-rays {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 200vmax;
  height: 200vmax;
  margin-left: -100vmax;
  margin-top: -100vmax;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(255,0,76,0.12) 30deg,
    rgba(255,122,0,0.1) 60deg,
    rgba(255,213,0,0.08) 90deg,
    rgba(0,208,132,0.08) 120deg,
    rgba(0,194,255,0.1) 150deg,
    rgba(122,92,255,0.12) 180deg,
    rgba(255,0,230,0.1) 210deg,
    transparent 240deg,
    rgba(255,0,76,0.08) 270deg,
    rgba(255,122,0,0.06) 300deg,
    transparent 330deg
  );
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 15%, black 25%, black 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 15%, black 25%, black 100%);
  filter: blur(2px);
  opacity: 0.9;
}
.site-bg .eclipse-rays-2 {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 200vmax;
  height: 200vmax;
  margin-left: -100vmax;
  margin-top: -100vmax;
  background: conic-gradient(
    from 60deg at 50% 50%,
    transparent 0deg,
    rgba(255,0,230,0.1) 40deg,
    rgba(255,0,76,0.08) 100deg,
    rgba(0,194,255,0.06) 160deg,
    rgba(0,208,132,0.06) 220deg,
    transparent 280deg
  );
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, transparent 20%, black 35%, black 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, transparent 20%, black 35%, black 100%);
  filter: blur(4px);
  opacity: 0.6;
  animation: eclipse-rays-rotate 60s linear infinite;
}
@keyframes eclipse-rays-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.site-bg .eclipse-lens-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150vmax;
  height: 150vmax;
  margin-left: -75vmax;
  margin-top: -75vmax;
  background: radial-gradient(circle at 50% 50%,
    transparent 20%,
    rgba(255,0,76,0.03) 35%,
    rgba(255,122,0,0.02) 45%,
    rgba(0,194,255,0.02) 55%,
    transparent 70%);
  filter: blur(80px);
  animation: eclipse-lens-pulse 12s ease-in-out infinite;
}
@keyframes eclipse-lens-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.site-bg .eclipse-streaks {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    transparent 0%, transparent 35%,
    rgba(255,0,76,0.04) 45%,
    rgba(255,122,0,0.03) 50%,
    rgba(0,194,255,0.03) 55%,
    transparent 65%, transparent 100%);
  background-size: 200% 100%;
  animation: eclipse-streak-flow 18s ease-in-out infinite;
}
@keyframes eclipse-streak-flow {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: 0 0; }
}
.site-bg .eclipse-particles { position: absolute; inset: 0; overflow: hidden; }
.site-bg .eclipse-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  box-shadow: 0 0 6px 1px rgba(255,255,255,0.2);
  animation: eclipse-particle-float 20s linear infinite;
}
.site-bg .eclipse-particle:nth-child(odd) { animation-duration: 25s; animation-direction: reverse; }
.site-bg .eclipse-particle:nth-child(3n) { animation-delay: -5s; opacity: 0.6; }
.site-bg .eclipse-particle:nth-child(5n) { animation-delay: -10s; width: 1px; height: 1px; opacity: 0.4; }
@keyframes eclipse-particle-float {
  0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  25% { transform: translate(2vw, -3vh) scale(1.2); opacity: 0.6; }
  50% { transform: translate(-1vw, -5vh) scale(0.9); opacity: 0.4; }
  75% { transform: translate(-2vw, -2vh) scale(1.1); opacity: 0.5; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
}
.site-bg .eclipse-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 50%, rgba(0,0,0,0.5) 100%);
}
.site-bg .eclipse-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body.theme-day .site-bg .eclipse-bg-base {
  background: #78b3de;
  background-image: radial-gradient(ellipse 130% 110% at 52% 44%, #d9edfb 0%, #b5d8ee 36%, #83b7d8 68%, #649bc0 100%);
}
body.theme-day .site-bg .eclipse-globe { opacity: 0.25; }

main { position: relative; z-index: 1; }

/* Header – Premium futuristic navbar */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: height 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  background: rgba(8, 6, 12, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--spectrum-1) 15%,
    var(--spectrum-3) 35%,
    var(--spectrum-5) 50%,
    var(--spectrum-7) 70%,
    transparent 100%);
  background-size: 200% 100%;
  animation: navbar-border-flow 8s ease-in-out infinite;
  opacity: 0.7;
}
.header.scrolled {
  height: 56px;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.5);
}
@keyframes navbar-border-flow {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: 0 0; }
}

/* Animated light beam across navbar */
.navbar-beam {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    rgba(255, 0, 76, 0.15),
    rgba(255, 255, 255, 0.08),
    transparent);
  animation: navbar-beam-pass 12s ease-in-out infinite;
  pointer-events: none;
}
@keyframes navbar-beam-pass {
  0% { left: -100%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

/* Brand: logo + company name (left) */
.nav-brand { display: flex; align-items: center; flex-shrink: 0; }
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease-in-out;
}
.logo-wrap:hover { opacity: 0.95; }

/* Logo in rounded glass container with halo */
.logo-glass {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 68px;
  padding: 0 12px;
  border-radius: 14px;
  /* Keep frame dark/clean so no backside image appears */
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 24px -4px rgba(139, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.logo-wrap:hover .logo-glass {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 32px -2px rgba(255, 0, 76, 0.45),
    0 0 48px -8px rgba(255, 0, 230, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.02);
}
.logo-glass .logo-img {
  width: auto;
  height: 56px;
  max-width: 210px;
  object-fit: contain;
  /* Remove white background and keep black strokes visible */
  mix-blend-mode: darken;
  filter: contrast(1.12) brightness(0.95) drop-shadow(0 0 10px rgba(255, 0, 76, 0.28));
  transition: filter 0.3s ease-in-out;
}
.logo-wrap:hover .logo-glass .logo-img {
  filter: drop-shadow(0 0 12px rgba(255, 0, 76, 0.6)) drop-shadow(0 0 20px rgba(255, 0, 230, 0.25));
}
.logo-glass .logo-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--eclipse-red);
  text-shadow: 0 0 12px var(--eclipse-red-glow);
}
.logo-glass .logo-icon { margin: 0; }
.logo-glass:not(:has(.logo-img)) .logo-fallback { display: flex; }

/* Company name */
.company-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
  transition: text-shadow 0.3s ease-in-out;
}
.logo-wrap:hover .company-name {
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.2), 0 0 40px rgba(255, 0, 76, 0.15);
}

/* Nav right: menu + theme + hamburger */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  display: inline-block;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0.25rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--spectrum-1), var(--spectrum-3), var(--spectrum-5), var(--spectrum-7));
  background-size: 200% 100%;
  transform: translateX(-50%);
  transition: width 0.3s ease-in-out, background-position 0.3s ease-in-out;
}
.nav-link:hover {
  color: #fff;
  background: linear-gradient(90deg, var(--spectrum-1), var(--spectrum-5), var(--spectrum-7));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-link:hover::after { width: 80%; }
.nav-link.active::after {
  width: 80%;
  background-position: 0 0;
  box-shadow: 0 0 12px rgba(255, 0, 76, 0.5);
}

.theme-switcher {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease-in-out;
}
.theme-switcher:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 16px rgba(255, 0, 76, 0.2);
}
.theme-icon { position: absolute; }
.theme-icon-sun { opacity: 0; }
body.theme-day .theme-icon-moon { opacity: 0; }
body.theme-day .theme-icon-sun { opacity: 1; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(255, 0, 76, 0.25);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  margin: 0 auto;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Mobile dropdown – glassmorphism panel */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 1rem 1.5rem 1.5rem;
  background: rgba(8, 6, 12, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s;
}
.nav-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: flex;
}
.nav-dropdown-link {
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  border-left: 3px solid transparent;
}
.nav-dropdown-link:hover {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--spectrum-1);
  color: #fff;
  box-shadow: inset 0 0 20px rgba(255, 0, 76, 0.08);
}

/* Footer logo (keep for footer) */
.logo { display: inline-flex; align-items: baseline; gap: 0.35rem; font-family: var(--font-heading); font-weight: 700; text-decoration: none; color: var(--text); }
.logo-icon { color: var(--eclipse-red); font-size: 1.25rem; }
.logo-text { font-size: 1.15rem; }
.logo-sub { font-size: 0.75rem; font-weight: 500; color: var(--text-muted); margin-left: 0.25rem; }
.logo-img-footer { display: block; height: 64px; max-width: 360px; object-fit: contain; mix-blend-mode: darken; filter: contrast(1.1) brightness(0.96) drop-shadow(0 0 12px rgba(255, 0, 76, 0.25)); }
.logo:has(.logo-img) .logo-fallback { display: none; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: var(--header-height);
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0505 0%, #1a0808 50%, #050505 100%);
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.4) 0%, rgba(5,5,5,0.85) 100%);
}
.spectrum-lines {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  max-width: 500px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(105deg,
    transparent 20%,
    rgba(255,0,76,0.12) 35%,
    rgba(255,122,0,0.1) 45%,
    rgba(255,213,0,0.08) 55%,
    rgba(0,208,132,0.06) 65%,
    rgba(0,194,255,0.08) 75%,
    rgba(122,92,255,0.1) 85%,
    rgba(255,0,230,0.12) 95%,
    transparent 100%);
  animation: spectrum-shift 8s ease-in-out infinite;
}
@keyframes spectrum-shift {
  0%, 100% { opacity: 1; transform: translateX(0); }
  50% { opacity: 0.85; transform: translateX(-15px); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}
.hero-highlight {
  background: linear-gradient(90deg, var(--spectrum-1), var(--spectrum-2), var(--spectrum-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub { font-size: 1.1rem; color: var(--text-muted); margin: 0 0 0.5rem; }
.hero-sub-2 { font-size: 1rem; color: var(--text-dim); margin: 0 0 2rem; font-style: italic; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(90deg, var(--spectrum-1), var(--spectrum-2));
  color: #fff;
  border-color: transparent;
}
.btn-primary:hover { filter: brightness(1.15); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--glass-border);
}
.btn-outline:hover { border-color: var(--spectrum-1); color: var(--spectrum-1); }
.btn-whatsapp {
  background: #25D366;
  color: #ffffff !important;
  border: none;
  margin-top: 0.5rem;
}
.btn-whatsapp:hover {
  filter: brightness(1.1);
  color: #ffffff !important;
}

/* Neon divider */
.neon-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--spectrum-1), var(--spectrum-4), var(--spectrum-7), transparent);
  background-size: 200% 100%;
  animation: neon-flow 4s linear infinite;
}
@keyframes neon-flow {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Sections */
.section {
  padding: 4rem 1.5rem;
  background: rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section.revealed { opacity: 1; transform: translateY(0); }
.container { max-width: 1100px; margin: 0 auto; }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  margin: 0 0 1.5rem;
  letter-spacing: 0.03em;
}
.section-sub { text-align: center; color: var(--text-muted); margin: -0.5rem 0 2rem; }

/* Glass cards */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* About */
.about-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.about-card {
  padding: 1.75rem;
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.about-card:hover {
  border-color: rgba(255, 0, 76, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 30px rgba(255, 0, 76, 0.08);
}
.about-card h3 { margin: 0 0 0.75rem; font-size: 1.15rem; font-family: var(--font-heading); color: var(--text); }
.about-card p { margin: 0; font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }
.map-wrap { margin-top: 2rem; }
.world-map-card {
  padding: 1.75rem;
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.world-map-title { text-align: center; margin: 0 0 1.25rem; font-size: 1.1rem; font-family: var(--font-heading); color: var(--text-muted); }
.world-map-container {
  position: relative;
  width: 100%;
  min-height: 280px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.world-map-svg { width: 100%; height: auto; display: block; }
.world-map-svg .world-outline {
  stroke-dasharray: 4 3;
  animation: map-line-flow 20s linear infinite;
}
@keyframes map-line-flow { to { stroke-dashoffset: -70; } }
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: default;
  z-index: 2;
}
.map-pin .pin-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--spectrum-1);
  box-shadow: 0 0 0 0 rgba(255, 0, 76, 0.5);
  animation: map-pin-pulse 2s ease-in-out infinite;
}
.map-pin:nth-child(odd) .pin-dot { animation-delay: 0.4s; }
.map-pin:nth-child(3n) .pin-dot { animation-delay: 0.8s; background: var(--spectrum-4); }
.map-pin:nth-child(5n) .pin-dot { animation-delay: 0.2s; background: var(--spectrum-5); }
.map-pin .pin-label {
  margin-top: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.35rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.map-pin .pin-flag {
  font-size: 0.8rem;
  line-height: 1;
}
.map-pin .pin-flag-img {
  width: 14px;
  height: 10px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.45);
}
.map-pin:hover .pin-dot { transform: scale(1.3); box-shadow: 0 0 20px 4px rgba(255, 0, 76, 0.5); }
.map-pin:hover .pin-label { color: var(--text); }
@keyframes map-pin-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 0, 76, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(255, 0, 76, 0); }
}
.country-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.country-badges span {
  padding: 0.25rem 0.6rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.country-badges .flag {
  font-size: 1rem;
  line-height: 1;
}
.country-badges .flag-img {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.stat-card { text-align: center; padding: 2rem 1rem; }
.stat-number { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: var(--spectrum-1); }
.stat-plus { font-size: 1.5rem; color: var(--spectrum-1); }
.stat-label { display: block; margin-top: 0.5rem; font-size: 0.9rem; color: var(--text-muted); }

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.product-card {
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(45deg, var(--spectrum-1), var(--spectrum-2), var(--spectrum-3), var(--spectrum-4), var(--spectrum-5), var(--spectrum-6), var(--spectrum-7), var(--spectrum-1));
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
  animation: rainbow-border 3s linear infinite;
}
.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(255,0,76,0.25);
}
.product-card:hover::before { opacity: 1; }
@keyframes rainbow-border {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.product-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.product-card h3 { font-size: 1rem; margin: 0 0 1rem; line-height: 1.3; }
.btn-quick-inquiry {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: var(--spectrum-1);
  border: 1px solid var(--spectrum-1);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-quick-inquiry:hover { background: rgba(255,0,76,0.15); }

/* Brands */
.brand-galaxy {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.brands-section {
  opacity: 1 !important;
  transform: none !important;
}
.brand-world {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 240px;
  height: 240px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #0b1020;
  background-image:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.18), rgba(255,255,255,0) 58%),
    radial-gradient(circle at 50% 58%, rgba(0,194,255,0.35), rgba(10,20,60,0.92) 68%, rgba(5,8,20,0.96) 100%),
    url("assets/world-globe.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: normal;
  filter: saturate(1.15) contrast(1.18) brightness(1.2);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow:
    0 0 36px rgba(0, 194, 255, 0.35),
    0 0 90px rgba(255, 0, 76, 0.2),
    inset -12px -12px 24px rgba(0,0,0,0.26);
}
.brand-world::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.12), rgba(255,255,255,0) 55%);
  pointer-events: none;
}
.brand-world::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 0 35px rgba(255,255,255,0.16);
}
.brand-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  animation: orbit-rotate 34s linear infinite;
}
.brand-orbit-1 { width: 330px; height: 330px; animation-duration: 26s; animation-direction: reverse; }
.brand-orbit-2 { width: 430px; height: 430px; animation-duration: 36s; }
.brand-logo-item {
  position: absolute;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.14);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  filter: grayscale(1);
  transition: filter 0.3s, color 0.3s, box-shadow 0.3s;
}
.brand-orbit-1 .brand-logo-item:nth-child(1) { top: -34px; left: 50%; transform: translateX(-50%); }
.brand-orbit-1 .brand-logo-item:nth-child(2) { right: -34px; top: 50%; transform: translateY(-50%); }
.brand-orbit-1 .brand-logo-item:nth-child(3) { bottom: -34px; left: 50%; transform: translateX(-50%); }
.brand-orbit-1 .brand-logo-item:nth-child(4) { left: -34px; top: 50%; transform: translateY(-50%); }
.brand-orbit-1 .brand-logo-item:nth-child(5) { top: 18%; right: 10%; }
.brand-orbit-1 .brand-logo-item:nth-child(6) { bottom: 18%; left: 10%; }
.brand-orbit-2 .brand-logo-item:nth-child(1) { top: -34px; left: 50%; transform: translateX(-50%); }
.brand-orbit-2 .brand-logo-item:nth-child(2) { right: -34px; top: 50%; transform: translateY(-50%); }
.brand-orbit-2 .brand-logo-item:nth-child(3) { bottom: -34px; left: 50%; transform: translateX(-50%); }
.brand-orbit-2 .brand-logo-item:nth-child(4) { left: -34px; top: 50%; transform: translateY(-50%); }
.brand-orbit-2 .brand-logo-item:nth-child(5) { top: 16%; left: 17%; }
.brand-orbit-2 .brand-logo-item:nth-child(6) { bottom: 16%; right: 17%; }
.brand-logo-item:hover {
  filter: grayscale(0);
  color: var(--spectrum-1);
  box-shadow: 0 0 20px rgba(255,0,76,0.4);
}
@keyframes orbit-rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Offices */
.office-map-wrap { position: relative; min-height: 300px; margin-bottom: 2rem; }
.office-map {
  position: relative;
  width: 100%;
  height: 300px;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(20,20,40,0.4) 100%);
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  overflow: hidden;
}
.office-google-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.75) contrast(1.05) brightness(0.75);
  z-index: 0;
}
.office-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 5, 10, 0.15) 0%, rgba(5, 5, 10, 0.4) 100%);
  z-index: 1;
}
.office-pin {
  position: absolute;
  padding: 0.5rem 1rem;
  background: rgba(5, 5, 5, 0.75);
  border: 1px solid rgba(255, 0, 76, 0.85);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(255,0,76,0.35);
  transition: all 0.25s ease;
  z-index: 2;
  font-weight: 600;
}
.office-pin::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 12px;
  border: 1px solid rgba(255, 0, 76, 0.4);
  animation: office-pin-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
.office-pin:hover { box-shadow: 0 0 25px rgba(255,0,76,0.55); transform: scale(1.05); }
@keyframes office-pin-pulse {
  0% { transform: scale(0.9); opacity: 0.75; }
  70% { transform: scale(1.12); opacity: 0.1; }
  100% { transform: scale(1.18); opacity: 0; }
}
.office-pin-bd { top: 55%; left: 72%; }
.office-pin-cn { top: 38%; left: 78%; }
.office-pin-hk { top: 42%; left: 82%; }
.office-pin-intl { top: 30%; left: 45%; }
.office-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 400px;
  padding: 2rem;
  z-index: 2000;
  display: none;
}
.office-popup[data-open="true"] { display: block; }
.office-popup-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}
.office-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.office-card h3 { margin: 0 0 0.5rem; font-size: 1.1rem; }
.office-card p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }

/* Downloads */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.download-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--glass-border);
}
.download-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(255,0,76,0.2);
  border-color: var(--spectrum-1);
}
.download-icon { font-size: 2.5rem; }
.download-card-button {
  cursor: pointer;
  width: 100%;
  text-align: center;
  font: inherit;
}
.download-sub {
  font-size: 0.78rem;
  color: var(--text-dim);
}
.certificates-panel {
  margin-top: 1.2rem;
  padding: 1.1rem 1.2rem;
}
.certificates-panel h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
}
.certificate-list {
  display: grid;
  gap: 0.5rem;
}
.certificate-list a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.5rem 0.65rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  transition: all 0.2s;
}
.certificate-list a:hover {
  color: #fff;
  border-color: rgba(255,0,76,0.45);
  box-shadow: 0 0 14px rgba(255,0,76,0.15);
}

/* Contact */
.contact-bg { position: relative; overflow: hidden; }
.contact-rainbow-wave {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,0,76,0.05), rgba(0,194,255,0.05), rgba(255,0,230,0.05), transparent);
  background-size: 200% 100%;
  animation: neon-flow 6s linear infinite;
  pointer-events: none;
}
.contact-futuristic-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.contact-info h3 { margin: 1rem 0 0.5rem; font-size: 1rem; }
.contact-info p { margin: 0; font-size: 0.95rem; color: var(--text-muted); }
.contact-info a { color: var(--spectrum-5); text-decoration: none; }
.rfq-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.rfq-form input,
.rfq-form textarea {
  padding: 0.75rem;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text);
  font-size: 1rem;
  font-family: var(--font-body);
  resize: vertical;
}
.rfq-form input::placeholder,
.rfq-form textarea::placeholder { color: var(--text-dim); }
.rfq-form textarea { min-height: 100px; }

/* Footer */
.footer {
  padding: 2.5rem 1.5rem 1.2rem;
  border-top: 1px solid var(--glass-border);
  background: linear-gradient(180deg, rgba(8,8,12,0.65) 0%, rgba(6,6,10,0.88) 100%);
  position: relative;
  z-index: 2;
  display: block;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto 1.5rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col h4 {
  margin: 0 0 0.45rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: #fff;
}
.footer-col a,
.footer-col p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
}
.footer-col a:hover {
  color: #fff;
}
.footer-col-brand .footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.55rem;
  padding: 0.5rem 0.85rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 20px rgba(255, 0, 76, 0.1);
}
.footer-tagline {
  margin: 0;
  max-width: 320px;
  line-height: 1.55;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.footer-bottom p { margin: 0; font-size: 0.85rem; color: var(--text-dim); }

/* Responsive – navbar */
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .company-name { font-size: 0.95rem; max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}
@media (max-width: 768px) {
  .company-name { max-width: 140px; }
  .logo-glass { width: 160px; height: 52px; padding: 0 8px; }
  .logo-glass .logo-img { height: 42px; max-width: 145px; }
  .contact-futuristic-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.1rem; }
  .footer-col-brand .footer-logo { margin-bottom: 0.3rem; }
  .footer-tagline { max-width: 100%; }
}
