/* LONG BEACH COLB ELECTRONICS - Modern Tech Neon Theme */

:root {
  --primary: #0A1628;
  --primary-light: #112240;
  --secondary: #00D4FF;
  --accent: #00FF88;
  --dark: #050D18;
  --darker: #030810;
  --light: #E6F1FF;
  --text: #B0C4DE;
  --text-muted: #6A7B94;
  --glass: rgba(5, 13, 24, 0.95);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 10px 40px rgba(0,0,0,0.5);
  --glow: 0 0 20px rgba(0, 212, 255, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Rajdhani', 'Segoe UI', sans-serif;
  background: var(--darker);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

.page-wrapper {
  opacity: 0;
  transform: translateY(20px);
  animation: pageEnter 0.6s ease forwards;
}

@keyframes pageEnter {
  to { opacity: 1; transform: translateY(0); }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(3, 8, 16, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  transition: var(--transition);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.logo img { height: 50px; width: auto; }

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--light);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
  font-weight: 600;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
  box-shadow: var(--glow);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 28px;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
  box-shadow: var(--glow);
}

/* Hero */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(3,8,16,0.3) 0%, rgba(3,8,16,0.8) 60%, var(--darker) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
  animation: heroFadeIn 1.2s ease forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 600;
  box-shadow: var(--glow);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--light);
}

.hero h1 span {
  color: var(--secondary);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-weight: 700;
}

.btn-primary {
  background: var(--secondary);
  color: var(--dark);
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.btn-outline {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--secondary);
  color: var(--dark);
  box-shadow: var(--glow);
}

/* Sections */
.section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  color: var(--secondary);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--light);
  margin-bottom: 1rem;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(5, 13, 24, 0.6);
  border: 1px solid rgba(0, 212, 255, 0.1);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
  box-shadow: var(--glow);
}

.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow), var(--glow);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--light);
  font-weight: 700;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Split Section */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.split-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.split-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition);
}

.split-image:hover img { transform: scale(1.05); }

.split-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 1.5rem;
}

.split-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* Product Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: rgba(5, 13, 24, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.1);
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), var(--glow);
}

.product-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--secondary);
  color: var(--dark);
  padding: 0.3rem 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-size: 1.2rem;
  color: var(--light);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.product-info .product-type {
  color: var(--secondary);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 4rem auto;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(5, 13, 24, 0.4);
  border: 1px solid rgba(0, 212, 255, 0.1);
}

.stat-number {
  font-size: 2.8rem;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0.5rem;
  font-weight: 600;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
  border-radius: 4px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 16, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay h4 {
  color: var(--secondary);
  font-size: 1.1rem;
  font-weight: 700;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 1.5rem;
}

.contact-details { margin-top: 2rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item div strong {
  color: var(--light);
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.contact-item div span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  background: rgba(5, 13, 24, 0.6);
  border: 1px solid rgba(0, 212, 255, 0.15);
  color: var(--text);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: var(--glow);
}

/* Footer */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-brand img { height: 50px; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; }

.footer-col h4 {
  color: var(--light);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}
.footer-col ul li a:hover { color: var(--secondary); text-shadow: 0 0 10px rgba(0, 212, 255, 0.3); }

.footer-bottom {
  max-width: 1400px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }

.social-links { display: flex; gap: 1rem; }
.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.8rem;
}
.social-links a:hover {
  background: var(--secondary);
  color: var(--dark);
  border-color: var(--secondary);
  box-shadow: var(--glow);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* Page Header */
.page-header {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 16, 0.8);
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-header-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--light);
  margin-bottom: 1rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.breadcrumb a:hover { color: var(--secondary); }

/* Timeline */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(0, 212, 255, 0.2);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-item:nth-child(even) .timeline-content { grid-column: 2; }
.timeline-item:nth-child(even) .timeline-image { grid-column: 1; grid-row: 1; }

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--secondary);
  border: 3px solid var(--darker);
  border-radius: 50%;
  z-index: 2;
  box-shadow: var(--glow);
}

.timeline-content h3 {
  font-size: 1.3rem;
  color: var(--light);
  margin-bottom: 1rem;
  font-weight: 700;
}

.timeline-content p { color: var(--text-muted); font-size: 0.95rem; }

.timeline-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
}

/* Transition Overlay */
.transition-overlay {
  position: fixed;
  inset: 0;
  background: var(--darker);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.transition-overlay.active { opacity: 1; }

/* Responsive */
@media (max-width: 1024px) {
  .split-section, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { left: 20px; }
  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 50px;
  }
  .timeline-item:nth-child(even) .timeline-content,
  .timeline-item:nth-child(even) .timeline-image { grid-column: 1; grid-row: auto; }
  .timeline-dot { left: 20px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--glass);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: var(--transition);
  }
  .nav-links.active { transform: translateY(0); }
  .mobile-toggle { display: flex; }
  .features-grid, .product-grid, .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
