/* ==========================================================================
   ALEXPRESS TOWING SERVICE - FUTURISTIC 3D STYLING SYSTEM
   Primary Neon: #76FF03 / #39FF14 | Theme: Carbon Obsidian & Cyberpunk 3D
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;800;900&family=Rajdhani:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary-neon: #76FF03;
  --primary-glow: rgba(118, 255, 3, 0.5);
  --primary-glow-strong: rgba(118, 255, 3, 0.8);
  --cyber-green: #39FF14;
  --dark-bg: #07090E;
  --dark-card: rgba(13, 18, 28, 0.75);
  --dark-card-solid: #0d121c;
  --glass-border: rgba(118, 255, 3, 0.25);
  --glass-border-hover: rgba(118, 255, 3, 0.7);
  --text-white: #FFFFFF;
  --text-muted: #94A3B8;
  --text-light: #CBD5E1;
  --font-heading: 'Orbitron', sans-serif;
  --font-sub: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-height: 80px;
  --radius-lg: 16px;
  --radius-sm: 8px;
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--dark-bg);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(118, 255, 3, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(57, 255, 20, 0.04) 0%, transparent 40%),
    linear-gradient(180deg, #07090E 0%, #030407 100%);
  background-attachment: fixed;
  padding-bottom: 75px; /* space for mobile sticky footer */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

ul {
  list-style: none;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Custom Cyber Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
  border: 1px solid var(--glass-border);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-neon);
  box-shadow: 0 0 10px var(--primary-neon);
}

/* Typography Utilities */
.font-orbitron { font-family: var(--font-heading); }
.font-rajdhani { font-family: var(--font-sub); }
.text-neon {
  color: var(--primary-neon);
  text-shadow: 0 0 12px rgba(118, 255, 3, 0.4);
}
.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 30%, var(--primary-neon) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Futuristic 3D Container & Canvas Wrapper */
#canvas-3d-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.65;
}

.content-wrapper {
  position: relative;
  z-index: 1;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Sticky Header & Navbar */
.cyber-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.cyber-header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(118, 255, 3, 0.15);
  border-bottom-color: var(--primary-neon);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(118, 255, 3, 0.4));
  transition: transform 0.3s ease;
}

.brand-logo:hover img {
  transform: scale(1.05) rotate(-2deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: 1px;
  line-height: 1.1;
}

.brand-title span {
  color: var(--primary-neon);
}

.brand-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  font-family: var(--font-sub);
  text-transform: uppercase;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-sub);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 6px 0;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-neon);
  box-shadow: 0 0 8px var(--primary-neon);
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-neon);
}

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

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Selector Pill */
.lang-switch {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 3px;
}

.lang-btn {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 5px 12px;
  border-radius: 20px;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.lang-btn.active {
  background: var(--primary-neon);
  color: #000;
  box-shadow: 0 0 10px var(--primary-glow);
}

/* Cyber CTA Button */
.btn-cyber {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary-neon) 0%, var(--cyber-green) 100%);
  color: #05070B;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 0 20px var(--primary-glow);
  transition: var(--transition-smooth);
  z-index: 1;
}

.btn-cyber::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.btn-cyber:hover::before {
  left: 100%;
}

.btn-cyber:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 30px var(--primary-glow-strong);
  color: #000;
}

.btn-cyber-outline {
  background: rgba(118, 255, 3, 0.06);
  color: var(--primary-neon);
  border: 1px solid var(--primary-neon);
  box-shadow: 0 0 15px rgba(118, 255, 3, 0.15);
}

.btn-cyber-outline:hover {
  background: var(--primary-neon);
  color: #05070B;
  box-shadow: 0 0 25px var(--primary-glow);
}

.mobile-toggle {
  display: none;
  background: rgba(118, 255, 3, 0.08);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--primary-neon);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.mobile-toggle:hover, .mobile-toggle:active {
  background: var(--primary-neon);
  color: #000;
  box-shadow: 0 0 15px var(--primary-neon);
}

/* Mobile Drawer Navigation */
.mobile-drawer {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--nav-height));
  background: rgba(7, 9, 14, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  gap: 20px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  border-top: 1px solid var(--glass-border);
}

.mobile-drawer.active {
  transform: translateX(0);
}

