:root {
  --red: #d71920;
  --red-dark: #ab1016;
  --black: #111214;
  --charcoal: #24262a;
  --grey: #686b70;
  --light-grey: #f4f4f4;
  --white: #ffffff;
  --border: #dedede;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  --radius: 18px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
  min-width: 205px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--black) 0 48%, var(--red) 48% 100%);
  border-radius: 50%;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand strong,
.brand small {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.03em;
}

.brand strong {
  font-size: 1.35rem;
}

.brand small {
  margin-top: 3px;
  color: var(--red);
  font-size: 1rem;
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--black);
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-header {
  min-height: 44px;
  padding-inline: 18px;
  color: var(--white);
  background: var(--red);
}

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 26px rgba(215, 25, 32, 0.28);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.24);
}

.btn-light {
  color: var(--red);
  background: var(--white);
}

.btn-full {
  width: 100%;
}

.hero {
  min-height: 720px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("../img/pro-load-movers-team.png");
  background-position: center 46%;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.65) 48%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.48), transparent 58%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  align-items: center;
  gap: 60px;
  padding-block: 105px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--white);
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 34px;
  height: 3px;
  background: currentColor;
}

.hero h1,
.section h2,
.coverage h2,
.final-cta h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  letter-spacing: -0.03em;
}

.hero h1 em {
  display: block;
  color: var(--red);
  font-style: normal;
}

.hero-copy > p {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-points span {
  position: relative;
  padding-left: 15px;
}

.hero-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.hero-card {
  width: 230px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(17, 18, 20, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card-top,
.hero-card span,
.hero-card small {
  display: block;
}

.hero-card-top {
  margin-bottom: 5px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  line-height: 0.9;
}

.hero-card span {
  margin: 5px 0;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.hero-card small {
  margin-top: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-strip {
  position: relative;
  z-index: 3;
  color: var(--white);
  background: var(--red);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
  min-height: 115px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.65rem;
  line-height: 1;
  text-transform: uppercase;
}

.trust-grid span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.83rem;
}

.section {
  padding-block: 110px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: 80px;
}

.image-stack {
  position: relative;
}

.main-image {
  width: 100%;
  min-height: 590px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.experience-card {
  position: absolute;
  right: -28px;
  bottom: 35px;
  padding: 24px 28px;
  color: var(--white);
  border-radius: 14px;
  background: var(--red);
  box-shadow: var(--shadow);
}

.experience-card strong,
.experience-card span {
  display: block;
}

.experience-card strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.7rem;
  line-height: 1;
  text-transform: uppercase;
}

.section h2,
.coverage h2 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  letter-spacing: -0.025em;
}

.section-copy > p {
  color: var(--grey);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--red);
  font-size: 0.75rem;
}

.text-link {
  color: var(--red);
  font-weight: 800;
}

.services {
  background: var(--light-grey);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 50px;
}

.section-heading p {
  margin: 0 0 7px;
  color: var(--grey);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.service-number {
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.service-card h3 {
  margin: 64px 0 14px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: var(--grey);
  font-size: 0.93rem;
}

.service-card-featured {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.service-card-featured .service-number,
.service-card-featured p {
  color: rgba(255, 255, 255, 0.82);
}

.service-card-featured a {
  display: inline-block;
  margin-top: 24px;
  font-weight: 800;
}

.coverage {
  padding-block: 100px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 18, 20, 0.98), rgba(17, 18, 20, 0.9)),
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255,255,255,0.025) 12px, rgba(255,255,255,0.025) 24px);
}

.coverage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 320px;
  align-items: center;
  gap: 90px;
}

.section-label.light {
  color: var(--white);
}

.coverage-copy > p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
}

.route-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 35px 0;
}

.route-list span {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-weight: 800;
}

.route-list b {
  color: var(--red);
}

.coverage-note {
  font-size: 0.9rem;
}

.poster-wrap {
  transform: rotate(2deg);
}

.poster-wrap img {
  width: 100%;
  border: 8px solid var(--white);
  border-radius: 20px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 80px;
}

.quote-intro > p {
  color: var(--grey);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.contact-list a,
.contact-list div {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.contact-list span,
.contact-list strong {
  display: block;
}

.contact-list span {
  color: var(--grey);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.contact-list strong {
  margin-top: 5px;
  font-size: 1.05rem;
  word-break: break-word;
}

.quote-form {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--light-grey);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quote-form label {
  display: block;
  margin-bottom: 18px;
  font-size: 0.85rem;
  font-weight: 800;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  background: var(--white);
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.1);
}

.form-note {
  margin: 12px 0 0;
  color: var(--grey);
  font-size: 0.75rem;
  text-align: center;
}

.final-cta {
  color: var(--white);
  background: var(--red);
}

.final-cta-inner {
  min-height: 270px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta span {
  font-weight: 800;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 750px;
  margin-top: 8px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.site-footer {
  padding-top: 68px;
  color: var(--white);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 40px;
}

.footer-brand .brand-mark {
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-grid p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  gap: 6px;
  text-align: right;
  font-size: 0.86rem;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 4px solid var(--white);
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
  font-size: 0.8rem;
  font-weight: 900;
}

@media (max-width: 980px) {
  .btn-header {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .split,
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .main-image {
    min-height: 520px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coverage-grid {
    grid-template-columns: 1fr 270px;
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 680px);
  }

  .site-header {
    position: sticky;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand {
    min-width: auto;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 1.12rem;
  }

  .brand small {
    font-size: 0.86rem;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 12px 20px 20px;
    border-top: 1px solid var(--border);
    background: var(--white);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 4px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-bg {
    background-position: 58% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.5));
  }

  .hero-content {
    padding-block: 85px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 5.1rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-points {
    display: grid;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid div {
    min-height: 100px;
    padding: 18px;
  }

  .trust-grid strong {
    font-size: 1.35rem;
  }

  .section {
    padding-block: 75px;
  }

  .main-image {
    min-height: 440px;
  }

  .experience-card {
    right: 15px;
    bottom: 15px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 245px;
  }

  .service-card h3 {
    margin-top: 42px;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .poster-wrap {
    max-width: 310px;
    margin-inline: auto;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .quote-form {
    padding: 24px 18px;
  }

  .final-cta-inner {
    min-height: 300px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
