/* ========== NAVIGATION (CONTINUED) ========== */
/*
================================================================
|          WEBSETGLOB - QUANTUM WEB SOLUTIONS                  |
|                   COMPLETE STYLESHEET                        |
================================================================
*/

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

:root {
  --font-primary: 'Orbitron', sans-serif;
  --font-secondary: 'Rajdhani', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --color-primary-blue: #00bfff;
  --color-accent-cyan: #00ffff;
  --color-background-dark: #010104;
  --color-text-light: #ffffff;
  --color-text-medium: #a0b3c5;
  --color-status-online: #00ff80;
}

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

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  height: 100%;
  /* Optimize touch scrolling for mobile */
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--color-background-dark);
  color: var(--color-text-light);
  font-family: var(--font-secondary);
  overflow-x: hidden;
  overflow-y: auto;
  cursor: auto;
  min-height: 100vh;
  width: 100%;
  position: relative;
  /* Optimize touch scrolling for mobile */
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-background-dark);
}
::-webkit-scrollbar-thumb {
  background-color: var(--color-primary-blue);
  border-radius: 10px;
}

/* ========== QUANTUM LOADER ========== */
.quantum-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background-color: var(--color-background-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loader-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(var(--color-primary-blue) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-primary-blue) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.05;
  animation: panGrid 10s linear infinite;
}

.loader-core {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-core .core-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 50%;
  border-top-color: var(--color-primary-blue);
  animation: spin 3s linear infinite;
}

.loader-core .core-ring:nth-child(2) {
  border-top-color: var(--color-accent-cyan);
  animation-delay: -0.5s;
  animation-duration: 2.5s;
}

.loader-core .core-ring:nth-child(3) {
  border-top-color: var(--color-text-light);
  animation-delay: -1s;
  animation-duration: 2s;
}

.loader-text-container {
  margin-top: 30px;
  text-align: center;
}

.loader-text {
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-medium);
}

.loader-progress-bar {
  width: 250px;
  height: 3px;
  background-color: rgba(0, 191, 255, 0.1);
  margin-top: 15px;
  border-radius: 3px;
}

.loader-progress-fill {
  width: 0%;
  height: 100%;
  background-color: var(--color-primary-blue);
  animation: loading 2s ease-out forwards;
}

/* ========== 3D CANVAS & OVERLAYS ========== */
#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}

.hud-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.hud-corner {
  position: absolute;
  width: 50px;
  height: 50px;
}

.hud-corner::before, .hud-corner::after {
  content: '';
  position: absolute;
  background-color: var(--color-primary-blue);
  opacity: 0.5;
}

.hud-corner.top-left {
  top: 20px;
  left: 20px;
}
.hud-corner.top-left::before {
  width: 30px;
  height: 2px;
  top: 0;
  left: 0;
}
.hud-corner.top-left::after {
  width: 2px;
  height: 30px;
  top: 0;
  left: 0;
}

.hud-corner.top-right {
  top: 20px;
  right: 20px;
}
.hud-corner.top-right::before {
  width: 30px;
  height: 2px;
  top: 0;
  right: 0;
}
.hud-corner.top-right::after {
  width: 2px;
  height: 30px;
  top: 0;
  right: 0;
}

.hud-corner.bottom-left {
  bottom: 20px;
  left: 20px;
}
.hud-corner.bottom-left::before {
  width: 30px;
  height: 2px;
  bottom: 0;
  left: 0;
}
.hud-corner.bottom-left::after {
  width: 2px;
  height: 30px;
  bottom: 0;
  left: 0;
}

.hud-corner.bottom-right {
  bottom: 20px;
  right: 20px;
}
.hud-corner.bottom-right::before {
  width: 30px;
  height: 2px;
  bottom: 0;
  right: 0;
}
.hud-corner.bottom-right::after {
  width: 2px;
  height: 30px;
  bottom: 0;
  right: 0;
}

.hud-scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 191, 255, 0),
    rgba(0, 191, 255, 0.05) 50%,
    rgba(0, 191, 255, 0)
  );
  background-size: 100% 4px;
  animation: scan 10s linear infinite;
  opacity: 0.4;
}

.custom-cursor {
  position: fixed;
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-primary-blue);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
  z-index: 10000;
  display: none; /* Cursor animation disabled */
}

.custom-cursor::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: var(--color-primary-blue);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ========== MAIN CONTENT ========== */
.content-wrapper {
  z-index: 1;
  position: relative;
}

