/* ========================================
   SERVICE PAGE STYLES
   Shared CSS for all 7 service sub-pages:
   flatbed-tl, stepdeck-tl, fleet-vehicle-transport,
   high-value-white-glove, trailer-space-sharing-ltl,
   climate-controlled, time-critical
   ======================================== */

/* === HERO === */
.hero {
  position: relative;
  width: 100%;
  min-height: 653px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--hhs-bc-top) + 40px);
  padding-bottom: 80px;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 22.81%, var(--color-black) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 0;
}

.hero__heading {
  font-family: var(--font-heading);
  font-size: 62px;
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 800px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero__btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
  background: var(--color-white);
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.2s;
}

.hero__btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-1px);
}

/* === OVERVIEW === */
.overview {
  width: 100%;
  padding: 156px 120px 120px;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  justify-content: center;
}

.overview--has-quote {
  flex-wrap: wrap;
  padding-bottom: 137px;
}

.overview__text {
  max-width: 558px;
  flex-shrink: 0;
}

.overview__pill {
  margin-bottom: 42px;
}

.overview__heading {
  font-family: var(--font-heading);
  font-size: 41px;
  font-weight: 600;
  color: var(--color-black);
  line-height: 1.3;
  margin-bottom: 37px;
}

.overview__heading span {
  font-weight: 400;
}

.overview__body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-gray-text);
  line-height: 1.5;
  margin-bottom: 45px;
}

.overview__blockquote {
  border-left: 2px solid rgba(0, 0, 0, 0.15);
  padding-left: 20px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--color-gray-text);
  line-height: 1.5;
}

.overview__image-wrapper {
  flex-shrink: 0;
  width: 551px;
  height: 412px;
  border-radius: 17px;
  overflow: hidden;
}

.overview__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview__quote {
  flex-basis: 100%;
  max-width: calc(558px + 60px + 551px);
  margin-left: auto;
  margin-right: auto;
  margin-top: -18px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: normal;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 14px;
}

.overview__quote::before {
  content: '';
  display: inline-block;
  width: 56px;
  min-width: 56px;
  height: 1px;
  background: var(--color-orange);
  flex-shrink: 0;
}

/* === WHY CHOOSE === */
.why-choose {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.why-choose__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.why-choose__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 34, 63, 0.7);
  z-index: 1;
}

.why-choose__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-choose__pill {
  background: rgba(255, 255, 255, 0.2);
  margin-top: 92px;
}

.why-choose__heading {
  font-family: var(--font-heading);
  font-size: 53px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.3;
  text-align: center;
  margin-top: 20px;
}

.why-choose__grid {
  display: grid;
  grid-template-columns: 507px 507px;
  grid-template-rows: 187px 187px;
  gap: 22px 47px;
  margin-top: 76px;
}

.why-choose__card {
  background: rgba(19, 34, 63, 0.44);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 23px;
  border: 1px solid rgb(63, 70, 89);
  box-shadow: 1.6px 1.6px 14.6px rgba(0, 0, 0, 0.23);
  padding: 19px 23px;
  display: flex;
  flex-direction: column;
}

.why-choose__icon {
  width: 51px;
  height: 51px;
  background: var(--color-orange);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-choose__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.why-choose__card-title {
  font-family: var(--font-heading);
  font-size: 22.5px;
  font-weight: 400;
  color: var(--color-white);
  margin-top: 22px;
}

.why-choose__card-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--color-gray-light);
  line-height: 1.4;
  margin-top: 8px;
}

