:root {
  --cyan: #00F5FF;
  --purple: #BF00FF;
  --bg: #0E0E1A;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background-color: var(--bg);
  color: #e2e8f0;
}

.header-logo img {
  object-fit: contain;
  width: 110px;
  height: 65px;
  padding-top: 6px;
  padding-bottom: 6px;
  transition: all 0.3s ease;
}

.header-logo img:hover {
  transform: scale(1.05);
}

.technical-grid {
  background-image:
    linear-gradient(to right, rgba(0, 245, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 245, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hud-frame {
  position: relative;
  background: rgba(14, 14, 26, 0.6);
  border: 1px solid rgba(0, 245, 255, 0.3);
  clip-path: polygon(0 15px, 15px 0,
      calc(100% - 15px) 0, 100% 15px,
      100% calc(100% - 15px), calc(100% - 15px) 100%,
      15px 100%, 0 calc(100% - 15px));
}


.hud-corner-cyan {
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

.hud-border {
  border: 1px solid rgba(0, 246, 255, 0.3);
  position: relative;
}

.hud-border::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #00f6ff;
  border-left: 2px solid #00f6ff;
}

.hud-border::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #00f6ff;
  border-right: 2px solid #00f6ff;
}

.hud-card {
  position: relative;
  background: rgba(20, 20, 40, 0.4);
  border: 1px solid rgba(0, 245, 255, 0.15);
  transition: all 0.3s ease;
}

.hud-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.1);
}

.hud-bracket {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--cyan);
}

.recommended-bracket {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid var(--purple);
  clip-path: polygon(0 0, 30% 0, 30% 2px, 2px 2px, 2px 30%, 0 30%,
      0 70%, 0 100%, 30% 100%, 30% calc(100% - 2px), 2px calc(100% - 2px), 2px 70%,
      70% 100%, 100% 100%, 100% 70%, calc(100% - 2px) 70%, calc(100% - 2px) calc(100% - 2px), 70% calc(100% - 2px),
      100% 30%, 100% 0, 70% 0, 70% 2px, calc(100% - 2px) 2px, calc(100% - 2px) 30%);
  filter: drop-shadow(0 0 5px var(--purple));
}

.hud-panel-sharp {
  clip-path: polygon(0 0, 98% 0, 100% 15px, 100% 100%, 2% 100%, 0 calc(100% - 15px));
  border: 1px solid rgba(0, 245, 255, 0.2);
  background: rgba(14, 14, 26, 0.9);
}

.crosshair {
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.crosshair::before,
.crosshair::after {
  content: '';
  position: absolute;
  background: var(--cyan);
  opacity: 0.5;
}

.crosshair-overlay {
  background:
    linear-gradient(to right, var(--cyan) 2px, transparent 2px) 50% 50% / 40px 2px no-repeat,
    linear-gradient(to bottom, var(--cyan) 2px, transparent 2px) 50% 50% / 2px 40px no-repeat;
}

.scanlines {
  background: linear-gradient(to bottom,
      rgba(18, 16, 16, 0) 50%,
      rgba(0, 0, 0, 0.1) 50%);
  background-size: 100% 4px;
  pointer-events: none;
}

.scanline-effect {
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 245, 255, 0.03) 50%);
  background-size: 100% 4px;
}

.btn-hud {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.btn-hud:hover {
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.6);
  transform: translateY(-2px);
}

.nav-item {
  clip-path: polygon(5px 0, 100% 0, calc(100% - 5px) 100%, 0 100%);
}

.data-readout {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--cyan);
  opacity: 0.7;
}




.hud-frame {
  position: relative;
  background: rgba(14, 14, 26, 0.6);
  border: 1px solid rgba(0, 245, 255, 0.3);
  clip-path: polygon(0 10px, 10px 0,
      calc(100% - 10px) 0, 100% 10px,
      100% calc(100% - 10px), calc(100% - 10px) 100%,
      10px 100%, 0 calc(100% - 10px));
}

.btn-hud-cta {
  position: relative;
  background: var(--cyan);
  color: var(--bg);
  clip-path: polygon(15% 0, 100% 0, 100% 70%, 85% 100%, 0 100%, 0 30%);
  transition: all 0.3s ease;
}