.quantum-section {
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(60px, 10vh, 100px) clamp(20px, 5vw, 5%);
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Ensure last section allows scrolling past */
#contact {
  min-height: 100vh;
  padding-bottom: 80px; /* Reduced space for footer */
  scroll-snap-align: start;
  scroll-snap-stop: normal; /* Allow scrolling past */
}

/* ========== HERO SECTION ========== */
#hero {
  align-items: center;
  justify-content: stretch;
  padding: 100px 50px;
  z-index: 100;
  position: relative;
}

.hero-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  align-items: center;
  gap: 40px;
}

.hero-text-container {
  text-align: left;
  opacity: 1;
  z-index: 101;
  position: relative;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 1), 0 0 15px rgba(0, 0, 0, 0.8);
  z-index: 102;
  position: relative;
}

.hero-title .title-word {
  display: block;
  opacity: 1;
  transform: translateY(0);
  z-index: 103;
  position: relative;
}

.hero-subtitle {
  font-family: var(--font-secondary);
  font-size: clamp(0.8rem, 2.5vw, 1.2rem);
  font-weight: 400;
  color: #ffffff;
  margin-top: 20px;
  max-width: 450px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1), 0 0 8px rgba(0, 0, 0, 0.8);
  z-index: 102;
  position: relative;
}

.book-meeting-btn {
  margin-top: 30px;
  z-index: 102;
  position: relative;
}

.hero-features-container {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
}

.feature-panel {
  max-width: 400px;
  width: 100%;
  border: 1px solid rgba(0, 191, 255, 0.2);
  background: rgba(0, 10, 20, 0.5);
  backdrop-filter: blur(5px);
  padding: 15px;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 191, 255, 0.2);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.panel-header, .feature-item {
  font-family: var(--font-mono);
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 191, 255, 0.1);
}

.feature-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.feature-icon {
  font-size: 1.5rem;
  margin-right: 12px;
  color: var(--color-primary-blue);
  min-width: 30px;
  text-align: center;
}

.feature-text strong {
  color: var(--color-text-light);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 2px;
}

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

.panel-status.status-online {
  color: var(--color-status-online);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  color: var(--color-text-medium);
  animation: pulseText 2s infinite ease-in-out;
  text-align: center;
}

.indicator-arrow {
  margin-top: 5px;
  font-size: 1.5rem;
  color: var(--color-primary-blue);
}

/* ========== GENERIC SECTIONS ========== */
.section-container {
  max-width: 1100px;
  width: 100%;
  text-align: center;
  padding: 0 clamp(15px, 3vw, 20px); /* Responsive horizontal padding */
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: clamp(50px, 8vh, 100px); /* Responsive margin - scales with viewport height */
  margin-top: clamp(20px, 4vh, 40px); /* Responsive top margin */
  padding-bottom: clamp(10px, 2vh, 20px); /* Responsive padding */
  color: #ffffff !important;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.7);
  opacity: 1 !important;
  z-index: 10;
  position: relative;
  display: block;
  width: 100%;
}

.section-intro {
  font-size: 1.1rem;
  color: #ffffff !important;
  max-width: 700px;
  margin: 0 auto 60px auto;
  line-height: 1.7;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 1), 0 0 15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.7);
  opacity: 1 !important;
  z-index: 100;
  position: relative;
}

/* Extra spacing for contact section intro to prevent overlap with form */
#contact .section-intro {
  margin-bottom: 80px;
}

/* ========== PRICING SECTION ========== */
.pricing-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ========== SERVICES SECTION ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem); /* Responsive gap */
  justify-items: center;
  margin-top: 0; /* Remove top margin since section-title has bottom margin */
  padding-top: clamp(20px, 4vh, 40px); /* Responsive top padding */
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(15px, 3vw, 20px);
  padding-right: clamp(15px, 3vw, 20px);
  padding-bottom: clamp(15px, 2vh, 20px);
  position: relative;
  z-index: 1;
}

.service-card {
  position: relative;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(0, 191, 255, 0.6);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  overflow-y: auto;
  overflow-x: hidden;
  /* Custom scrollbar for service cards */
  /* GPU acceleration for better mobile performance */
  transform: translateZ(0);
  will-change: transform, opacity;
  z-index: 1;
  margin-top: 0; /* Ensure no negative margin */
}

