@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@700&display=swap');

:root {
  --accent: #0055FF;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(0, 229, 255, 0.15);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --bg-color: #060A12;
  --primary: #00E5FF;
  --secondary: #FFD600;
  --surface: #0D1220;
  --text-primary: #FFFFFF;
  --text-muted: #CBD5E1;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Custom Cursor (Disabled) */
.cursor-dot, .cursor-ring {
  display: none !important;
}

/* Loading Screen (Disabled) */
.loader-overlay {
  display: none !important;
}
.loader-text {
  font-family: var(--font-heading);
  font-size: 3rem;
  letter-spacing: 6px;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}
.loader-subtext {
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  text-transform: uppercase;
  animation: flicker 0.1s infinite alternate;
}
.spark-container {
  width: 250px;
  height: 2px;
  background: rgba(0, 229, 255, 0.1);
  position: relative;
  overflow: visible;
}
.electric-spark {
  position: absolute;
  top: -4px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff, 0 0 20px var(--primary), 0 0 40px var(--primary), 0 0 80px var(--primary);
  animation: shootSpark 1.5s ease-in-out forwards, flickerSpark 0.05s infinite;
}
.electric-trail {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--primary);
  box-shadow: 0 0 15px var(--primary);
  animation: trailSpark 1.5s ease-in-out forwards;
}

@keyframes shootSpark {
  0% { left: 0%; transform: scale(1) translateY(0); }
  25% { transform: scale(1.5) translateY(-5px); }
  50% { transform: scale(0.5) translateY(5px); }
  75% { transform: scale(2) translateY(-3px); }
  100% { left: 100%; transform: scale(1) translateY(0); }
}
@keyframes trailSpark {
  0% { width: 0%; }
  100% { width: 100%; }
}
@keyframes flickerSpark {
  0% { opacity: 1; }
  50% { opacity: 0.2; }
  100% { opacity: 1; }
}
@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; text-shadow: 0 0 10px rgba(0,229,255,0.8); }
  20%, 24%, 55% { opacity: 0.3; text-shadow: none; }
}

/* Page Transition */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  transform: translateX(-100%);
}

/* Three.js Canvas Containers (Disabled) */
.canvas-bg, .canvas-interactive {
  display: none !important;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(6, 10, 18, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 5%;
  border-bottom: 1px solid rgba(0, 229, 255, 0.2);
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-brand svg {
  fill: var(--primary);
  width: 24px;
  height: 24px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.95rem;
  transition: color 0.3s, text-shadow 0.3s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(0,229,255,0.5);
}

/* Footer */
footer {
  background: var(--bg-color);
  border-top: 1px solid var(--primary);
  padding: 4rem 5% 2rem;
  position: relative;
  z-index: 10;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-logo svg {
  fill: var(--primary);
  width: 24px;
}
.footer-links h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}
.footer-links ul {
  list-style: none;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--text-primary); }
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-socials a svg {
  fill: var(--text-primary);
  width: 24px;
  transition: fill 0.3s;
}
.footer-socials a:hover svg {
  fill: var(--primary);
}
.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}

/* Button */
.btn {
  
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-heading);
  color: var(--bg-color);
  background: var(--text-primary);
  border-radius: 4px;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 1px solid transparent;

}
.btn { border-radius: 50px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 4px 15px rgba(0,229,255,0.2); transition: all 0.3s ease; } 
.btn:hover { box-shadow: 0 0 20px rgba(0,229,255,0.6); transform: scale(1.05); }
.btn:hover {
  background: var(--primary);
  box-shadow: 0 0 20px rgba(0,229,255,0.4);
}

/* Specific Sections */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5%;
  position: relative;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero h1 {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}
/* GSAP split text placeholder */
.word { display: inline-block; }

.hero p {
  color: var(--text-muted);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

/* Marquee */
.marquee-wrapper {
  overflow: hidden;
  background: var(--surface);
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee-track.reverse {
  animation: marquee-reverse 40s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.marquee-card {
  background: var(--bg-color);
  border-top: 2px solid var(--primary);
  padding: 1.5rem 2rem;
  margin: 0 1rem;
  min-width: 300px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transform: perspective(1000px) rotateY(0deg);
  transition: transform 0.4s;
}
.marquee-card:hover {
  transform: perspective(1000px) rotateY(8deg);
}
.marquee-card h4 { margin: 0; }
.spec-badge {
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 500;
}
.marquee-icon {
  width: 40px;
  fill: var(--text-muted);
}

/* Stats */
.stats-section {
  padding: 6rem 5%;
  background: var(--bg-color);
  position: relative;
  z-index: 2;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.stat-card {
  background: var(--surface);
  padding: 2.5rem;
  text-align: center;
  border-radius: 8px;
}
.stat-card .num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--primary);
}
.stat-card .label {
  color: var(--text-muted);
}

/* Globe Reach */
.reach-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  overflow: hidden;
}
.reach-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}
.reach-content h2 { font-size: 3rem; }

