.elementor-751 .elementor-element.elementor-element-19ab1b5 > .elementor-element-populated{margin:-6px -6px -6px -6px;--e-column-margin-right:-6px;--e-column-margin-left:-6px;}.elementor-751 .elementor-element.elementor-element-8c88661{width:var( --container-widget-width, 100% );max-width:100%;--container-widget-width:100%;--container-widget-flex-grow:0;}.elementor-751 .elementor-element.elementor-element-8c88661 > .elementor-widget-container{background-color:#009AFF;margin:-5px -5px -5px -5px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-76703ad */.footer {
  background-color: #0a1f44;
  color: #ffffff;
  padding: 70px 80px 25px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
}

.footer-logo {
  width: 160px;
}

/* FIX: Force headings white */
.footer-column h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #ffffff !important;
  font-weight: 600;
}

.footer-column a {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #cfd8e3;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-column a:hover {
  color: #2f6df6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 50px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
}

@media (max-width: 900px) {
  .footer {
    padding: 50px 30px 20px;
  }

  .footer-container {
    flex-direction: column;
    gap: 40px;
  }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-8c88661 *//* ================= PAGE BACKGROUND ================= */
.nfl-page-bg {
  background:#0a1f44; /* Navy */
  min-height: 100vh;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 100px 20px;
  box-sizing: border-box;
}

/* ================= CONTACT HEADER ================= */
.nfl-contact-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 0.8s forwards;
}

.nfl-contact-header h1 {
  font-size: 64px;
  font-weight: 900; /* Thicker bold */
  margin-bottom: 10px;
  color: #ffffff;
}

.nfl-contact-header p {
  font-size: 18px;
  opacity: 0.85;
  color: #ffffff;
}

/* ================= CONTACT WRAP ================= */
.nfl-contact-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  background:#0a1f44; /* NAVY BLUE */
  padding: 120px 20px 160px;
  overflow: hidden;
}

/* ================= CARD ================= */
.nfl-contact-card {
  background: #ffffff;
  max-width: 1100px;
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
  animation-delay: 0.3s;
}

/* ================= LEFT FORM ================= */
.nfl-contact-form {
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Animate individual form fields sequentially */
.nfl-contact-form .forminator-row,
.nfl-contact-form .forminator-button {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
}

.nfl-contact-form .forminator-row:nth-child(1) { animation-delay: 0.5s; }
.nfl-contact-form .forminator-row:nth-child(2) { animation-delay: 0.7s; }
.nfl-contact-form .forminator-row:nth-child(3) { animation-delay: 0.9s; }
.nfl-contact-form .forminator-button { animation-delay: 1.1s; }

/* ================= RIGHT IMAGE ================= */
.nfl-contact-image {
  background-image: url("https://nfl-logistics.com/wp-content/uploads/2026/02/crw_388h_517.webp");
  background-size: cover;
  background-position: center;
  border-radius: 0 26px 26px 0;
}

/* ================= FORMINATOR RESET ================= */
.forminator-ui.forminator-custom-form {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  font-family: 'Oswald', sans-serif;
}

/* LABELS */
.forminator-ui label {
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

/* INPUTS */
.forminator-ui input,
.forminator-ui textarea,
.forminator-ui select {
  border: 1px solid #ccc !important;
  border-radius: 6px !important;
  padding: 12px !important;
  font-size: 15px !important;
}

/* RADIO / CHECKBOX */
.forminator-ui .forminator-radio label,
.forminator-ui .forminator-checkbox label {
  font-weight: 500;
}

/* SUBMIT BUTTON */
.forminator-ui button.forminator-button-submit {
  background: #2fb45a !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  border-radius: 8px !important;
  padding: 14px !important;
  width: 100% !important;
  transition: all 0.3s ease;
}

.forminator-ui button.forminator-button-submit:hover {
  box-shadow: 0 0 20px #2fb45a, 0 0 40px #2fb45a; /* Glow effect like pricing page */
}

/* TERMS TEXT */
.forminator-ui .forminator-consent {
  font-size: 13px;
  color: #555;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .nfl-contact-card {
    grid-template-columns: 1fr;
  }

  .nfl-contact-image {
    display: none;
  }

  .nfl-contact-form {
    padding: 30px;
  }
}

/* ================= REMOVE THEME PAGE LIMIT ================= */
body,
html {
  margin: 0;
  padding: 0;
}

.site,
.site-content,
.content-area,
.container,
.wp-site-blocks {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
}

/* ================= FADE IN ANIMATION ================= */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9db44ad */.footer {
  background-color: #0a1f44;
  color: #ffffff;
  padding: 70px 80px 25px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
}

.footer-logo {
  width: 160px;
}

/* FIX: Force headings white */
.footer-column h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #ffffff !important;
  font-weight: 600;
}

.footer-column a {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #cfd8e3;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-column a:hover {
  color: #2f6df6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 50px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
}

@media (max-width: 900px) {
  .footer {
    padding: 50px 30px 20px;
  }

  .footer-container {
    flex-direction: column;
    gap: 40px;
  }
}/* End custom CSS */