/* Header */
.header-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000000;
  border: none;
  z-index: 9999;
  transition: none;
  box-shadow: none;
  border-bottom: 4px solid #FF0000;
}

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

.site-logo {
  font-family: system-ui, monospace;
  font-size: 24px;
  font-weight: 900;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.main-navigation {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation li {
  margin: 0 0 0 32px;
}

.main-navigation a {
  color: #FFFFFF;
  font-family: system-ui, monospace;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  border: 2px solid transparent;
  padding: 8px 16px;
  background: transparent;
  transition: none;
}

.main-navigation a:hover {
  background: #FF0000;
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.header-phone-cta {
  background: #0000FF;
  color: #FFFFFF;
  padding: 12px 24px;
  border: 2px solid #FFFFFF;
  font-weight: 900;
  font-family: system-ui, monospace;
  text-transform: uppercase;
  transition: none;
}

.header-phone-cta:hover {
  background: #FFFF00;
  color: #000000;
}

.mobile-menu-toggle {
  display: none;
  background: #FF0000;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  padding: 12px;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  transition: none;
}

.mobile-menu-toggle:hover {
  background: #FFFFFF;
  color: #FF0000;
}

/* Footer */
.footer-area {
  background: #000000;
  color: #FFFFFF;
  border-top: 4px solid #FF0000;
  padding: 48px 0 24px 0;
}

.footer-content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}

.footer-company-info h3 {
  color: #FFFF00;
  font-family: system-ui, monospace;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-company-info p {
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-contact-info h4,
.footer-page-links h4 {
  color: #0000FF;
  font-family: system-ui, monospace;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-bottom: 2px solid #FF0000;
  padding-bottom: 8px;
}

.footer-contact-info p {
  margin-bottom: 8px;
  font-family: monospace;
  font-weight: 700;
}

.footer-page-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.footer-page-links a {
  color: #FFFFFF;
  font-family: system-ui, monospace;
  font-weight: 700;
  text-transform: uppercase;
  border-left: 4px solid transparent;
  padding-left: 8px;
  transition: none;
}

.footer-page-links a:hover {
  color: #FFFF00;
  border-left-color: #FF0000;
}

.footer-legal-links {
  border-top: 2px solid #FF0000;
  padding-top: 24px;
  text-align: center;
}

.footer-legal-links a {
  color: #FFFFFF;
  margin: 0 16px;
  font-family: monospace;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-legal-links a:hover {
  color: #FFFF00;
}

/* Cards */
.service-card-item,
.feature-card-block,
.team-member-card {
  background: #FFFFFF;
  border: 4px solid #000000;
  padding: 24px;
  margin-bottom: 24px;
  transition: none;
}

.service-card-item:hover,
.feature-card-block:hover,
.team-member-card:hover {
  background: #FFFF00;
  transform: translateY(-4px);
  box-shadow: 8px 8px 0px #FF0000;
}

.service-card-item h3,
.feature-card-block h3,
.team-member-card h3 {
  color: #000000;
  font-family: system-ui, monospace;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-bottom: 2px solid #FF0000;
  padding-bottom: 8px;
}

.service-card-item p,
.feature-card-block p,
.team-member-card p {
  color: #000000;
  font-family: monospace;
  font-weight: 700;
  line-height: 1.6;
}

.card-price-display {
  background: #0000FF;
  color: #FFFFFF;
  padding: 8px 16px;
  font-family: system-ui, monospace;
  font-weight: 900;
  text-transform: uppercase;
  border: 2px solid #000000;
  margin-top: 16px;
  display: inline-block;
}

/* Buttons */
.primary-button,
.secondary-button,
.accent-button {
  font-family: system-ui, monospace;
  font-weight: 900;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 4px solid #000000;
  cursor: pointer;
  transition: none;
  display: inline-block;
  text-align: center;
  font-size: 16px;
}

.primary-button {
  background: #FF0000;
  color: #FFFFFF;
}

.primary-button:hover {
  background: #FFFFFF;
  color: #FF0000;
}

.secondary-button {
  background: #0000FF;
  color: #FFFFFF;
}

.secondary-button:hover {
  background: #FFFFFF;
  color: #0000FF;
}

.accent-button {
  background: #FFFF00;
  color: #000000;
}

.accent-button:hover {
  background: #000000;
  color: #FFFF00;
}

/* Forms */
.contact-form-wrapper {
  background: #FFFFFF;
  padding: 32px;
  border: 4px solid #000000;
  margin: 32px 0;
}

.contact-form-wrapper h3 {
  color: #000000;
  font-family: system-ui, monospace;
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 4px solid #FF0000;
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  color: #000000;
  font-family: system-ui, monospace;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 4px solid #000000;
  background: #FFFFFF;
  color: #000000;
  font-family: monospace;
  font-weight: 700;
  font-size: 16px;
  transition: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #0000FF;
  background: #FFFF00;
}

/* Cookie Banner */
.cookie-alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #FFFF00;
  color: #000000;
  border-bottom: 4px solid #FF0000;
  padding: 16px 0;
  z-index: 9998;
  transform: translateY(-100%);
  transition: none;
}

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

.cookie-alert-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.cookie-alert-message {
  font-family: system-ui, monospace;
  font-weight: 700;
  flex: 1;
  margin-right: 24px;
}

.cookie-alert-actions {
  display: flex;
  gap: 16px;
}

.cookie-accept-button {
  background: #000000;
  color: #FFFFFF;
  border: 2px solid #FF0000;
  padding: 8px 16px;
  font-family: system-ui, monospace;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: none;
}

.cookie-accept-button:hover {
  background: #FF0000;
  color: #FFFFFF;
}

.cookie-learn-more {
  color: #0000FF;
  font-family: system-ui, monospace;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: underline;
}

.cookie-learn-more:hover {
  color: #FF0000;
}

@media (max-width: 768px) {
  .header-content {
    padding: 12px 0;
    min-height: 70px;
  }
  
  .main-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000000;
    flex-direction: column;
    border-top: 2px solid #FF0000;
  }
  
  .main-navigation.active {
    display: flex;
  }
  
  .main-navigation li {
    margin: 0;
    border-bottom: 2px solid #FF0000;
  }
  
  .main-navigation a {
    display: block;
    padding: 16px 24px;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .header-phone-cta {
    display: none;
  }
  
  .footer-content-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .cookie-alert-content {
    flex-direction: column;
    gap: 16px;
  }
  
  .cookie-alert-message {
    margin-right: 0;
    text-align: center;
  }
}