.mobile-drawer .nav-link {
  font-size: 1.3rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(118, 255, 3, 0.1);
  border: 1px solid var(--primary-neon);
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--primary-neon);
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(118, 255, 3, 0.2);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-neon);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-neon);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(118, 255, 3, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(118, 255, 3, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(118, 255, 3, 0); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  max-width: 540px;
}

.hero-ctas, .cta-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 35px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-neon);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-sub);
  text-transform: uppercase;
}

/* 3D Hero Card Showcase */
.hero-visual {
  position: relative;
  perspective: 1000px;
}

.hero-3d-card {
  position: relative;
  background: var(--dark-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.7), inset 0 0 20px rgba(118, 255, 3, 0.05);
  transform-style: preserve-3d;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-3d-card:hover {
  border-color: var(--primary-neon);
  box-shadow: 0 25px 60px rgba(0,0,0,0.8), 0 0 30px rgba(118, 255, 3, 0.3);
}

.hero-img-box {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-img-box img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-3d-card:hover .hero-img-box img {
  transform: scale(1.05);
}

.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(118, 255, 3, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 0 25px var(--primary-neon);
  transition: var(--transition-smooth);
}

.video-play-overlay:hover {
  transform: translate(-50%, -50%) scale(1.15);
}

/* Quick Dispatch Form Box */
.dispatch-box {
  background: rgba(20, 26, 38, 0.85);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.dispatch-header {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quick-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.cyber-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-smooth);
}

.cyber-input:focus {
  border-color: var(--primary-neon);
  box-shadow: 0 0 10px rgba(118, 255, 3, 0.3);
}

select.cyber-input option {
  background: #0d121c;
  color: #fff;
}

/* Section Header Component */
.section-padding {
  padding: 90px 0;
  position: relative;
}

.section-title-wrap {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px auto;
}

.section-tag {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-neon);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Services 3D Card Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
}

.service-3d-card {
  background: var(--dark-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
  perspective: 1000px;
}

.service-3d-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  border-color: var(--primary-neon);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(118, 255, 3, 0.3);
}

.service-card-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-3d-card:hover .service-card-img img {
  transform: scale(1.1);
}

.service-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(7, 9, 14, 0.85);
  border: 1px solid var(--primary-neon);
  color: var(--primary-neon);
  padding: 4px 12px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
}

.service-card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.link-cyber {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-neon);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.link-cyber:hover {
  gap: 12px;
  text-shadow: 0 0 10px var(--primary-neon);
}

/* Feature Grid / Why Choose Us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-box {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-neon);
  opacity: 0.3;
  transition: var(--transition-smooth);
}

.feature-box:hover::before {
  opacity: 1;
  box-shadow: 0 0 12px var(--primary-neon);
}

.feature-box:hover {
  border-color: var(--primary-neon);
  transform: translateY(-5px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(118, 255, 3, 0.1);
  border: 1px solid var(--primary-neon);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-neon);
  font-size: 1.6rem;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(118, 255, 3, 0.2);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-white);
  margin-bottom: 10px;
}

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

/* Junk Car Cash Calculator Banner */
.junk-cash-section {
  background: linear-gradient(135deg, rgba(13, 18, 28, 0.95) 0%, rgba(7, 9, 14, 0.98) 100%);
  border: 2px solid var(--primary-neon);
  border-radius: var(--radius-lg);
  padding: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(118, 255, 3, 0.2);
}

.junk-cash-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.junk-cash-content h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text-white);
  margin-bottom: 16px;
}

.junk-cash-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.junk-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

.junk-bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sub);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-white);
}

.junk-bullet-item i {
  color: var(--primary-neon);
}

/* Video Showcase Modal & Section */
.video-showcase-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.video-showcase-box video {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

/* Testimonials Carousel / Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: var(--primary-neon);
  font-size: 1.1rem;
  margin-bottom: 14px;
  display: flex;
  gap: 4px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 20px;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-neon);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-white);
}

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

/* FAQ Accordion */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question i {
  color: var(--primary-neon);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px 24px;
}

/* Footer Styling */
.cyber-footer {
  background: #030407;
  border-top: 1px solid var(--glass-border);
  padding: 70px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-about p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 16px 0 24px 0;
}

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

.social-btn {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background: var(--primary-neon);
  color: #000;
  border-color: var(--primary-neon);
  box-shadow: 0 0 15px var(--primary-neon);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-neon);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--primary-neon);
  padding-left: 5px;
}