/* === KEY COMMODITIES === */
.commodities {
  width: 100%;
  background: linear-gradient(0deg, var(--color-warm-offwhite) 0%, var(--color-white) 67.54%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0 80px;
}

/* .commodities__pill: canonical only, no overrides */

.commodities__heading {
  font-family: var(--font-heading);
  font-size: 40.55px;
  font-weight: 600;
  color: var(--color-black);
  line-height: 1.3;
  text-align: center;
  margin-top: 29px;
}

.commodities__grid {
  display: grid;
  grid-template-columns: repeat(4, 256px);
  gap: 28px;
  margin-top: 58px;
}

.commodities__card {
  background: var(--color-white);
  border-radius: 22.5px;
  box-shadow: 0 1.13px 2.25px rgba(0, 0, 0, 0.05);
  padding: 27px 27px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.commodities__icon {
  width: 64px;
  height: 68px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.commodities__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-black);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.commodities__icon--filled svg {
  stroke: none;
  stroke-width: 0;
  fill: var(--color-black);
}

.commodities__card-title {
  font-family: var(--font-heading);
  font-size: 15.77px;
  font-weight: 600;
  color: var(--color-black);
  margin-top: 22px;
}

.commodities__card-desc {
  font-family: var(--font-body);
  font-size: 13.52px;
  font-weight: 400;
  color: var(--color-gray-text);
  line-height: 1.4;
  margin-top: 8px;
}

/* === TECHNICAL SPECIFICATIONS === */
.specs {
  padding: 60px 80px 80px;
  background: linear-gradient(var(--color-warm-offwhite) 0%, var(--color-white) 36.84%);
}

.specs__heading {
  font-size: 33.8px;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 50px;
}

.specs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.specs__grid--4col {
  grid-template-columns: repeat(4, 1fr);
}

.specs__col {
  border-left: 2px solid var(--color-divider-light);
  padding: 0 40px;
}

.specs__label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-gray-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.specs__value {
  font-size: 33.8px;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.2;
}

.specs__unit {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-gray-muted);
  margin-left: 4px;
}

/* ========================================
   TABLET — max-width: 1024px
   ======================================== */
@media (max-width: 1024px) {

  /* --- Hero --- */
  .hero {
    min-height: 500px;
  }

  .hero__heading {
    font-size: 44px;
    max-width: 600px;
  }

  .hero__btn {
    padding: 12px 28px;
  }

  /* --- Overview --- */
  .overview {
    padding: 100px 60px 80px;
    gap: 40px;
    flex-wrap: wrap;
  }

  .overview__text {
    max-width: 100%;
    flex-shrink: 1;
  }

  .overview__heading {
    font-size: 32px;
    margin-bottom: 28px;
  }

  .overview__body {
    margin-bottom: 30px;
  }

  .overview__image-wrapper {
    width: 100%;
    height: 340px;
  }

  .overview__quote {
    max-width: 100%;
  }

  /* --- Why Choose --- */
  .why-choose {
    min-height: 0;
    padding: 80px 40px;
  }

  .why-choose__pill {
    margin-top: 0;
  }

  .why-choose__heading {
    font-size: 38px;
  }

  .why-choose__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px 28px;
    margin-top: 50px;
    width: 100%;
    max-width: 700px;
  }

  .why-choose__card-title {
    font-size: 20px;
  }

  /* --- Key Commodities --- */
  .commodities {
    padding: 80px 40px 60px;
  }

  .commodities__heading {
    font-size: 32px;
  }

  .commodities__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
  }

  /* --- Technical Specifications --- */
  .specs {
    padding: 50px 40px 60px;
  }

  .specs__heading {
    font-size: 28px;
    margin-bottom: 36px;
  }

  .specs__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }

  .specs__grid--4col {
    grid-template-columns: repeat(2, 1fr);
  }

  .specs__col {
    padding: 0 24px;
  }

  .specs__value {
    font-size: 28px;
  }
}

/* ========================================
   MOBILE — max-width: 768px
   ======================================== */
@media (max-width: 768px) {

  /* --- Hero --- */
  .hero {
    min-height: 400px;
  }

  .hero__content {
    gap: 24px;
    padding: 0 20px;
  }

  .hero__heading {
    font-size: 30px;
    max-width: 100%;
  }

  .hero__btn {
    padding: 12px 24px;
    font-size: 15px;
  }

  /* --- Overview --- */
  .overview {
    padding: 60px 20px 50px;
    flex-direction: column;
    gap: 28px;
  }

  .overview--has-quote {
    padding-bottom: 50px;
  }

  .overview__pill {
    margin-bottom: 24px;
  }

  .overview__heading {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .overview__body {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .overview__blockquote {
    font-size: 16px;
  }

  .overview__image-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .overview__quote {
    font-size: 14px;
    gap: 10px;
    margin-top: 0;
  }

  .overview__quote::before {
    width: 32px;
    min-width: 32px;
  }

  /* --- Why Choose --- */
  .why-choose {
    min-height: 0;
    padding: 50px 20px;
  }

  .why-choose__pill {
    margin-top: 0;
  }

  .why-choose__heading {
    font-size: 28px;
  }

  .why-choose__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
    margin-top: 32px;
    width: 100%;
  }

  .why-choose__card {
    padding: 20px;
  }

  .why-choose__card-title {
    font-size: 18px;
    margin-top: 16px;
  }

  .why-choose__card-desc {
    font-size: 14px;
  }

  /* --- Key Commodities --- */
  .commodities {
    padding: 50px 20px 40px;
  }

  .commodities__heading {
    font-size: 26px;
  }

  .commodities__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .commodities__card {
    padding: 24px;
  }

  /* --- Technical Specifications --- */
  .specs {
    padding: 40px 20px 50px;
  }

  .specs__heading {
    font-size: 24px;
    margin-bottom: 28px;
  }

  .specs__grid {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .specs__grid--4col {
    grid-template-columns: 1fr;
  }

  .specs__col {
    padding: 0 0 0 20px;
  }

  .specs__value {
    font-size: 24px;
  }

  .specs__unit {
    font-size: 16px;
  }
}

.specs__text {
  font-size: 20.3px;
  font-weight: 600;
  color: var(--color-black);
  line-height: 1.5;
}
