/* Header */
.header-area {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.header-area.scrolled {
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  min-height: 70px;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hud-color);
  text-decoration: none;
  text-shadow: 0 0 10px var(--hud-color);
  position: relative;
}

.site-logo::before {
  content: '◄ ';
  color: var(--tech-orange);
  margin-right: 0.5rem;
}

.site-logo::after {
  content: ' ►';
  color: var(--tech-orange);
  margin-left: 0.5rem;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.nav-menu a {
  color: var(--light-text);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--hud-color);
  border-color: rgba(0, 255, 255, 0.3);
  background: rgba(0, 255, 255, 0.05);
  text-shadow: 0 0 5px var(--hud-color);
}

.header-cta-button {
  background: linear-gradient(45deg, var(--tech-orange), #ff8533);
  color: white;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--tech-orange);
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  box-shadow: 0 0 10px rgba(255, 111, 0, 0.3);
}

.header-cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 111, 0, 0.6);
  color: white;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--hud-color);
  color: var(--hud-color);
  font-size: 1.2rem;
  padding: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 10px var(--hud-color);
}

/* Footer */
.footer-area {
  background: var(--bg-primary);
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  padding: 3rem 0 2rem;
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-widget h3 {
  color: var(--hud-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-widget p,
.footer-widget a {
  color: rgba(245, 245, 245, 0.8);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-widget a:hover {
  color: var(--tech-orange);
  text-shadow: 0 0 5px var(--tech-orange);
}

.footer-contact-info {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
}

.footer-contact-info strong {
  color: var(--hud-color);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(245, 245, 245, 0.6);
  font-size: 0.9rem;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(45deg, var(--tech-orange), #ff8533);
  color: white;
  padding: 1rem 2rem;
  border: 1px solid var(--tech-orange);
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 15px rgba(255, 111, 0, 0.3);
  cursor: pointer;
  display: inline-block;
  text-align: center;
  min-width: 160px;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 111, 0, 0.6);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: var(--hud-color);
  padding: 1rem 2rem;
  border: 1px solid var(--hud-color);
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  min-width: 160px;
}

.btn-secondary:hover {
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 15px var(--hud-color);
  color: var(--hud-color);
}

.btn-outline {
  background: transparent;
  color: var(--light-text);
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(245, 245, 245, 0.3);
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--hud-color);
  color: var(--hud-color);
  background: rgba(0, 255, 255, 0.05);
}

/* Cards */
.service-card-item {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--hud-color), var(--tech-orange));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card-item:hover::before {
  transform: scaleX(1);
}

.service-card-item:hover {
  transform: translateY(-5px);
  border-color: var(--hud-color);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 255, 255, 0.3);
}

.card-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--hud-color);
  stroke-width: 1.5;
}

.card-title {
  color: var(--hud-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.card-description {
  color: rgba(245, 245, 245, 0.9);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-price {
  color: var(--tech-orange);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Courier New', monospace;
}

/* Forms */
.contact-form-wrapper {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 8px;
  padding: 2rem;
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--hud-color);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 4px;
  color: var(--light-text);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Courier New', monospace;
}

.form-input:focus {
  outline: none;
  border-color: var(--hud-color);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.5);
}

.form-input::placeholder {
  color: rgba(245, 245, 245, 0.5);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  background: linear-gradient(45deg, var(--tech-orange), #ff8533);
  color: white;
  padding: 1rem 2rem;
  border: 1px solid var(--tech-orange);
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 15px rgba(255, 111, 0, 0.3);
}

.form-submit:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 111, 0, 0.6);
}

/* Cookie Banner */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  border-top: 1px solid var(--hud-color);
  padding: 1rem;
  z-index: 9998;
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-notice.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.cookie-text {
  color: var(--light-text);
  margin: 0;
  font-size: 0.9rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--tech-orange);
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept:hover {
  background: #ff8533;
  box-shadow: 0 0 10px rgba(255, 111, 0, 0.5);
}

.cookie-decline {
  background: transparent;
  color: var(--hud-color);
  padding: 0.5rem 1rem;
  border: 1px solid var(--hud-color);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-decline:hover {
  background: rgba(0, 255, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .header-content {
    padding: 0.75rem 0;
  }
  
  .main-navigation .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
  }
  
  .main-navigation .nav-menu.active {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .header-cta-button {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .cookie-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .service-card-item {
    padding: 1.5rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 0.75rem 1.5rem;
    min-width: 140px;
  }
}