.contact-info-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-info-list i {
  color: var(--primary-neon);
  font-size: 1.1rem;
  margin-top: 2px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Floating WhatsApp Neon Widget */
.floating-whatsapp {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
  z-index: 999;
  transition: var(--transition-smooth);
  animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

/* STICKY FOOTER CTA BAR (CRITICAL REQUIREMENT FOR MOBILE) */
.mobile-sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: rgba(7, 9, 14, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 2px solid var(--primary-neon);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 12px;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.8), 0 0 20px rgba(118, 255, 3, 0.2);
}

.sticky-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
  max-width: 48%;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  transition: var(--transition-smooth);
}

.sticky-btn-call {
  background: linear-gradient(135deg, var(--primary-neon) 0%, var(--cyber-green) 100%);
  color: #05070B;
  box-shadow: 0 0 15px var(--primary-glow);
}

.sticky-btn-wa {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

@media (min-width: 992px) {
  .mobile-sticky-footer {
    display: none; /* Desktop uses header CTA and inline CTAs */
  }
  .floating-whatsapp {
    bottom: 30px;
  }
}

/* Modal Popup for Dispatch & Video - Responsive */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 16px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--dark-card-solid);
  border: 1px solid var(--primary-neon);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 0 40px var(--primary-glow);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.modal-card video {
  width: 100%;
  height: auto;
  max-height: 65vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: #000;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--glass-border);
  color: var(--primary-neon);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background: var(--primary-neon);
  color: #000;
  box-shadow: 0 0 15px var(--primary-neon);
}

@media (max-width: 576px) {
  .modal-card {
    padding: 16px 14px 18px 14px;
    border-radius: 12px;
    max-height: 85vh;
  }
  .modal-card video {
    max-height: 55vh;
  }
  .modal-close {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }
}

/* Responsive Grid Utilities */
.responsive-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

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

.responsive-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.responsive-subgallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* Comprehensive Breakpoint Rules */
@media (max-width: 991px) {
  body {
    padding-bottom: 85px; /* Ensures footer content is never clipped by sticky mobile CTA */
  }

  .nav-menu, .header-actions .btn-cyber {
    display: none !important;
  }
  
  .mobile-toggle {
    display: flex !important;
  }

  .section-padding {
    padding: 60px 0;
  }

  .hero-section {
    padding-top: calc(var(--nav-height) + 20px);
    padding-bottom: 50px;
    min-height: auto;
  }

  .hero-grid, .junk-cash-grid, .responsive-grid-2, .responsive-gallery {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .hero-stats {
    gap: 12px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .hero-ctas, .cta-btn-group {
    margin-bottom: 35px;
  }

  .service-3d-card, .hero-3d-card {
    margin-top: 15px;
  }

  .junk-cash-section {
    padding: 30px 24px;
  }
}

@media (max-width: 768px) {
  .responsive-grid-3 {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-heading {
    font-size: 2rem;
  }

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

@media (max-width: 576px) {
  .cyber-header {
    height: 70px;
  }

  .brand-logo img {
    height: 40px;
  }

  .brand-title {
    font-size: 0.95rem;
  }

  .brand-sub {
    font-size: 0.6rem;
    letter-spacing: 1px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .section-heading {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .quick-inputs {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .responsive-grid-3 {
    grid-template-columns: 1fr;
  }

  .responsive-subgallery {
    grid-template-columns: 1fr;
  }

  .junk-bullets {
    grid-template-columns: 1fr;
  }

  .junk-cash-content h2 {
    font-size: 1.6rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .modal-card {
    padding: 16px 14px 18px 14px;
    border-radius: 12px;
    max-height: 85vh;
  }

  .modal-card video {
    max-height: 55vh;
  }

  .modal-close {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }

  .sticky-cta-btn {
    font-size: 0.78rem;
    padding: 6px 8px;
  }
}

@media (max-width: 380px) {
  .brand-text {
    display: none; /* Hide subtitle text on ultra-small screens to preserve clean header */
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn-cyber {
    width: 100%;
  }
}
