/* main.css - Simple Clean Version for Superspeedies Freight */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #222;
  background-color: #fff;
  line-height: 1.6;
}
a {
  color: #0d6efd;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Container */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Top Bar */
.bg-dark {
  background: #0b2b40 !important;
  color: #fff;
}
.bg-dark a {
  color: #fff;
}
.small {
  font-size: 0.9rem;
}

/* Header */
header {
  background: #fff;
  border-bottom: 1px solid #ddd;
}
.navbar {
  padding: 10px 0;
}
.navbar-brand img {
  height: 60px;
}
.nav-link {
  color: #333 !important;
  font-weight: 500;
  margin: 0 5px;
}
.nav-link:hover {
  color: #0d6efd !important;
}
.btn-primary {
  background: #0d6efd;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 0.95rem;
}
.btn-primary:hover {
  background: #0b5ed7;
}

/* Banner / Hero */
.inner-banner {
  position: relative;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 120px 0;
}
.inner-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.inner-banner h1 {
  position: relative;
  z-index: 1;
  font-size: 2.2rem;
  font-weight: 700;
}
.inner-banner p {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  font-size: 1rem;
}

/* Sections */
section {
  padding: 60px 0;
}
section h2, section h3, section h4 {
  color: #0b2b40;
  margin-bottom: 16px;
  font-weight: 600;
}
section p {
  margin-bottom: 12px;
}

/* Cards / Services */
.card {
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s;
  background: #fff;
}
.card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body {
  padding: 16px;
}

/* Forms */
form {
  margin-top: 20px;
}
.form-label {
  font-weight: 600;
}
.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 15px;
}
button[type="submit"] {
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}
button[type="submit"]:hover {
  background: #0b5ed7;
}

/* Footer */
footer {
  background: #0b2b40;
  color: #fff;
  padding: 50px 0 20px;
}
footer h5, footer h6 {
  font-weight: 600;
  margin-bottom: 10px;
}
footer ul {
  list-style: none;
  padding: 0;
}
footer li {
  margin-bottom: 6px;
}
footer a {
  color: #fff;
}
footer a:hover {
  text-decoration: underline;
}
hr {
  border-color: rgba(255, 255, 255, 0.2);
}
.small {
  font-size: 0.85rem;
}

/* CTA Section */
.cta {
  background: #0b2b40;
  color: #fff;
  text-align: center;
  padding: 60px 0;
}
.cta a {
  background: #fff;
  color: #0b2b40;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
}
.cta a:hover {
  background: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar-brand img {
    height: 48px;
  }
  .inner-banner {
    padding: 80px 0;
  }
  section {
    padding: 40px 0;
  }
  footer {
    text-align: center;
  }
}
