/* ====  Global  ============================= */

@font-face {
  font-family: 'Futura';
  src: url(../font/futura.woff) format('woff');
}

.vertical-menu {
  width: 100%;
  text-align: right;
}

.vertical-menu a {
  background-color: #EFEFEF;
  margin-bottom: 5px;
  color: black;
  display: block;
  padding: 12px;
  text-decoration: none;
}

.vertical-menu a:hover {
  background-color: #ccc;
}

.vertical-menu a.active {
  background-color: #04AA6D;
  color: white;
}


/* -------- base / helpers -------------------------------- */

:root {
  --mob-red: #F10203;
  --mob-dark: #050304;
  --mob-light: #FFFFFF;
  --mob-gray: #EFEFEF;
  --mob-text-gray: #737373;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--mob-dark);
  background: var(--mob-light);
  font-family: 'Futura Std', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
span {
  font-family: "Futura Std", Arial, sans-serif;
}


/* -------- reusable atoms ------------------------------- */

.btn {
  display: inline-block;
  padding: .6rem 1rem;
  font: 700 .75rem/1.1 "Futura Std", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  line-height: 150%;
}

.btn-primary {
  background: var(--mob-red);
  color: #fff;
}

.btn-dark {
  background: var(--mob-dark);
  color: #fff;
}

.section {
  padding: 2.5rem 1.25rem;
}

.section h2 {
  margin: 0 0 1.5rem;
  font: 700 1.8rem/1.2 "Futura Std", sans-serif;
}

.center {
  text-align: center;
}


/* -------- header --------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 2px solid var(--mob-red);
  background: #fff;
}

.header-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: .75rem 1rem;
  gap: 20px;
}

.logo {
  position: absolute;
  left: 10px;
  top: 0px;
}

.logo img {
  width: 105px;
  height: auto;
}

.nav {
  display: none;
  gap: 1.25rem;
}

.nav-link {
  font: 800 .75rem/1 "Futura Std";
  text-transform: uppercase;
  color: var(--mob-dark);
  text-decoration: none;
}

.cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

@media screen and (max-width: 380px) {
  .cta {
    gap: 0.5rem;
  }
  .header-inner {
    padding: 0.5rem 1rem;
  }
  .logo img {
    width: 90px;
  }
}

.hamburger {
  display: flex;
  gap: .5rem;
}


/* -------- hero ----------------------------------------- */

.hero {
  padding: 3rem 1.25rem;
  color: #fff;
  background: linear-gradient(139deg, rgba(5, 3, 4, .16) 0%, rgba(5, 3, 4, .50) 38%, rgba(5, 3, 4, .72) 75%), url("/static/img/home/home_head.png") center/cover no-repeat;
}

.hero-title {
  font: 700 2.25rem/1.2 "Futura Std";
  margin: 0 0 1rem;
}

.hero-text {
  font-size: 1rem;
  line-height: 1.5rem;
  margin: 0;
  font-family: "Inter", sans-serif;
}


/* -------- “They Trusted Us” ---------------------------- */

.sm-mt-20 {
  padding-top: 20px;
}

.sm-mt-0 {
  margin-top: 0 !important;
}

.bg-gray {
  background-color: #EFEFEF !important;
}

.sm-text-left {
  text-align: left;
}

.brands-logos {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 1rem;
}

.dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
}

.dot,
.dot--active {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mob-gray);
}

.dot--active {
  background: var(--mob-red);
}


/* -------- quote form ----------------------------------- */