/* About Teaser */
.about-teaser {
  padding: 8rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--surface);
  position: relative;
  z-index: 2;
}
.about-circuit {
  height: 300px;
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 8px;
  position: relative;
  background: 
    linear-gradient(90deg, var(--surface) 21px, transparent 1%) center,
    linear-gradient(var(--surface) 21px, transparent 1%) center,
    var(--primary);
  background-size: 22px 22px;
  overflow: hidden;
}
.about-circuit::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 2px;
  background: var(--secondary);
  top: 50%;
  left: -100%;
  animation: scan 4s linear infinite;
}
@keyframes scan {
  100% { left: 100%; }
}

/* Page Hero */
.page-hero {
  padding: 12rem 5% 4rem;
  text-align: center;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-hero h1 {
  font-size: 4rem;
  position: relative;
  display: inline-block;
}
.page-hero h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--primary);
  animation: lineDraw 1s ease forwards 0.5s;
}
@keyframes lineDraw {
  100% { width: 100%; }
}
.page-hero p {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-top: 1.5rem;
}

/* Products Canvas */
.product-showcase {
  height: 80vh;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.product-info-panel {
  position: absolute;
  right: -400px;
  top: 50%;
  transform: translateY(-50%);
  width: 350px;
  background: rgba(13, 18, 32, 0.9);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-left: 2px solid var(--primary);
  transition: right 0.5s ease;
  z-index: 10;
}
.product-info-panel.active {
  right: 5%;
}
.product-info-panel h3 { color: var(--primary); }

/* Product Grid */
.product-grid-section {
  padding: 6rem 5%;
  background: var(--bg-color);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  perspective: 1000px;
}
.product-card-3d {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 2.5rem;
  border-radius: 8px;
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
  transform-style: preserve-3d;
}
.product-card-3d:hover {
  transform: translateY(-8px) rotateX(4deg);
  box-shadow: 0 15px 30px rgba(0, 229, 255, 0.15);
  border-color: var(--primary);
}
.product-card-3d h3 { transform: translateZ(30px); }
.product-card-3d ul { transform: translateZ(20px); list-style: none; margin: 1.5rem 0;}
.product-card-3d li { color: var(--text-muted); margin-bottom: 0.5rem; }

/* Timeline Pinned */
.timeline-wrap {
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.timeline-track {
  display: flex;
  align-items: center;
  height: 100%;
  width: 350vw; /* Wide for horizontal scroll */
  padding-left: 50vw;
}
.timeline-step {
  width: 400px;
  padding: 2rem;
  margin-right: 200px;
  position: relative;
}
.timeline-step .num {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.3;
}
.timeline-step.active .num { opacity: 1; }

/* Flip Cards */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 6rem 5%;
}
.flip-card {
  background-color: transparent;
  height: 300px;
  perspective: 1000px;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}
.flip-card-back {
  transform: rotateY(180deg);
  border-color: var(--primary);
}

/* Vertical Timeline */
.vert-timeline {
  max-width: 800px;
  margin: 4rem auto;
  position: relative;
}
.line-draw {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--primary);
  transform-origin: top;
  transform: scaleY(0);
}
.vert-item {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
  width: 100%;
}
.vert-item:nth-child(even) { flex-direction: row-reverse; }
.vert-content {
  width: 45%;
  background: var(--surface);
  padding: 2rem;
  position: relative;
  border-radius: 4px;
}
.dot {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  top: 30px;
}
.vert-item:nth-child(odd) .dot { right: -34px; }
.vert-item:nth-child(even) .dot { left: -34px; }
.vert-year {
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2rem 5% 6rem;
}
.team-card {
  background: var(--surface);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,229,255,0.1);
}
.avatar {
  width: 100px;
  height: 100px;
  background: #1a2235;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

/* Certs */
.cert-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 0 5% 6rem;
  flex-wrap: wrap;
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.cert-item:hover { color: var(--primary); }

/* Contact */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 6rem 5%;
  position: relative;
  z-index: 2;
}
.office-cards { display: grid; gap: 1rem; margin-top: 2rem; }
.office-card {
  background: rgba(255,255,255,0.02);
  padding: 1.5rem;
  border-left: 2px solid var(--text-muted);
}
.contact-form {
  background: var(--surface);
  padding: 3rem;
  border-radius: 8px;
}
.form-group { margin-bottom: 1.5rem; }
.form-control {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: var(--text-primary);
  padding: 0.8rem 0;
  font-family: var(--font-body);
  transition: border-color 0.3s;
}
.form-control:focus {
  outline: none;
  border-bottom-color: var(--primary);
}
textarea.form-control { resize: vertical; min-height: 100px; }
.form-success {
  color: #00FF88;
  margin-top: 1rem;
  display: none;
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 { font-size: 3.5rem; }
  .about-teaser, .contact-split { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links { 
    overflow-x: auto; 
    white-space: nowrap; 
    max-width: 100%; 
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 5%;
  }
  .tech-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .vert-item { flex-direction: column !important; margin-bottom: 2rem; }
  .vert-content { width: 100%; }
  .line-draw, .dot { display: none; }
}


/* Premium Theme Upgrades */
.gradient-text {
  background: linear-gradient(90deg, #FFFFFF 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #FFFFFF;
  background-clip: text;
  display: inline-block;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.glass-card:hover::before {
  left: 150%;
}

.float-hover:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 15px 40px rgba(0, 229, 255, 0.15);
}

.btn.glow {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border: none;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn.glow:hover {
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
  transform: scale(1.05);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(0, 229, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.icon-wrapper svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* Featured Products Home */
.featured-products {
  padding: 6rem 5%;
  background: var(--bg-color);
  position: relative;
  z-index: 5;
}

.product-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card-home {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: all 0.4s ease;
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
}

.product-card-home:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 229, 255, 0.2);
}

.product-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  z-index: 1;
}

.product-card-home:hover .product-card-img {
  transform: scale(1.1);
}

.product-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(6,10,18,0.95) 0%, rgba(6,10,18,0.4) 50%, transparent 100%);
  z-index: 2;
  transition: all 0.4s ease;
}

