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

:root {
  --clr-dark: #050304;
  --clr-red: #f10203;
  --clr-light: #efefef;
  --clr-text: #737373;
  --font-heading: "Futura Std", sans-serif;
  --font-body: "Inter", sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--clr-dark);
  line-height: 1.5;
  /* font-family: 'Futura Std', sans-serif;                                        */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.2;
  text-align: center;
  margin-block: 0 2rem;
}

.section-title--light {
  color: #fff;
}

.btn {
  display: inline-block;
  padding: 0.625rem 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

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

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

.header {
  border-bottom: 2px solid var(--clr-red);
}


/* Header Part */

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 25px;
}

.footer__logo {
  width: 132px;
  height: auto;
}

.header__logo {
  position: absolute;
  width: 207px;
  height: auto;
  transform: translateX(-50%);
  left: 50%;
  top: 0px;
  z-index: 10;
}

.nav__list {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.nav__link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--clr-dark);
  text-decoration: none;
}

.header__cta {
  display: flex;
  gap: 1rem;
}


/* Hero */

.hero {
  position: relative;
}

.hero__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
}

.hero__content {
  max-width: 655px;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 68px;
  line-height: 120%;
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 24px;
}

.hero__text {
  font-size: 1.125rem;
  color: var(--clr-dark);
  margin: 0;
}

.hero__image img {
  max-width: fit-content;
}

.trusted {
  border: 1px solid var(--clr-red);
  width: 800px;
  padding: 20px 92px;
  text-align: center;
  transform: skew(-10deg) translateX(-50%);
  z-index: 10;
  background: white;
  position: absolute;
  left: 50%;
  bottom: -4rem;
}

@media screen and (max-width: 1680px) {
  .hero__image img {
    max-width: calc(100% + 16px);
  }
}

@media screen and (max-width: 1300px) {
  .hero__content {
    max-width: 550px;
  }
  .hero__title {
    font-size: 48px;
  }
}

@media screen and (max-width: 1190px) {
  .trusted {
    bottom: auto;
  }
}

.trusted__label {
  font-size: 0.75rem;
  color: var(--clr-text);
  margin: 0 0 0.75rem;
  transform: skew(10deg);
}

.trusted__logos {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  align-self: stretch;
  transform: skew(10deg);
}


/* Quote */

.quote {
  background: #fff;
  border-bottom: 2px solid var(--clr-red);
  padding-block: 8rem;
}

.quote__form {
  max-width: 45rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 40px;
  border: 1px solid var(--Red, #f10203);
}

.quote__row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.input-group {
  flex: 1 1 12rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input-group--full {
  flex: 1 1 100%;
}

.input-group label {
  font-weight: 700;
  font-size: 0.875rem;
}

.input-group .required {
  color: var(--clr-text);
  font-weight: 400;
  font-size: 0.75rem;
}

.input-group input {
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--clr-light);
  font-size: 1rem;
}

.input-group select {
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--clr-light);
  font-size: 1rem;
}

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

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

.quote__fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.quote__legend {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

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

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

.radio input {
  accent-color: var(--clr-dark);
}


/* Coverage */

.coverage {
  background: var(--clr-light);
  padding: 10rem 6rem;
  text-align: center;
  position: relative;
}

.coverage__image {
  max-width: 90rem;
  margin-inline: auto;
}

.coverage__note {
  background: #fff;
  border: 1px solid var(--clr-red);
  padding: 46px 80px 46px 80px;
  margin-inline: auto;
  max-width: 976px;
  transform: skew(-10deg) translateX(-50%);
  position: absolute;
  left: 50%;
  bottom: -110px;
}

.coverage__note h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 0 1rem;
  transform: skew(10deg);
}

.coverage__note p {
  margin: 0;
  font-size: 1.125rem;
  transform: skew(10deg);
}


/* How it works */

.how {
  background: var(--clr-light);
  padding-block: 6rem;
}

.how__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  align-items: center;
}

.how__content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.how__content p {
  font-size: 1.125rem;
  margin: 0 0 2rem 0;
}


/* Why Garland */

.why {
  background: var(--clr-dark);
  color: #fff;
  padding: 6rem 0 4rem 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.why__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1321px;
  align-items: baseline;
}

.card {
  background: transparent;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  margin: 1rem 0 0.5rem;
}

.card__text {
  font-size: 1.125rem;
  margin: 0;
}


/* FAQ */