.quote-form {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
  border: 1px solid var(--Red, #F10203);
  background: var(--White, #FFF);
}

.quote__or {
  text-align: center;
  color: var(--clr-text);
  font-size: .875rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.quote__or::before,
.quote__or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--clr-light, #EFEFEF);
}

.quote-form .label {
  color: var(--Black, #050304);
  font-family: "Futura Std";
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 150%;
  /* 27px */
  text-transform: uppercase;
}

.quote-form h3 {
  margin: 0;
}

.quote-form-input-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
}

.fieldset {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}

.input,
.select {
  width: 100%;
  height: 2.6rem;
  padding: .35rem .65rem;
  font-size: .875rem;
  border: 1px solid var(--mob-gray);
  color: var(--mob-text-gray);
}

.radio-group {
  display: flex;
  gap: 1.25rem;
}

.radio {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
}

.quote-btn {
  width: 100%;
  max-width: 100%;
  align-self: center;
}


/* -------- coverage map --------------------------------- */

.coverage {
  background: #EFEFEF;
}

.map-img {
  width: 100%;
  height: auto;
}

.map-down-box {
  background-color: white;
}


/* -------- why‑cards ------------------------------------ */

.cards {
  display: grid;
  gap: 1.5rem;
}

.card {
  padding: 0;
  text-align: center;
}

.card h3 {
  color: var(--White, #FFF);
  text-align: center;
  font-family: Futura;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.card p {
  color: var(--White, #FFF);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-family: "Inter", sans-serif;
  /* 24px */
}


/* -------- how‑it‑works --------------------------------- */

.steps {
  display: grid;
  gap: 1.5rem;
}

.step {
  border-left: 4px solid var(--mob-red);
  padding-left: 1rem;
}

.step-title {
  font: 700 1rem/1.2 "Futura Std";
  margin: 0 0 .25rem;
}


/* -------- accordion (FAQs) ----------------------------- */

.faq details {
  border-bottom: 1px solid var(--mob-gray);
  padding: 1rem 0;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  margin: .75rem 0 0;
  font-size: .875rem;
  color: var(--mob-text-gray);
}


/* -------- footer --------------------------------------- */

.footer {
  padding: 2.5rem 1.25rem 0 1.25rem;
  background: #f9f9f9;
  border-top: 1px solid var(--mob-red);
}

.footer-nav,
.footer-contact {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  font: 700 1rem/1 "Futura Std";
  text-transform: uppercase;
  color: var(--mob-dark);
  text-decoration: none;
}

.rights {
  text-align: center;
  color: var(--Dark-Gray, #737373);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 24px 0;
  margin: 20px 0 0 0;
  border-top: 1px solid #efefef
}


/* -------- image + text blocks ------------------------- */

.block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-top: 3rem;
  text-align: center;
}

.block-img {
  width: 100%;
  max-width: 353px;
  height: auto;
}

.block-title {
  font: 700 1.5rem/1.2 "Futura Std";
  margin: 0 0 .75rem;
}

.block-body {
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--dark);
}

.block.alt {
  background: var(--gray);
  padding: 2.5rem 1.25rem;
}


/* ===== Track‑order form & results =============================== */

.form-box {
  padding: 40px;
  border: 1px solid var(--Gray, #EFEFEF);
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font: 700 1rem/1 "Futura Std";
  text-transform: uppercase;
}

.input {
  width: 100%;
  padding: 5px 10px;
  font-size: 14px;
  color: var(--text-gray);
  border: 1px solid var(--Gray, #EFEFEF);
  background: var(--White, #FFF);
  font-family: "Inter", sans-serif;
}

.track-btn {
  width: 100%;
  align-self: center;
}

.empty-state {
  padding: 40px 20px;
  background: var(--gray);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.empty-state__icon {
  width: 97px;
  height: 97px;
  object-fit: contain;
}

.empty-state__title {
  font: 700 1.25rem/1.2 "Futura Std";
  color: var(--dark);
}

.empty-state__text {
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--dark);
}


/* grey background wrapper */

.section.alt {
  background: var(--gray);
}


/* results */

.results-header {
  font: 700 1.5rem/1.2 "Futura Std";
  text-align: center;
}

.results-count {
  text-align: right;
  font-size: .75rem;
  margin-bottom: 1rem;
}

.results-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.result-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--gray);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.result-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .75rem;
}

.meta-row .label {
  font-family: "Futura Std";
  font-weight: 700;
}

.meta-cols {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.meta2-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.result-col {
  width: 120px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.result-gallery {
  display: flex;
  overflow-x: auto;
  gap: 16px;
}

.result-gallery img {
  width: 180px;
  height: 180px;
  flex: 0 0 auto;
  object-fit: cover;
}

.icon-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.slick-track {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.slick-slide {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.slick-slide div div {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.quote-mobile-form-input {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.map-down-box {
  border: 1px solid #F10203;
  padding: 10px 45px;
  transform: skew(-5deg);
  margin-top: 40px;
}

.map-down-box p {
  transform: skew(5deg);
  font-family: "Inter", sans-serif;
}

.map-down-box h3 {
  transform: skew(5deg);
}

.form-icon-container {
  display: flex;
  height: 40px;
  padding: 5px 10px;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  align-self: stretch;
  border: 1px solid var(--Gray, #EFEFEF);
  background: var(--White, #FFF);
  outline: none;
}

.form-icon-container input {
  border: 0px;
  padding: 0px;
  color: var(--Dark-Gray, #737373);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  outline: none;
  width: 100%;
}

.why {
  background: var(--Black, #050304);
  color: #fff;
  padding-block: 4rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.how {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-bottom: 1px solid var(--Red, #F10203);
  background: var(--Gray, #EFEFEF);
}

.how h2 {
  color: var(--Black, #050304);
  font-family: "Futura Std", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  /* 28.8px */
}

.how p {
  color: var(--Black, #050304);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
}

.how img {
  width: 100%;
  margin-bottom: 40px;
}

summary {
  list-style: none;
  /* Prevents fallback bullet in some browsers */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

summary::-webkit-details-marker {
  display: none;
  /* Chrome, Safari */
}

summary::marker {
  display: none;
  /* Firefox */
}

.footer .logo {
  position: relative;
}

.footer>.logo>img {
  width: 150px;
}

.footer__item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: var(--Red, #F10203);
  text-align: center;
  font-family: "Futura Std", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 24px */
  text-transform: uppercase;
  margin: 0;
}

.result {
  background: var(--Gray, #EFEFEF);
}

.result-card {
  border: 1px solid var(--Gray, #EFEFEF);
  background: var(--White, #FFF);
}

.trust-title {
  color: var(--Dark-Gray, #737373);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  transform: skewX(10deg);
  margin-bottom: 20px;
  /* 18px */
}

.slick-dots li {
  width: 5px !important;
  height: 5px !important;
  background: lightgray !important;
  border-radius: 100% !important;
}

.slick-dots .slick-active {
  background: red !important;
}

.brand-section {
  border: 1px solid #F10203;
  transform: skewX(-5deg);
  margin: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand__logos {
  padding-top: 13px;
}

.brand-section img {
  transform: skewX(10deg);
}

.section-map {
  border-top: 1px solid var(--Red, #F10203);
  background: var(--Gray, #EFEFEF);
}

.location-divider-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.result-card-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  /* make icons‑col match meta‑cols height */
  gap: 8px;
}


/* stack first‑icon / divider / second‑icon */

.location-divider-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* push the first icon down to line up with “From” */

.location-divider-container img:first-child {
  margin-top: 5px;
}


/* draw your dashed line and let it flex between the two icons */

.location-divider {
  flex: 1;
  width: 1px;
  border-left: 1px dashed #F10203;
  margin: 4px 0;
}


/* push the second icon down to line up with “To” */

.location-divider-container img:last-child {
  margin-bottom: 30px;
}


/* layout for your data columns */

.meta-cols {
  display: flex;
  flex-direction: row;
  gap: 24px;
  /* match the spacing between each meta2‑row */
}

.meta2-row {
  display: flex;
  justify-content: space-between;
}

.result-col {
  display: flex;
  flex-direction: column;
}

.container-detail-location {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.location-icons {
  display: flex;
  height: 96px;
  padding-top: 2px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.location-divider {
  height: 54px;
  border: 1px dashed #F10203;
}

.location-item-layout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.location-item-row {
  display: flex;
  align-items: flex-start;
  align-self: stretch;
  justify-content: space-between;
  width: 100%;
}

.location-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.location-name {
  color: var(--Black, #050304);
  font-family: Futura Std;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.location-value {
  color: var(--Black, #050304);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
}

.value-right {
  min-width: 200px;
}
.calculate-container {
  padding: 40px 20px;
}

.calculate-container-body {
  flex-direction: column;
  gap: 40px;
}

.location-divider {
  height: 54px;
}

.calculate-container-price {
  display: flex;
  padding: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  align-self: stretch;
  background: var(--Gray, #EFEFEF);
}

.calculate-container-price-header {
  display: flex;
  width: 125px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.calculate-container-price-title {
  color: var(--Black, #050304);
  text-align: center;
  font-family: Futura Std;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  align-self: stretch;
}

.calculate-container-price-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}

.calculate-container-price-detail-title {
  color: var(--Black, #050304);
  text-align: right;
  font-family: Futura Std;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.location-description {
  color: var(--Black, #050304);
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.calculate-container-price-detail-description {
  color: var(--Black, #050304);
  text-align: center;
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
}