.product-card-home:hover .product-card-overlay {
  background: linear-gradient(to top, rgba(6,10,18,0.95) 0%, rgba(0,229,255,0.2) 100%);
}

.product-card-content {
  position: relative;
  z-index: 3;
  padding: 2rem;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.product-card-home:hover .product-card-content {
  transform: translateY(0);
}

.product-card-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.product-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  line-height: 1.5;
}

.product-card-home:hover .product-card-desc {
  opacity: 1;
}

.product-card-btn {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  position: relative;
}

.product-card-btn::after {
  content: '→';
  margin-left: 5px;
  transition: margin-left 0.3s;
}

.product-card-home:hover .product-card-btn::after {
  margin-left: 10px;
}

.hero-slide {
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  z-index: 2; 
  width: 90%; 
  max-width: 1000px; 
  text-align: center; 
  opacity: 0; 
  pointer-events: none; 
  transition: opacity 1s ease;
}
.hero-slide.active {
  opacity: 1; 
  pointer-events: auto;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(6, 10, 18, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 229, 255, 0.2);
  min-width: 220px;
  list-style: none;
  padding: 0.5rem 0;
  border-radius: 4px;
  z-index: 1001;
  max-height: 400px;
  overflow-y: auto;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu li {
  margin: 0;
}
.dropdown-menu a {
  white-space: nowrap;
  display: block;
  padding: 0.8rem 1.5rem;
  color: var(--text-muted) !important;
  transition: background 0.3s, color 0.3s;
  font-size: 0.9rem !important;
  text-align: center;
}
.dropdown-menu a:hover {
  background: rgba(0, 229, 255, 0.1);
  color: var(--primary) !important;
  text-shadow: none !important;
}
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding-left: 1rem;
  }
}

/* Product Tabs */
.product-tabs {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.tab-headers {
  display: flex;
  gap: 1.5rem;
  border-bottom: 2px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none; /* Firefox */
}
.tab-headers::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}
.tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  padding: 0.8rem 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}
.tab-btn:hover {
  color: #fff;
}
.tab-btn.active {
  color: var(--primary);
  font-weight: bold;
}
.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}
.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}
.tab-content.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown-menu::-webkit-scrollbar {
  width: 6px;
}
.dropdown-menu::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.2);
}
.dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

/* Mobile Alignment Fixes */
@media (max-width: 900px) {
  .product-detail-container > div {
    grid-template-columns: 1fr !important;
  }
  .catalog-layout {
    flex-direction: column !important;
    padding-top: 80px;
  }
  .catalog-sidebar {
    position: static;
    max-height: none;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  /* Navbar Fixes */
  .mobile-toggle {
    display: block !important;
    font-size: 2rem;
    color: var(--primary);
    cursor: pointer;
    z-index: 1002;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(6, 10, 18, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    display: none;
    border-bottom: 1px solid rgba(0, 229, 255, 0.2);
  }
  .nav-links.mobile-active {
    display: flex !important;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .nav-links a {
    display: block;
    padding: 1rem;
    font-size: 1.1rem;
  }
  
  /* Text and Padding Adjustments */
  h1 {
    font-size: 2rem !important;
  }
  h2 {
    font-size: 1.8rem !important;
  }
  .hero-slide h1 {
    font-size: 2.2rem !important;
  }
  .hero-slide p {
    font-size: 1rem !important;
  }
  .product-detail-container {
    padding: 1.5rem !important;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo {
    display: flex;
    justify-content: center;
  }
  .footer-socials {
    justify-content: center;
  }
  .footer-content p {
    margin: 0 auto;
  }
}

/* Hide mobile toggle on desktop */
.mobile-toggle {
  display: none;
}

/* Floating Contact Buttons */
.floating-contact-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}
.floating-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}
.floating-whatsapp {
  background-color: #25D366;
}
.floating-call {
  background-color: #007BFF;
}
.floating-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