/* Mobile performance optimizations - keep visual appearance same */
@media (max-width: 768px) {
  /* Keep all visual effects - just optimize rendering */
  .service-card {
    /* backdrop-filter and all effects remain */
    /* Only ensure smooth rendering */
    transform: translateZ(0);
  }
  
  /* Keep hover effects for visual consistency */
  /* .service-card:hover - kept */
  
  /* Optimize will-change for better performance without changing appearance */
  .section-title,
  .section-intro {
    will-change: transform, opacity;
  }
}

.service-card::-webkit-scrollbar {
  width: 4px;
}

.service-card::-webkit-scrollbar-track {
  background: rgba(0, 191, 255, 0.1);
  border-radius: 2px;
}

.service-card::-webkit-scrollbar-thumb {
  background: rgba(0, 191, 255, 0.4);
  border-radius: 2px;
}

.service-card::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 191, 255, 0.6);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 25px rgba(0, 191, 255, 0.6);
  border-color: rgba(0, 191, 255, 0.9);
}

.service-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.service-description {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.4;
  margin: 0 0 15px 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  text-align: left;
  flex-grow: 1;
  overflow-y: auto;
  min-height: 0;
}

.service-features li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #ffffff;
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  line-height: 1.3;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.service-features li .checkmark {
  color: var(--color-primary-blue);
  font-weight: bold;
  margin-right: 12px;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-core-focus {
  margin: 15px 0 10px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary-blue);
  text-shadow: 0 0 8px rgba(0, 191, 255, 0.5);
}

.pricing-card {
  position: relative;
  background: #ffffff;
  border-radius: 25px;
  padding: 20px 20px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.10);
  flex: 1;
  min-width: 320px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured-card {
  z-index: 5;
}

.card-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  font-size: 2.5rem;
  z-index: 10;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.plan-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  color: #101E57;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.plan-description {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #333333;
  line-height: 1.4;
  margin: 0 0 15px 0;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
  text-align: left;
  flex-grow: 1;
}

.plan-features li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #333333;
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  line-height: 1.3;
}

.plan-features li .checkmark {
  color: #101E57;
  font-weight: bold;
  margin-right: 12px;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: auto;
  padding-top: 10px;
}

.price-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #666666;
  text-align: center;
}

.price-button {
  background: linear-gradient(135deg, #5A6FF8 0%, #A146FF 100%);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 15px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-button:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(90, 111, 248, 0.4);
}

.examples-box {
  margin-top: auto;
  padding-top: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #ffffff;
  line-height: 1.5;
  border-top: 1px solid rgba(0, 191, 255, 0.3);
}

.examples-box strong {
  color: var(--color-primary-blue);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  text-shadow: 0 0 8px rgba(0, 191, 255, 0.5);
}


/* ========== CONTACT SECTION ========== */
.contact-form-container {
  max-width: 600px;
  margin: 40px auto 0 auto;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(0, 191, 255, 0.6);
  padding: 40px;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 10;
}

.form-field {
  position: relative;
  margin-bottom: 40px;
}

.form-field input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-text-medium);
  padding: 10px 0;
  font-size: 1.1rem;
  color: var(--color-text-light);
  outline: none;
}

.form-field label {
  position: absolute;
  top: 10px;
  left: 0;
  color: var(--color-text-medium);
  pointer-events: none;
  transition: all 0.3s ease;
  font-family: var(--font-mono);
}

.form-field input:focus + label, 
.form-field input:valid + label {
  top: -15px;
  font-size: 0.8rem;
  color: var(--color-primary-blue);
}

.form-field .field-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary-blue);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.form-field input:focus ~ .field-line {
  transform: scaleX(1);
}

.quantum-button {
  display: inline-block;
  padding: clamp(0.8rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--color-primary-blue);
  background: transparent;
  color: var(--color-primary-blue);
  font-family: var(--font-primary);
  font-size: clamp(0.7rem, 1.8vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.quantum-button:hover {
  color: var(--color-background-dark);
  background-color: var(--color-primary-blue);
}

.btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: translateX(-100%);
}

.form-success-message {
  display: none;
  text-align: center;
}

.form-success-message h3 {
  color: var(--color-status-online);
  font-family: var(--font-primary);
  margin-bottom: 10px;
}

.form-success-message p {
  color: var(--color-text-medium);
} .quantum-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(1, 1, 4, 0.5);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 191, 255, 0.2);
  font-family: var(--font-secondary);
  animation: navFadeIn 1s 1s ease-out forwards;
  opacity: 0;
}