.faq {
  padding-block: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq__item {
  max-width: 70rem;
  width: 100%;
  border: 1px solid var(--clr-light);
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
}

.faq__item summary {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  cursor: pointer;
}

.faq__item p {
  margin-top: 0.75rem;
}


/* Footer */

.footer {
  border-top: 2px solid var(--clr-red);
  background: #fff;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer__nav a {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--clr-dark);
}

.footer__contacts {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--clr-red);
}

.footer__item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.footer__copyright {
  text-align: center;
  font-size: 0.75rem;
  color: var(--clr-text);
  margin: 0 0 1rem;
}


/* === Generic Page Hero (About) === */

.page-hero {
  padding-block: 6rem 4rem;
  text-align: center;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 64px;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.page-hero__text {
  font-size: 1.125rem;
  max-width: 60rem;
  margin: 0 auto;
}


/* === Story Sections (Alternate Layouts) === */

.story {
  padding-block: 97px;
}

.story:nth-of-type(odd) {
  background: var(--clr-light);
}

.story__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 156px;
  align-items: center;
}

.story__text {
  font-size: 1.125rem;
}

.story__content {
  max-width: 600px;
}


/* Utility */

.sr-only {
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  text-align: left;
  font-weight: 600;
}

@media (max-width: 600px) {
  .track-hero__title {
    font-size: 2.25rem;
  }
  .no-results {
    flex-direction: column;
    text-align: center;
  }
  .no-results__icon {
    margin-bottom: 1rem;
  }
}


/* Track Hero */

.track-hero {
  padding-block: 4rem 2rem;
  text-align: center;
}

.track-hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.track-hero__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3rem;
  margin: 0 0 1rem;
}

.track-hero__text {
  font-size: 1.125rem;
  margin: 0 0 2rem;
}

.track-form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 40px;
  width: 725px;
}

.track-form__input {
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--clr-light);
  font-size: 1rem;
  min-width: 260px;
  font-family: "Inter", sans-serif;
}

.track-form__btn {
  flex: 0 0 auto;
}


/* Track Result */

.track-result {
  padding-block: 4rem;
  margin-top: 1rem;
  background: var(--Gray, #efefef);
}

.no-results {
  max-width: 55rem;
  margin-inline: auto;
  text-align: left;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.no-results__icon {
  flex: 0 0 97px;
  height: 97px;
  outline: 4px var(--clr-red) solid;
  position: relative;
}

.no-results__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  margin: 0 0 0.5rem;
}

.no-results__text {
  font-size: 1.125rem;
  margin: 0;
}

.no-result__container {
  display: flex;
  flex-direction: column;
}


/* Results */

.results {
  padding-block: 4rem;
  background: #efefef;
}

.results__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  text-align: center;
  margin: 0 0 0.5rem;
}

.results__count {
  text-align: right;
  font-size: 1rem;
  margin: 0 0 2rem;
  color: var(--clr-dark);
}

.result-card {
  border: 1px solid var(--clr-light);
  padding: 2.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  background-color: white;
  justify-content: space-between;
}

.result-card__summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.result-card__row {
  display: flex;
  gap: 0.5rem;
  font-size: 1rem;
  align-items: center;
}

.result-card__label {
  font-family: var(--font-heading);
  font-weight: 700;
}

.result-card__value {
  font-family: var(--font-body);
}

.divider {
  height: 1px;
  background: var(--clr-light);
}

.result-card__details {
  display: flex;
  gap: 3rem;
}

.detail-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.detail-group__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  gap: 3px;
}

.detail-group__value {
  font-size: 1rem;
}

.result-card__gallery {
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow-x: auto;
}

.gallery__images {
  display: flex;
  gap: 1rem;
}

.gallery__nav {
  width: 40px;
  height: 40px;
  background: var(--clr-light);
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-card__gallery img {
  width: 180px;
  height: 180px;
  flex: 0 0 auto;
}

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 */
}

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

.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: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  outline: none;
  width: 234px;
}

.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;
}

.result-card__location {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.result-card-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 8px;
}

.result-card__icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.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;
}

.location-item-row {
  display: flex;
  align-items: center;
  gap: 80px;
  align-self: stretch;
}

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

.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 */
}
.calculate-container {
  padding: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: fit-content;
}

.calculate-container-detail {
  width: 580px;
  padding-right: 80px;
}

.location-divider {
  width: 1px;
}

.location-item {
  width: 230px;
}

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

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

.calculate-container-price-title {
  color: var(--Black, #050304);
  text-align: right;
  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: flex-end;
  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);
  text-align: left;
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
}

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