
body {
  margin: 0;
  font-family: 'orbitron', sans-serif;
  background-color: #000;
  color: #fff;
  text-align: center;
}

.hero-title {
  font-size: 42px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1px; /* adjust freely */
}

.container {
  max-width: 650px;
  margin: 3rem auto;
  background: #000;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(255,255,255,0.1);
}

.ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.ul li::before {
  content: "✔️";
  margin-right: 0.5rem;
}

header {
  background-image: url('../checkered.png');
  background-size: cover;
  background-position: center;
  padding: 5rem 2rem;
  text-align: center;
  color: white;
}

.header-text {
  background: rgba(0, 0, 0, 1);
  display: inline-block;
  padding: 2rem 2rem;
  border-radius: 9px;
}

header > * {
  position: relative;
  z-index: 1;
}

.h1 {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.h2 {
  font-size: 1.35rem;
  margin-top: 1rem;
  color: #ffcc00;
}

.logo {
  display: block;
  margin: 0 auto 1rem auto;
  width: 400px;
  max-width: 100%;
  height: auto;
}

/* --- NAV FIX (mobile-safe) --- */
nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  background-color: #111;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  box-sizing: border-box;
}

nav a {
  margin: 0; /* FIXED: removed invalid 25%rem */
  color: white;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

/* Tighter spacing on small screens */
@media (max-width: 420px) {
  nav {
    gap: 12px;
  }
}

main {
  padding: 3rem 1rem;
  max-width: 1000px;
  margin: auto;
}

section {
  margin-bottom: 3rem;
}

.services-list li {
  padding: 1rem;
  background-color: #111;
  border: 1px solid #333;
  border-radius: 8px;
  margin-bottom: 1rem;
  list-style: none;
}

.quote-btn {
  background-color: #fff;
  color: #000;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border: 2px solid #fff;
  border-radius: 6px;
  text-transform: uppercase;
  margin-top: 2rem;
  display: inline-block;
}

.quote-btn:hover {
  background-color: #ddd;
  color: black;
  border-color: #ccc;
}

.testimonial {
  margin-top: 1rem;
  font-style: italic;
  font-size: 0.9rem;
  text-align: center;
  opacity: 0.8;
}

.confirmation {
  display: none;
  text-align: center;
  margin-top: 1rem;
  color: #0f0;
}

.input {
  width: 100%;
  padding: 0.75rem;
  margin: 0.5rem 0;
  border: none;
  border-radius: 8px;
  background: #1a1a1a;
  color: white;
  font-family: inherit;
}

footer {
  background-color: #111;
  text-align: center;
  padding: 2rem 1rem;
  color: #aaa;
  font-size: 0.9rem;
}

footer nav {
  margin-top: 1rem;
}

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

footer nav a:hover {
  color: #fff;
}

/* Screen reader only - accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Service detail sections */
.service-detail {
  background: #0a0a0a;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid #ff0000;
}

/*services headers*/
.service-detail h2 {
  color: #ffffff;
  margin-top: 0;
}

/* Blockquote styling for testimonials */
blockquote {
  margin: 0;
  padding: 0;
}

blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-size: 0.85rem;
  opacity: 0.7;
}

.service-areas {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 1.5rem;
}
