/* ==========================================================================
   ADVANCED CYBERPUNK INTERACTIVE FOOTER ENGINE (0% EMPTY SPACE OVERHAUL)
   ========================================================================== */
:root {
  --cyber-bg: #040811;
  --cyber-panel: rgba(10, 22, 44, 0.4);
  --neon-gold: #d4af37;
  --neon-cyan: #00b7ff;
  --neon-blue: #0c66ed;
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
}

/* --- GLOBAL HIGH-LEVEL IMMOVABLE VIEWPORT BACKGROUND ENGINE --- */
body {
  background-image: linear-gradient(rgba(220, 222, 221, 0.7), rgba(220, 222, 221, 0.7)), 
                    url('pics/1.jpeg') !important;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important; /* Forces the image to remain perfectly static in the viewport */
}

.footer {
  background-color: var(--cyber-bg) !important;
  /* Multi-layered futuristic background engine with enhanced visibility */
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(0, 183, 255, 0.2) 0%, transparent 60%),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px) !important;
  background-size: 100% 100%, 30px 30px, 30px 30px !important;
  position: relative;
  width: 100%;
  
  /* REMOVED EXTRA HEIGHT TOP PACKING SPACE Completely */
  padding: 0 0 0 0 !important; 
  
  overflow: hidden;
  clear: both;
  animation: backgroundMatrixScroll 20s linear infinite !important;
}

@keyframes backgroundMatrixScroll {
  0% { background-position: 0% 0%, 0px 0px, 0px 0px; }
  100% { background-position: 0% 0%, 0px 60px, 60px 0px; }
}

/* --- Animated Dual-Tone Neon Laser Top Splitter --- */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-gold), var(--neon-cyan), var(--neon-gold), transparent);
  background-size: 200% 100%;
  animation: neonLaserFlow 4s linear infinite;
  z-index: 5;
}

@keyframes neonLaserFlow {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.footer-grid {
  max-width: 1800px;
  margin: auto;
  padding: 50px 24px 50px 24px !important; /* Balanced interior layout layout bounds grid padding */
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 30px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

/* --- Premium Cyber-Panel Interface Module Cards --- */
.footer-col {
  display: flex;
  flex-direction: column;
  background: var(--cyber-panel);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 80px 25px;
  border-radius: 16px;
  border: 1px solid rgba(0, 183, 255, 0.05);
  box-shadow: 
    inset 0 0 20px rgba(0, 183, 255, 0.02),
    0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.footer-col::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(0, 183, 255, 0.1), transparent 40%, transparent 60%, rgba(212, 175, 55, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.footer-col:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 183, 255, 0.25);
  box-shadow: 
    inset 0 0 25px rgba(0, 183, 255, 0.05),
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(12, 102, 237, 0.1);
}

.footer-col:hover::after {
  opacity: 1;
}

/* --- Brand Identity Assets --- */
.footer-logo {
  width: 165px;
  height: auto;
  margin-top: 0 !important;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 12px rgba(12, 102, 237, 0.3));
  transition: transform 0.5s ease;
}

.footer-col:hover .footer-logo {
  transform: scale(1.04) rotate(2deg);
}

.footer-company-name {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, var(--neon-gold) 50%, #b89114 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.footer-company-text {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.75;
  max-width: 320px;
}

/* --- Liquid Neon Heading Rules --- */
.footer-col h3 {
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  width: fit-content;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-gold), var(--neon-cyan));
  box-shadow: 0 0 8px var(--neon-cyan);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-col:hover h3::after {
  width: 55px;
}

/* --- UI-VERSE STYLE GLOWING INTERACTIVE LINKS --- */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-col ul li a::before {
  content: ']';
  color: var(--neon-cyan);
  font-family: monospace;
  font-size: 14px;
  margin-right: 0;
  width: 0;
  opacity: 0;
  transform: scaleY(0);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-col ul li a:hover {
  color: var(--text-primary);
  transform: translateX(6px);
  text-shadow: 0 0 10px rgba(0, 183, 255, 0.4);
}

.footer-col ul li a:hover::before {
  width: 14px;
  opacity: 1;
  margin-right: 6px;
  transform: scaleY(1);
}

/* --- Dynamic Specification Hardware Lists --- */
.product-list li {
  color: var(--text-secondary);
  font-size: 14.5px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.product-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--neon-gold);
  border-radius: 50%;
  margin-right: 1px;
  box-shadow: 0 0 8px var(--neon-gold);
  transition: background-color 0.3s, box-shadow 0.3s;
}

.footer-col:hover .product-list li {
  color: var(--text-primary);
}

.footer-col:hover .product-list li::before {
  background-color: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
}

/* --- Contact Info Layout Rows --- */
.contact-info p {
  color: var(--text-secondary);
  font-size: 14.5px;
  margin-bottom: 16px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s ease;
}

.contact-info p i {
  color: var(--neon-gold);
  width: 20px;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-info p:hover {
  color: var(--text-primary);
}

.contact-info p:hover i {
  color: var(--neon-cyan);
  transform: scale(1.3);
  text-shadow: 0 0 10px var(--neon-cyan);
}

/* ==========================================================================
   FOOTER BOTTOM FRAME BAR (COMPACT OVERHAUL)
   ========================================================================== */
.footer-bottom {
  background: #020408 !important;
  border-top: 1px solid rgba(0, 183, 255, 0.08) !important;
  
  /* REMOVED EXTRA BOTTOM SPACE ENTIRELY */
  padding: 14px 20px !important; 
  
  text-align: center;
  position: relative;
  z-index: 3;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 13px !important;
  letter-spacing: 0.8px;
}

.footer-bottom .brand-highlight {
  color: var(--neon-gold);
  font-weight: 600;
  transition: text-shadow 0.3s ease;
}

.footer-bottom p:hover .brand-highlight {
  text-shadow: 0 0 8px var(--neon-gold);
}

.footer-bottom p strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ==========================================================================
   DYNAMIC RESPONSIVE RECONSTRUCTION BREAKPOINTS
   ========================================================================== */
@media screen and (max-width: 1120px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding-top: 0px !important;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px !important;
    padding: 30px 20px 35px 20px !important;
    text-align: left !important;
  }

  .footer-col {
    width: 100%;
    text-align: left !important;
    align-items: flex-start !important;
    padding: 26px 20px;
  }

  .footer-logo {
    width: 120px !important;
    margin: 0 0 12px 0 !important;
    display: block;
  }
}