:root {
  --ink: #10212b;
  --muted: #5d6b75;
  --line: #dfe8ec;
  --brand: #0f766e;
  --brand-dark: #0b4f4a;
  --line-green: #06c755;
  --sun: #f8b84e;
  --bg: #f6f9f9;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(16, 33, 43, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, "Tahoma", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: #fff;
  background: var(--brand);
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
}

.nav-links a:hover {
  color: var(--brand);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-trigger::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.submenu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 35;
  display: grid;
  min-width: 250px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease;
}

.submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.submenu a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
  white-space: nowrap;
}

.submenu a:hover {
  color: var(--brand-dark);
  background: #eef8f7;
}

.nav-dropdown:hover .submenu,
.nav-dropdown:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mobile-service-menu {
  display: none;
}

.header-call {
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--brand-dark);
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero picture,
.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: 68% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 23, 33, .88) 0%, rgba(6, 23, 33, .68) 38%, rgba(6, 23, 33, .12) 72%),
    linear-gradient(0deg, rgba(6, 23, 33, .28), rgba(6, 23, 33, .05));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 86px);
  padding: 90px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  font-weight: 700;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, .9);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.btn-primary {
  background: var(--sun);
  color: #251b08;
}

.btn-line {
  background: var(--line-green);
  color: #062412;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
  max-width: 560px;
}

.trust-row div {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
}

.trust-row dt {
  font-size: 24px;
  font-weight: 800;
}

.trust-row dd {
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

.quick-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-contact a {
  padding: 18px;
  text-align: center;
  background: #fff;
  color: var(--brand-dark);
  font-weight: 700;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.fleet-list article,
.review-grid blockquote,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 8px 24px rgba(16, 33, 43, .06);
}

.service-card {
  padding: 24px;
}

.service-card p,
.fleet-list p,
.review-grid blockquote,
.faq-list p,
.price-panel p {
  color: var(--muted);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #e4f3f1;
  color: var(--brand-dark);
  font-weight: 800;
}

.fleet {
  width: 100%;
  max-width: none;
  padding-left: clamp(18px, 6vw, 86px);
  padding-right: clamp(18px, 6vw, 86px);
  background: #10212b;
  color: #fff;
}

.fleet .section-head {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.fleet-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.fleet-list article {
  padding: 28px;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
}

.fleet-list p {
  color: rgba(255, 255, 255, .78);
}

.fleet-list strong {
  color: var(--sun);
}

.price-panel,
.final-cta {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.check-list li {
  padding: 14px 16px;
  border-radius: 8px;
  background: #eef8f7;
  color: var(--brand-dark);
  font-weight: 700;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-tags span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--brand-dark);
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  min-height: 190px;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  counter-increment: steps;
}

.steps li::before {
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  margin-top: 8px;
  color: var(--muted);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-grid blockquote {
  margin: 0;
  padding: 26px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 12px 0 0;
}

.final-cta {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 86px;
  color: #fff;
  background: var(--brand-dark);
}

.final-cta h2 {
  margin-bottom: 0;
}

.site-footer {
  padding: 34px 18px 96px;
  text-align: center;
  color: rgba(255, 255, 255, .76);
  background: #10212b;
}

.site-footer p {
  margin: 4px 0;
}

.mobile-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(16, 33, 43, .16);
}

.mobile-sticky a {
  padding: 14px;
  text-align: center;
  font-weight: 800;
}

.mobile-sticky a:first-child {
  color: #251b08;
  background: var(--sun);
}

.mobile-sticky a:last-child {
  color: #062412;
  background: var(--line-green);
}

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

  .mobile-service-menu {
    position: sticky;
    top: 63px;
    z-index: 18;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 14px;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--line);
    scrollbar-width: none;
  }

  .mobile-service-menu::-webkit-scrollbar {
    display: none;
  }

  .mobile-service-menu a {
    flex: 0 0 auto;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--brand-dark);
    background: #fff;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
  }

  .hero {
    min-height: 640px;
  }

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

  .fleet-list,
  .review-grid,
  .quick-contact,
  .price-panel,
  .final-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
  }

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

  .brand small,
  .header-call {
    display: none;
  }

  .hero {
    min-height: 700px;
    align-items: end;
  }

  .hero img {
    object-position: 70% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(6, 23, 33, .92) 0%, rgba(6, 23, 33, .72) 48%, rgba(6, 23, 33, .18) 100%);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 86px 0 34px;
  }

  h1 {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .btn {
    width: 100%;
  }

  .trust-row,
  .service-grid,
  .fleet-list,
  .steps,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .trust-row div {
    padding: 12px;
  }

  .section {
    padding: 58px 0;
  }

  .price-panel,
  .final-cta {
    padding: 24px;
  }

  .quick-contact a {
    padding: 14px;
  }

  .mobile-sticky {
    display: grid;
  }
}

