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

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background-color: #111;
  color: #f5f5f5;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

header {
  background: #1a1a1a;
  padding: 20px 0;
  border-bottom: 1px solid #333;
}

.logo {
  margin-bottom: 10px;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #d62828;
}

.nav-links a.active {
  color: #d62828;
  font-weight: bold;
  position: relative;
}

.nav-links a.active::after {
  content: " 🥷";
  margin-left: 4px;
}

.hero {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(to bottom, #161616, #101010);
}

.hero-logo {
  width: 200px;
  margin-bottom: 25px;

  animation: glowPulse 2.5s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from {
    filter: drop-shadow(0 0 6px rgba(214, 40, 40, 0.4));
  }
  to {
    filter: drop-shadow(0 0 20px rgba(214, 40, 40, 0.9))
            drop-shadow(0 0 30px rgba(214, 40, 40, 0.6));
  }
}

.hero h2 {
  font-size: 2.5rem;
  margin-top: 10px;
  margin-bottom: 20px;
}

.hero p {
  max-width: 750px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

section {
  padding: 60px 0;
}

h3 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: #1a1a1a;
  border: 1px solid #2f2f2f;
  padding: 24px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.card h4 {
  margin-bottom: 10px;
  color: #ffffff;
}

.card p,
.card li {
  color: #e6e6e6;
  line-height: 1.6;
}

.card ul {
  padding-left: 20px;
}

.product-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}

.btn,
.btn:link,
.btn:visited,
.button-link,
.button-link:link,
.button-link:visited {
  display: inline-block;
  background-color: #d62828;
  color: #ffffff !important;
  padding: 12px 20px;
  text-decoration: none !important;
  border-radius: 6px;
  font-weight: 700;
  margin-top: 10px;
  transition: all 0.2s ease;
}

.btn:hover,
.button-link:hover {
  background-color: #a61e1e;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.btn-secondary,
.btn-secondary:link,
.btn-secondary:visited {
  background-color: #333333;
  color: #ffffff !important;
}

.btn-secondary:hover {
  background-color: #444444;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.testing-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

.testing-form label,
.testing-form legend {
  font-weight: bold;
  color: #f5f5f5;
}

.testing-form input,
.testing-form select,
.testing-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #333;
  border-radius: 6px;
  background: #111;
  color: #f5f5f5;
  font-size: 1rem;
}

.testing-form input:focus,
.testing-form select:focus,
.testing-form textarea:focus {
  outline: none;
  border-color: #d62828;
}

.testing-form fieldset {
  border: 1px solid #333;
  border-radius: 8px;
  padding: 15px;
}

.testing-form fieldset label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 20px;
  font-weight: normal;
}

footer {
  background: #1a1a1a;
  border-top: 1px solid #333;
  padding: 25px 0;
  text-align: center;
}

footer a {
  color: #d62828;
  text-decoration: none;
}

.website-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

.website-form input,
.website-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #333;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-size: 1rem;
}

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

.form-label {
  font-weight: bold;
  margin-top: 10px;
}

.form-options {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 10px;
}

.form-options label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.work-links {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.work-list {
  padding-left: 20px;
  margin-top: 10px;
}

.work-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.service-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
}

.service-card h4 {
  margin-bottom: 10px;
}

.service-card p {
  margin: 0;
  line-height: 1.6;
}
