
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #0b2a4a;
  background: #ffffff;
}

.hero {
  background: linear-gradient(135deg, #0b3c78, #082b55);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.logo {
  max-width: 220px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 40px;
  margin: 10px 0;
}

.hero h2 {
  color: #f2b705;
  margin-bottom: 10px;
}

.hero-sub {
  font-size: 18px;
  margin-bottom: 25px;
}

.cta-button {
  background: #f2b705;
  color: #0b2a4a;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

section {
  padding: 50px 20px;
  max-width: 900px;
  margin: auto;
}

h3 {
  color: #0b3c78;
  margin-bottom: 15px;
}

.services ul {
  list-style: none;
  padding: 0;
}

.services li {
  padding: 6px 0;
  font-weight: bold;
}

.note {
  font-style: italic;
  margin-top: 10px;
}

.compliance {
  background: #f7f9fc;
  text-align: center;
}

.badge-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.badge {
  border: 3px solid #f2b705;
  color: #0b3c78;
  width: 140px;
  height: 140px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  background: white;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.badge span {
  font-size: 26px;
  margin-bottom: 6px;
}

.badge p {
  font-size: 14px;
  margin: 0;
}

.compliance-note {
  margin-top: 20px;
  font-style: italic;
  font-size: 14px;
}

.routes {
  text-align: center;
  background: #ffffff;
}

.map {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 350px;
  margin: 40px auto;
  background: #f7f9fc;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.route {
  position: absolute;
  height: 3px;
  background: linear-gradient(90deg, transparent, #f2b705, transparent);
  animation: move 2.5s linear infinite;
}

.atl-bhm { width: 220px; top: 180px; left: 230px; }
.atl-cha { width: 180px; top: 130px; left: 270px; }
.atl-gvl { width: 190px; top: 150px; left: 250px; }

@keyframes move {
  0% { background-position: 0 0; }
  100% { background-position: 200px 0; }
}

.city {
  position: absolute;
  background: #0b3c78;
  color: white;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: bold;
}

.atl { top: 190px; left: 210px; }
.bhm { top: 190px; left: 450px; }
.cha { top: 110px; left: 460px; }
.gvl { top: 140px; left: 480px; }

.quote form {
  display: grid;
  gap: 12px;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
}

button {
  background: #0b3c78;
  color: white;
  border: none;
  padding: 12px;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background: #082b55;
}

footer {
  background: #0b3c78;
  color: white;
  text-align: center;
  padding: 30px 15px;
}

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

.footer-small {
  font-size: 12px;
  margin-top: 10px;
}