.btn-hud-cta:hover:not(:disabled) {
  box-shadow: 0 0 25px var(--cyan);
  transform: scale(1.02);
}

.btn-hud-cta:disabled {
  background: #2d3748;
  color: #4a5568;
  cursor: not-allowed;
  opacity: 0.5;
}

.data-readout {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--cyan);
  opacity: 0.7;
}

.booking-step-active {
  border-bottom: 4px solid var(--cyan) !important;
  background: rgba(0, 245, 255, 0.1) !important;
  color: var(--cyan) !important;
  opacity: 1 !important;
}

.sector-button {
  transition: all 0.2s ease;
  clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
}

.sector-button.selected {
  background-color: var(--cyan);
  color: var(--bg);
  box-shadow: 0 0 15px var(--cyan);
}

.step-transition {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hidden-step {
  display: none;
  opacity: 0;
  transform: translateX(20px);
}

.active-step {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

#success-animation {
  background: rgba(0, 245, 255, 0.95);
  display: none;
}

.cross-tl {
  top: 0;
  left: 0;
  border-top: 1px solid var(--cyan);
  border-left: 1px solid var(--cyan);
}

.cross-tr {
  top: 0;
  right: 0;
  border-top: 1px solid var(--cyan);
  border-right: 1px solid var(--cyan);
}

.cross-bl {
  bottom: 0;
  left: 0;
  border-bottom: 1px solid var(--cyan);
  border-left: 1px solid var(--cyan);
}

.cross-br {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid var(--cyan);
  border-right: 1px solid var(--cyan);
}

details>summary::-webkit-details-marker {
  display: none;
}

details[open] .faq-glow {
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.15);
  border-color: var(--cyan);
}

details[open] .arrow-icon {
  transform: rotate(180deg);
  color: var(--cyan);
}


.map-marker {
  box-shadow: 0 0 15px var(--cyan);
}

.surveillance-overlay {
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0px, rgba(0, 0, 0, 0.1) 1px, transparent 1px, transparent 2px);
}

.scanning-bar {
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  animation: scan 4s linear infinite;
}

@keyframes scan {
  0% {
    top: 0;
  }

  100% {
    top: 100%;
  }
}

/* MENU 1 STYLING: Trapezium Shape */
.nav-trapezium {
  /* This creates the cut-corner tactical look */
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  transition: all 0.3s ease;
}

.nav-item-container {
  position: relative;
  display: inline-block;
}

/* Scan line animation for Mobile Overlay (Menu 2) */
.scan-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #00F5FF, transparent);
  position: absolute;
  top: 0;
  left: 0;
  animation: scan 4s linear infinite;
  opacity: 0.5;
  pointer-events: none;
}

/* Mobile Overlay Transition */
#mobile-menu-overlay {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#mobile-menu-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  display: flex;
}

.floating-button {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}


.floating-button.is-visible {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767px) {
  .booking-headline {
    font-size: 30px !important;
  }

  .action-headline {
    font-size: 22px !important;
  }

  .action-subheadline {
    font-size: 18px !important;
  }

  .floating-button {

    bottom: 20px !important;
    right: 20px !important;
  }

  .floating-button_content {
    padding: 12px 24px;
  }

  .intelligence-headline {
    font-size: 30px !important;
  }

  .intelligence-heading {
    font-size: 16px !important;
  }

  #mobile-menu-overlay a {
    font-size: 20px !important;
  }

  #mobile-menu-overlay button {
    padding: 16px 30px;

  }

  .events-text {
    opacity: 1 !important;
  }

  .hero-headline {
    font-size: 46px !important;
  }

  .specs-ribbon {
    bottom: 0 !important;
    right: 0 !important;
  }

  .specs-title {
    font-size: 30px !important;
  }

  .specs-data {
    font-size: 14px !important;
  }
}


.glass-morphism {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(6, 182, 212, 0.2);
}


.glow-cyan:hover:not(:disabled) {
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.6);
  transform: translateY(-1px);
}

.glow-cyan:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(1);
}