.legacy-theme {
  background: var(--bg);
  color: var(--ink);
}

.legacy-theme .site-header {
  font-family: Arial, "Tahoma", sans-serif;
}

.legacy-page-title {
  padding: clamp(38px, 6vw, 72px) clamp(18px, 6vw, 86px) clamp(28px, 5vw, 54px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6, 23, 33, .92), rgba(6, 23, 33, .74)),
    url("hero-moving-service.webp") center right / cover no-repeat;
}

.legacy-page-title h1 {
  width: min(920px, 100%);
  margin: 0 0 14px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: 0;
}

.legacy-page-title p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 20px;
}

.legacy-theme table {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  border-spacing: 0;
}

.legacy-theme .keymain1 {
  margin: 28px auto 8px;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  letter-spacing: 0;
}

.legacy-theme .keymain1 span,
.legacy-theme .titleContent1 span,
.legacy-theme .typeCar {
  display: inline;
  padding: 0;
  color: var(--ink);
  background: transparent !important;
}

.legacy-theme .content1 {
  display: block;
  max-width: 980px;
  margin: 0 auto 18px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  box-shadow: 0 8px 24px rgba(16, 33, 43, .06);
  font-family: Arial, "Tahoma", sans-serif;
  font-size: 18px;
  line-height: 1.8;
}

.legacy-theme .contentContact {
  margin: 8px auto;
  color: var(--ink);
  font-family: Arial, "Tahoma", sans-serif;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 700;
}

.legacy-theme .contentContact a {
  color: var(--brand-dark);
}

.legacy-theme .imgSocialMedia {
  max-width: min(360px, 86vw);
  height: auto;
}

.legacy-theme .imgsCar,
.legacy-theme .imgReview,
.legacy-theme table img {
  max-width: min(920px, 92vw);
  height: auto !important;
  border-radius: 8px;
}

.legacy-theme .divRowImgtext {
  width: min(1180px, calc(100% - 36px));
  margin: 28px auto;
}

.legacy-theme .imgtext {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 33, 43, .06);
  overflow: hidden;
}

.legacy-theme footer {
  margin-top: 56px;
  padding: clamp(34px, 5vw, 58px) clamp(18px, 5vw, 70px);
  color: rgba(255, 255, 255, .78);
  background: #10212b !important;
  font-family: Arial, "Tahoma", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.legacy-theme footer a {
  color: #fff !important;
  text-decoration: none !important;
  overflow-wrap: anywhere;
}

.legacy-theme footer a:hover {
  color: var(--sun) !important;
}

.legacy-theme .divRowFooter {
  display: grid !important;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: clamp(22px, 4vw, 44px);
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: start;
  padding: 0 !important;
  background: transparent !important;
}

.legacy-theme .f1,
.legacy-theme .f2 {
  width: auto !important;
  min-width: 0;
  padding: 24px !important;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05) !important;
  color: rgba(255, 255, 255, .78);
}

.legacy-theme .f1 > div:first-child,
.legacy-theme .f2 > div:first-child {
  margin: 0 0 14px;
  padding: 0 !important;
  text-align: left !important;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
}

.legacy-theme .f1 > div:first-child u,
.legacy-theme .f2 > div:first-child u {
  text-decoration: none;
}

.legacy-theme .f1 > div:first-child a,
.legacy-theme .f2 > div:first-child a {
  color: #fff !important;
}

.legacy-theme .linkF {
  width: 100% !important;
  height: auto !important;
  color: rgba(255, 255, 255, .76);
  background: transparent !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
  word-break: normal;
}

.legacy-theme .linkF div,
.legacy-theme .linkF span,
.legacy-theme .f1 div,
.legacy-theme .f2 div {
  background-color: transparent !important;
}

.legacy-theme .f1 .linkF {
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px;
}

.legacy-theme .f1 .linkF a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .9) !important;
  font-size: 15px;
  line-height: 1.25;
}

.legacy-theme .f2 .linkF {
  display: block !important;
}

.legacy-theme .f2 .linkF a {
  font-weight: 700;
}

.legacy-theme .imgF {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  object-fit: contain;
  border-radius: 5px;
  vertical-align: middle;
  margin: 0 8px 0 0;
}

@media (max-width: 980px) {
  .legacy-page-title {
    padding-top: 46px;
  }

  .legacy-theme .divRowFooter {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .legacy-page-title h1 {
    font-size: 38px;
  }

  .legacy-page-title p:not(.eyebrow) {
    font-size: 17px;
  }

  .legacy-theme .content1 {
    width: calc(100% - 28px) !important;
    padding: 18px;
    font-size: 16px;
  }

  .legacy-theme .keymain1 {
    width: calc(100% - 28px) !important;
  }
}
