* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: #0d0d0d;
  color: #ddd;
  line-height: 1.6;
}

a {
  color: #0d6efd;
  text-decoration: none;
}
a:hover { text-decoration: underline; }

.site-header {
  background: #000;
  border-bottom: 1px solid #222;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.main-nav a {
  color: #aaa;
  margin-left: 20px;
  font-weight: 500;
}
.main-nav a:hover { color: #0d6efd; }

main { min-height: 60vh; }

.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.section h2 {
  color: #fff;
  font-size: 28px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
}
.section-intro {
  color: #aaa;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.hero {
  padding: 140px 20px;
  text-align: center;
}
.hero--metal {
  background: url('/assets/metal-bg.jpg') center/cover no-repeat;
}
.hero h2 {
  font-size: 38px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero p {
  color: #aaa;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
}

.btn,
.submit-btn {
  display: inline-block;
  background: #0d6efd;
  color: #fff;
  border: none;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.btn:hover,
.submit-btn:hover { background: #0954d1; }

.btn--secondary {
  background: #1a1a1a;
  border: 1px solid #444;
  color: #ddd;
}
.btn--secondary:hover { background: #222; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: #1a1a1a;
  border: 1px solid #222;
  border-radius: 10px;
  padding: 24px;
  transition: 0.3s;
}
.card:hover {
  border-color: #0d6efd;
  transform: translateY(-4px);
}
.card h3 {
  color: #fff;
  margin-bottom: 8px;
}
.card p {
  color: #aaa;
  font-size: 14px;
}

.review {
  font-style: italic;
  text-align: center;
  color: #bbb;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

input,
textarea {
  width: 100%;
  background: #111;
  border: 1px solid #333;
  border-radius: 6px;
  color: #eee;
  padding: 12px;
  margin-bottom: 15px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: #0d6efd;
}

.site-footer {
  background: #000;
  border-top: 1px solid #222;
  text-align: center;
  padding: 32px 20px;
  color: #999;
  font-size: 14px;
  margin-top: 40px;
}

.table-wrapper { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  font-size: 14px;
}
th,
td {
  border: 1px solid #333;
  padding: 12px 10px;
  text-align: left;
}
th {
  background: #222;
  color: #fff;
  text-transform: uppercase;
}
tr:nth-child(even) { background: #181818; }
tr:hover { background: #202020; }
tr.premium { background-color: #0d6efd22; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 50px;
}
.cards .card { padding: 30px; }

.highlight {
  border-color: #0d6efd;
  background: linear-gradient(180deg, #1f1f1f, #151515);
  box-shadow: 0 0 20px rgba(13, 110, 253, 0.3);
}

ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}
ul li {
  color: #ccc;
  font-size: 14px;
  margin: 4px 0;
}
ul li::before {
  content: "•";
  color: #0d6efd;
  margin-right: 8px;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #111;
  border: 1px solid #333;
  color: #aaa;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.map-placeholder {
  width: 100%;
  height: 260px;
  border: 1px dashed #333;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 14px;
  margin-bottom: 24px;
}

.tagline {
  text-align: center;
  color: #aaa;
  font-size: 15px;
  margin-top: -20px;
  margin-bottom: 40px;
}

#policy-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  z-index: 2000;
}

#policy-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 600px;
  width: 90%;
  background: #111;
  border-radius: 10px;
  border: 1px solid #333;
  padding: 24px 24px 16px;
  display: none;
  z-index: 2001;
}

#policy-modal h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 18px;
}
#policy-modal p {
  color: #bbb;
  font-size: 13px;
  margin-bottom: 8px;
}

#policy-modal .policy-scroll {
  max-height: 260px;
  overflow-y: auto;
  margin: 12px 0 16px;
  padding-right: 4px;
}

#policy-modal .btn-row { text-align: right; }

#policy-overlay.visible,
#policy-modal.visible { display: block; }

.form-note {
  color: #777;
  font-size: 12px;
  margin-top: 8px;
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  font-size: 13px;
  color: #aaa;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
  }

  .main-nav {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
  }

  .main-nav a {
    margin: 4px 12px 0 0;
  }

  .hero {
    padding: 100px 16px;
  }

  .hero h2 {
    font-size: 26px;
  }

  .section {
    padding: 60px 16px;
  }
}
