/* ===== Footer layout ===== */

.site-footer {
  margin-top: 4rem;
  background: #ffffff;
  color: #111111;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

/* Top part: heading + 3 columns */
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: center;
}

/* "Trucking Classes" heading */
.footer-heading {
  grid-column: 1 / -1;
  margin: 0 0 2rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Shared column styles */
.footer-col {
  /* nothing yet, but nice hook if you need it later */
}

/* Logo column */
.footer-logo img {
  max-width: 280px;
  height: auto;
  display: block;
}

/* Contact column */
.footer-contact h4 {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer-contact p {
  margin: 0 0 1.25rem;
  font-size: 1rem;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Map column */
.footer-map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

/* ===== Bottom red copyright bar ===== */

.footer-bottom {
  background: #ef202d;
  color: #ffffff;
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== Responsive tweaks ===== */

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo img {
    margin: 0 auto;
  }

  .footer-map iframe {
    height: 260px;
  }
}
/* Floating CTA stays consistent across pages */
.floating-cta {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  background: #ef202d;
  color: #fff;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  text-decoration: none;
}

.floating-cta__icon {
  font-size: 1.25rem;
}

.floating-cta:hover {
  background: #c91520;
}