.nav-logo .logo-main {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: var(--color-text-light);
}

.nav-logo .logo-sub {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  color: var(--color-text-medium);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--color-text-medium);
  text-decoration: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  transition: color 0.3s ease;
  cursor: pointer;
  pointer-events: auto;
  z-index: 1001;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary-blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-text-light);
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  color: var(--color-text-medium);
}

.status-indicator {
  width: 10px;
  height: 10px;
  background-color: var(--color-status-online);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-status-online);
  animation: pulseIndicator 2s infinite;
}

.live-visitors {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(0, 191, 255, 0.1);
  border: 1px solid rgba(0, 191, 255, 0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  margin-left: 10px;
}

.visitor-icon {
  font-size: 0.9rem;
  animation: pulseVisitor 2s infinite;
}

.visitor-count {
  font-weight: 700;
  color: var(--color-accent-cyan);
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
  min-width: 20px;
  text-align: center;
}

.visitor-label {
  font-size: 0.65rem;
  color: var(--color-text-medium);
  letter-spacing: 1px;
}

@keyframes pulseVisitor {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

/* ========== MEETING BOOKING MODAL ========== */
.meeting-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.meeting-modal.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.meeting-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 1, 4, 0.9);
  backdrop-filter: blur(10px);
}

.meeting-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  background: rgba(0, 10, 20, 0.98);
  border: 1px solid rgba(0, 191, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  font-family: var(--font-secondary);
}

.meeting-modal.active .meeting-modal-content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.meeting-header {
  position: relative;
  padding: 25px 20px;
  border-bottom: 1px solid rgba(0, 191, 255, 0.2);
  text-align: center;
  background: rgba(0, 191, 255, 0.03);
}

.meeting-logo {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary-blue);
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.meeting-title {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  color: var(--color-text-light);
  margin: 0;
  letter-spacing: 1px;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: var(--color-text-medium);
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-modal:hover {
  color: var(--color-primary-blue);
  transform: rotate(90deg);
}

.meeting-body {
  padding: 30px 20px;
}

/* ========== CALENDLY LOADING STATE ========== */
.calendly-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  gap: 20px;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(0, 191, 255, 0.2);
  border-top-color: var(--color-primary-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.calendly-loading p {
  color: var(--color-text-medium);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* ========== CALENDLY EMBED ========== */
.calendly-embed-container {
  display: none;
  opacity: 0;
  border-radius: 8px;
  overflow: hidden;
}

.calendly-inline-widget {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 191, 255, 0.1);
}

/* ========== BOOKING SUCCESS MESSAGE ========== */
.booking-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 50px 30px;
  gap: 25px;
}

.success-icon {
  width: 90px;
  height: 90px;
  background: var(--color-primary-blue);
  color: var(--color-background-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  font-weight: bold;
  box-shadow: 0 0 40px rgba(0, 191, 255, 0.6);
  animation: successPulse 1.5s ease-in-out infinite;
}

.booking-success h3 {
  font-family: var(--font-primary);
  font-size: 2rem;
  color: var(--color-text-light);
  margin: 0;
  letter-spacing: 1px;
}

.booking-success p {
  color: var(--color-text-medium);
  font-size: 1.1rem;
  max-width: 350px;
  line-height: 1.6;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loading {
  to {
    width: 100%;
  }
}

@keyframes panGrid {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 50px 50px;
  }
}

@keyframes scan {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 100vh;
  }
}

@keyframes pulseText {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes navFadeIn {
  to {
    opacity: 1;
  }
}

@keyframes pulseIndicator {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes successPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 40px rgba(0, 191, 255, 0.6);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(0, 191, 255, 0.9);
  }
}

/* ========== RESPONSIVE DESIGN ========== */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
  }

  .service-card {
    max-width: 100%;
    aspect-ratio: 1 / 1;
  }

  .pricing-grid {
    gap: 24px;
  }

  .pricing-card {
    min-width: 300px;
    max-width: 380px;
  }

  .section-container {
    max-width: 1000px;
  }
}

/* Tablets */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .service-card {
    max-width: 100%;
    aspect-ratio: 1 / 1;
  }
}

/* Tablets */
@media (max-width: 900px) {
  .hero-content-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .hero-text-container {
    text-align: center;
    margin-bottom: 30px;
  }

  .hero-subtitle {
    margin: 20px auto 0 auto;
  }

  .hero-features-container {
    justify-content: center;
    align-items: center;
  }

  .feature-panel {
    margin: 0 auto;
    max-width: 350px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }

  .service-card {
    max-width: 260px;
    aspect-ratio: 1 / 1;
  }

  .pricing-grid {
    gap: 24px;
  }

  .pricing-card {
    min-width: 280px;
    max-width: 350px;
    flex: 0 1 auto;
  }
}

@media (max-width: 768px) {
  body {
    cursor: auto;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    scroll-snap-type: none; /* Disable scroll snap on mobile for better UX */
  }

  .floating-nav-hud {
    display: none !important; /* Hide navigation HUD on mobile */
  }

  .custom-cursor {
    display: none !important;
  }

  .hud-corner {
    width: 30px;
    height: 30px;
  }

  .hud-corner::before {
    width: 20px !important;
  }

  .hud-corner::after {
    height: 20px !important;
  }

  .quantum-section {
    padding: 80px 20px;
  }

  .section-intro {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  /* Extra spacing for contact section intro on mobile */
  #contact .section-intro {
    margin-bottom: 60px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mission-card {
    padding: 30px 20px;
  }

  /* Services Section Tablet */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 15px;
  }

  .service-card {
    max-width: 100%;
    aspect-ratio: 1 / 1;
    padding: 1.2rem;
  }

  /* Canvas Container Mobile */
  #canvas-container {
    height: 80vh;
  }

  /* Pricing Section Mobile */
  .pricing-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 20px;
  }

  .pricing-card {
    min-width: 100%;
    max-width: 100%;
    padding: 18px 16px;
  }

  .quantum-nav {
    padding: 15px 20px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .nav-logo {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .nav-links {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .nav-status {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

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

  .contact-form-container {
    padding: 30px 20px;
  }

  .form-field {
    margin-bottom: 30px;
  }

  .quantum-button {
    padding: 12px 30px;
    font-size: 0.9rem;
  }

  /* Meeting Modal Mobile */
  .meeting-modal-content {
    width: 95%;
    max-height: 85vh;
    padding: 0;
  }

  .meeting-header {
    padding: 20px 15px;
  }

  .meeting-title {
    font-size: 1.3rem;
  }

  .meeting-body {
    padding: 20px 15px;
  }

  .calendly-inline-widget {
    height: 550px !important;
    min-width: 280px !important;
  }

  .booking-success {
    padding: 30px 15px;
  }

  .success-icon {
    width: 70px;
    height: 70px;
    font-size: 2.5rem;
  }

  .booking-success h3 {
    font-size: 1.5rem;
  }

  .booking-success p {
    font-size: 0.95rem;
  }
}

/* Mobile Landscape and Small Tablets */
@media (max-width: 640px) {
  .services-grid,
  .pricing-grid {
    gap: 20px;
  }

  .service-card,
  .pricing-card {
    min-width: 100%;
    max-width: 100%;
    padding: 20px 18px;
  }

  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .service-title,
  .plan-title {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .hero-content-grid {
    padding: 0 10px;
  }

  .quantum-section {
    padding: 60px 15px;
  }

  .section-container {
    padding: 0 10px;
  }

  /* Services Grid - Single Column on Mobile */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 30px;
    padding: 0 10px;
  }
  
  /* Disable heavy animations on mobile for better performance */
  #canvas-container canvas {
    will-change: auto;
    transform: none;
  }
  
  /* Reduce particle count on mobile */
  .ambient-particle {
    display: none;
  }

  .service-card {
    max-width: 90%;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    padding: 1.2rem;
    border-radius: 16px;
  }

  .pricing-grid {
    gap: 18px;
    margin-top: 30px;
  }

  .pricing-card {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .service-title,
  .plan-title {
    font-size: clamp(1.1rem, 5vw, 1.4rem);
    margin-bottom: 6px;
  }

  .service-description,
  .plan-description {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .service-features li,
  .plan-features li {
    font-size: 13px;
    padding: 3px 0;
  }

  .examples-box {
    font-size: 12px;
    padding-top: 10px;
  }

  .section-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-bottom: clamp(40px, 6vh, 80px); /* Responsive margin on mobile */
    padding-bottom: clamp(10px, 1.5vh, 15px); /* Responsive padding on mobile */
  }

  .section-intro {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  .data-panel.earth-info {
    padding: 12px;
  }

  .data-row {
    font-size: 0.8rem;
  }

  .panel-header {
    font-size: 0.75rem;
  }

  .meeting-modal-content {
    border-radius: 5px;
  }

  .calendly-inline-widget {
    height: 500px !important;
  }
}

/* Very Small Mobile */
@media (max-width: 360px) {
  .service-card,
  .pricing-card {
    padding: 16px 14px;
    border-radius: 18px;
  }

  .service-title,
  .plan-title {
    font-size: 1rem;
  }

  .service-description,
  .plan-description {
    font-size: 12px;
  }

  .service-features li,
  .plan-features li {
    font-size: 12px;
  }

  .examples-box {
    font-size: 11px;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .nav-logo .logo-main {
    font-size: 1rem;
  }

  .nav-logo .logo-sub {
    font-size: 0.6rem;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-link {
    font-size: 0.8rem;
    padding: 5px 8px;
  }
}

/* Landscape Orientation */
@media (max-height: 600px) and (orientation: landscape) {
  .quantum-section {
    padding: 40px 20px;
    min-height: auto;
  }

  .hero-content-grid {
    gap: 20px;
  }

  .service-card,
  .pricing-card {
    padding: 16px 18px;
  }
}

/* Large Screens */
@media (min-width: 1400px) {
  .section-container {
    max-width: 1300px;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
  }

  .service-card {
    max-width: 100%;
    aspect-ratio: 1 / 1;
  }

  .pricing-grid {
    gap: 32px;
  }

  .pricing-card {
    max-width: 420px;
  }
}

/* Ultra-wide Screens */
@media (min-width: 1920px) {
  .section-container {
    max-width: 1600px;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1600px;
  }

  .service-card {
    max-width: 100%;
  }

  .pricing-grid {
    gap: 36px;
  }
}

/* ========== PRINT STYLES ========== */
@media print {
  .quantum-nav,
  .hud-overlay,
  .custom-cursor,
  .quantum-loader,
  #canvas-container,
  .meeting-modal {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .quantum-section {
    page-break-inside: avoid;
  }
}

/* ========== ACCESSIBILITY IMPROVEMENTS ========== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  /* Stop Earth rotation animation */
  #canvas-container,
  #canvas-container canvas {
    animation: none !important;
    will-change: auto !important;
  }
  
  /* Disable ambient particle animations */
  .ambient-particle {
    animation: none !important;
    transform: none !important;
  }
  
  /* Disable card scroll animations */
  .service-card,
  .pricing-card {
    transform: none !important;
    transition: none !important;
  }
  
  /* Disable scroll-triggered animations */
  .section-title,
  .section-intro,
  .contact-form-container {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Focus states for keyboard navigation */
a:focus,
button:focus,
input:focus {
  outline: 2px solid var(--color-primary-blue);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --color-primary-blue: #00d4ff;
    --color-text-medium: #ffffff;
  }

  .quantum-button,
  .nav-link,
  .mission-card {
    border-width: 2px;
  }
}

/* ========== UTILITY CLASSES ========== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.no-scroll {
  overflow: hidden;
}

/* ========== SHOOTING STARS ANIMATION ========== */
.shooting-stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: linear-gradient(45deg, #ffffff, #00bfff);
  border-radius: 50%;
  opacity: 0;
  animation: shooting 3s linear infinite;
}

.star:nth-child(1) {
  top: 20%;
  left: -5%;
  animation-delay: 0s;
  animation-duration: 4s;
}

.star:nth-child(2) {
  top: 40%;
  left: -5%;
  animation-delay: 1s;
  animation-duration: 3.5s;
}

.star:nth-child(3) {
  top: 60%;
  left: -5%;
  animation-delay: 2s;
  animation-duration: 4.5s;
}

.star:nth-child(4) {
  top: 80%;
  left: -5%;
  animation-delay: 3s;
  animation-duration: 3s;
}

.star:nth-child(5) {
  top: 30%;
  left: -5%;
  animation-delay: 4s;
  animation-duration: 4.2s;
}

@keyframes shooting {
  0% {
    opacity: 0;
    transform: translateX(0) translateY(0) rotate(45deg);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(120vw) translateY(-50vh) rotate(45deg);
  }
}

/* ========== END OF STYLESHEET ========== *//* ADD THESE STYLES TO YOUR EXISTING styles.css */

/* ========== CANVAS FIX - CRITICAL ========== */
#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none; /* CRITICAL: Allows clicks to pass through */
  /* GPU Acceleration */
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

/* Optimize canvas element for GPU compositing */
#canvas-container canvas {
  transform: translateZ(0);
  will-change: transform, opacity;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* ========== HERO INITIAL STATES FOR ANIMATION - REMOVED CONFLICTING RULES ========== */

/* ========== MISSION CARDS Z-INDEX & POINTER EVENTS ========== */
.mission-card {
  position: relative;
  background: rgba(0, 191, 255, 0.05);
  padding: 40px 30px;
  border: 1px solid rgba(0, 191, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 10; /* Make sure cards are above canvas */
  pointer-events: auto; /* Ensure cards are clickable */
  will-change: transform; /* Optimize for animations */
  transform-style: preserve-3d; /* Enable 3D transforms */
}

.mission-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 191, 255, 0.3);
  z-index: 20; /* Bring hovered card to front */
}

/* ========== SECTION CONTAINERS Z-INDEX ========== */
.quantum-section {
  position: relative;
  z-index: 5; /* Above canvas */
  pointer-events: auto; /* Ensure all sections are interactive */
}

.section-container {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

/* ========== CONTACT FORM Z-INDEX ========== */
.contact-form-container {
  position: relative;
  z-index: 15;
  pointer-events: auto;
}

/* ========== NAVIGATION Z-INDEX ========== */
.quantum-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* Highest priority */
  pointer-events: auto;
}

/* ========== SMOOTH SCROLL BEHAVIOR ========== */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ========== FLOATING NAVIGATION HUD ========== */
.floating-nav-hud {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 191, 255, 0.3);
  border: 2px solid rgba(0, 191, 255, 0.5);
  transition: all 0.3s ease;
  cursor: pointer;
  pointer-events: auto;
}

.nav-dot:hover {
  background: rgba(0, 191, 255, 0.6);
  box-shadow: 0 0 8px rgba(0, 191, 255, 0.6);
}

/* ========== AMBIENT PARTICLES ========== */
.ambient-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  /* GPU Acceleration */
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

.ambient-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(0, 191, 255, 0.4);
  border-radius: 50%;
  /* GPU Acceleration */
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

/* ========== PERFORMANCE OPTIMIZATIONS ========== */
.mission-card,
.hero-title,
.hero-subtitle,
.book-meeting-btn {
  will-change: transform, opacity;
}

/* Reset will-change after animations complete */
@media (hover: none) {
  .mission-card,
  .hero-title,
  .hero-subtitle,
  .book-meeting-btn {
    will-change: auto;
  }
}

/* ========== FOOTER Z-INDEX ========== */
.quantum-footer {
  position: relative;
  z-index: 100; /* Above canvas (z-index: 1) and sections (z-index: 5) */
  pointer-events: auto;
  margin-top: 0; /* No extra space above footer */
  padding-bottom: 80px; /* Space at bottom for scrolling */
}

/* ========== SOCIAL LINKS ========== */
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
  background: transparent;
  border: none;
  box-shadow: none;
  position: relative;
  z-index: 101; /* Ensure social icons are clickable */
}

.social-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
  z-index: 102; /* Above footer background */
}

.social-icon i {
  font-size: 1.8rem;
  background: radial-gradient(circle, rgba(0,255,200,0.2), rgba(0,255,200,0.05));
  border-radius: 50%;
  padding: 1rem;
  margin-bottom: 0.4rem;
  border: 1px solid rgba(0, 255, 200, 0.4);
}

.social-icon span {
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.social-icon:hover i {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 255, 200, 0.6);
}

/* ========== FOOTER COPYRIGHT ========== */
.footer-copyright {
  position: absolute;
  bottom: 10px;
  left: 20px;
  z-index: 103;
  pointer-events: auto;
}

.footer-copyright p {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-text-medium);
  margin: 0;
  opacity: 0.7;
  letter-spacing: 1px;
}

.social-icon:hover span {
  opacity: 1;
  color: #00ffc8;
}

/* Responsive */
@media (max-width: 600px) {
  .social-links {
    flex-wrap: wrap;
    gap: 1.2rem;
    padding: 1.5rem 0;
  }
}