:root {
  --charcoal: #2f2f2f;
  --orange: #f08a3b;
  --orange-soft: #f8c08a;
  --maroon: #742c38;
  --maroon-dark: #5f2430;
  --red: #aa1019;
  --green: #2d7a52;
  --teal: #25a5a3;
  --gold: #ffb300;
  --ink: #171414;
  --muted: #6e5d55;
  --line: #ead2bc;
  --surface: #fff8ef;
  --soft: #ffe2bf;
  --shadow: 0 18px 42px rgba(95, 36, 48, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html.mobile-nav-open,
body.mobile-nav-open {
  overflow: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.top-strip {
  display: none;
}

.strip-inner,
.header-main,
.split,
.trust-grid,
.footer-grid {
  display: flex;
  align-items: center;
}

.strip-inner {
  min-height: 35px;
  justify-content: flex-start;
  gap: 24px;
}

.strip-inner a {
  font-weight: 700;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 10;
  background: var(--orange);
  box-shadow: none;
}

.header-main {
  min-height: 78px;
  justify-content: space-between;
  gap: 22px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 46px;
  border-radius: 8px;
  background: var(--maroon);
  color: #fff;
  border-bottom: 5px solid var(--red);
  font-weight: 800;
}

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

.brand strong {
  color: var(--maroon-dark);
  line-height: 1.1;
}

.brand small {
  color: #3b2e2d;
  font-size: 0.8rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
  color: #2b211f;
  font-weight: 700;
  font-size: 0.95rem;
}

.main-nav.is-open {
  opacity: 1;
  transform: translateY(0) scaleY(1);
  pointer-events: auto;
}

.mobile-nav-toggle-input {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: 1px !important;
  max-height: 1px !important;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  appearance: none;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: 0;
}

.mobile-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(95, 36, 48, 0.35);
  border-radius: 8px;
  background: var(--maroon);
  color: #fff8ef;
  font-size: 1.1rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-nav-toggle::before {
  content: "☰";
}

.mobile-nav-toggle-input:checked + .mobile-nav-toggle::before {
  content: "×";
}

.main-nav a,
.mega-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: var(--maroon);
  color: #b8a5a5;
  font-weight: 900;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.mega-toggle:hover,
.mega-toggle:focus-visible {
  background: var(--maroon-dark);
  outline: 0;
}

.header-main {
  position: relative;
}

.mega-toggle {
  font: inherit;
  cursor: pointer;
}

.main-nav .nav-local {
  color: #999da1;
}

.main-nav .nav-international {
  color: var(--green);
}

.main-nav .nav-relocation {
  color: #c23c28;
}

.main-nav .nav-consulting {
  color: var(--gold);
}

.main-nav .nav-blog {
  color: #fff8ef;
}

.nav-item {
  position: relative;
}

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

.mega-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  width: min(1320px, calc(100vw - 24px));
  display: grid;
  grid-template-columns: 0.9fr 0.95fr 1.1fr 1.02fr 1.02fr 0.95fr;
  gap: 12px;
  padding: 14px;
  background: var(--orange);
  border: 1px solid rgba(95, 36, 48, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-72%) translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 20;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-72%) translateY(0);
}

.mega-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 20px;
}

.mega-column {
  display: grid;
  gap: 7px;
  align-content: start;
  padding: 14px;
  border-radius: 8px;
  background: var(--maroon);
}

.mega-column h2 {
  margin: 0 0 8px;
  color: #d9d0cf;
  font-size: 0.78rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-transform: uppercase;
}

.mega-column a {
  display: block;
  padding: 9px 10px;
  border: 0;
  border-radius: 6px;
  color: #d9d0cf;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.25;
}

.mega-column a:hover,
.mega-column a:focus-visible {
  background: rgba(255, 248, 239, 0.15);
  color: #fff;
  outline: 0;
}

.mega-column:nth-child(1) a,
.mega-column:nth-child(3) a {
  color: #b8a5a5;
}

.mega-column:nth-child(4) a {
  color: var(--green);
}

.mega-column:nth-child(5) a {
  color: #c23c28;
}

.mega-storage a {
  color: var(--gold);
}

.mega-highlight a {
  color: var(--ink);
}

.mega-highlight a:last-child {
  color: var(--ink);
}

.mega-highlight a[href*="removals-to-south-africa"] {
  color: var(--ink);
}

.mega-highlight a[href*="removals-to-russia"] {
  color: var(--ink);
}

.quote-link,
.btn,
.quote-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
}

.quote-link,
.btn-primary,
.quote-form button {
  background: var(--maroon);
  color: #fff;
}

.quote-link:hover,
.btn-primary:hover,
.quote-form button:hover {
  background: var(--maroon-dark);
}

.hero {
  height: calc(100vh - 113px);
  min-height: 560px;
  background: #e7aa74;
  overflow: hidden;
}

.hero-art {
  height: 100%;
  background: #e7aa74;
  overflow: hidden;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--orange-soft);
}

.btn-secondary {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

.quote-band {
  margin-top: 0;
  position: relative;
  z-index: 2;
  background: var(--orange);
  padding: 32px 0;
}

.quote-panel {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 24px;
  align-items: end;
  padding: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.quote-panel h2,
.section h2 {
  margin: 0;
  color: var(--maroon-dark);
  line-height: 1.12;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

label {
  display: grid;
  gap: 6px;
  color: var(--maroon-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  background: #fffdf9;
  font: inherit;
}

.section {
  padding: 88px 0;
}

.intro {
  padding-top: 88px;
  background: var(--soft);
}

.split {
  justify-content: space-between;
  gap: 48px;
}

.split > * {
  flex: 1;
}

.split h2,
.section-heading h2,
.trust h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.split p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.service-grid,
.news-grid,
.location-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.news-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(95, 36, 48, 0.08);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 6px;
  background: #ffe0bd;
  color: var(--maroon);
  border: 1px solid rgba(95, 36, 48, 0.12);
  border-left: 4px solid var(--red);
  box-shadow: 0 5px 14px rgba(95, 36, 48, 0.1);
}

.icon-box svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.news-grid h3 {
  margin: 18px 0 8px;
  color: var(--maroon-dark);
  line-height: 1.2;
}

.service-card p,
.news-grid p {
  margin: 0 0 18px;
  color: var(--muted);
}

.service-card a,
.news-grid a,
.location-grid a {
  color: var(--green);
  font-weight: 800;
}

.blue-section {
  background: var(--maroon);
  color: #fff;
}

.blue-section h2,
.blue-section p {
  color: #fff;
}

.destination-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.destination-list a {
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 800;
}

.destination-list a:hover {
  background: var(--red);
}

.locations {
  background: var(--soft);
}

.destination-region {
  margin-top: 38px;
}

.destination-region:first-of-type {
  margin-top: 0;
}

.destination-region h3 {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin: 0 0 16px;
  padding: 0 18px;
  border-left: 6px solid var(--red);
  border-radius: 8px;
  background: var(--maroon);
  color: #fff7ec;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.location-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.location-grid a {
  padding: 18px;
  border-radius: 8px;
  background: #fffdf9;
  border-left: 5px solid var(--red);
  box-shadow: 0 8px 20px rgba(95, 36, 48, 0.08);
}

.trust-grid {
  align-items: flex-start;
  gap: 54px;
}

.trust-grid > * {
  flex: 1;
}

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

.check-list li {
  position: relative;
  padding: 18px 18px 18px 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 13px;
  height: 8px;
  border-left: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  transform: rotate(-45deg);
}

.news {
  background: var(--soft);
}

.news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-grid article p {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.page-hero {
  padding: 82px 0;
  background:
    linear-gradient(90deg, rgba(95, 36, 48, 0.94), rgba(95, 36, 48, 0.72)),
    url("easy-moving-brand.webp") center / cover;
  color: #fff8ef;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: #f6d6b2;
  font-size: 0.9rem;
  font-weight: 800;
}

.breadcrumb a {
  color: #fff8ef;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1;
}

.page-hero p {
  max-width: 680px;
  margin: 20px 0 0;
  font-size: 1.1rem;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.content-panel,
.sidebar-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: 0 8px 24px rgba(95, 36, 48, 0.08);
}

.content-panel {
  padding: 30px;
}

.content-panel h2,
.sidebar-panel h2,
.sitemap-group h2 {
  margin: 0 0 14px;
  color: var(--maroon-dark);
  line-height: 1.15;
}

.content-panel p,
.sidebar-panel p {
  color: var(--muted);
}

.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.placeholder-card {
  min-height: 140px;
  padding: 18px;
  border-radius: 8px;
  background: #ffe0bd;
  border-left: 5px solid var(--maroon);
}

.placeholder-card h3 {
  margin: 0 0 8px;
  color: var(--maroon-dark);
}

.placeholder-card p {
  margin: 0;
  color: var(--muted);
}

.sidebar-panel {
  padding: 22px;
  position: sticky;
  top: 18px;
}

.sidebar-panel a,
.sitemap-group a {
  color: var(--green);
  font-weight: 800;
}

.related-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

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

.europe-hero .hero-actions a,
.europe-cta a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 20px;
  background: var(--gold);
  color: var(--maroon-dark);
  font-weight: 900;
}

.europe-hero .hero-actions a + a {
  border: 1px solid rgba(255, 248, 239, 0.7);
  background: rgba(255, 248, 239, 0.13);
  color: #fff8ef;
}

.europe-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.europe-intro h2,
.european-destinations h2,
.europe-process h2,
.europe-cta h2 {
  margin: 0;
  color: var(--maroon-dark);
  line-height: 1.08;
}

.europe-intro p,
.european-destinations .section-lede,
.europe-region p,
.process-strip p,
.europe-cta p {
  color: var(--muted);
}

.europe-intro aside {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: 0 8px 24px rgba(95, 36, 48, 0.08);
}

.europe-intro aside h2 {
  font-size: 1.2rem;
}

.europe-intro ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.european-destinations {
  background: var(--soft);
}

.european-destinations .section-lede {
  max-width: 820px;
  margin-top: 14px;
}

.europe-region-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.europe-region {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: 0 8px 24px rgba(95, 36, 48, 0.08);
}

.europe-region-wide {
  grid-column: 1 / -1;
}

.europe-region h3 {
  margin: 0;
  color: var(--maroon-dark);
  font-size: 1.35rem;
}

.country-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.country-link-grid-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.country-link-grid a {
  display: flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(234, 210, 188, 0.95);
  border-radius: 6px;
  padding: 9px 12px;
  background: #fff8ef;
  color: var(--green);
  font-weight: 900;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.process-strip article {
  padding: 20px;
  border-radius: 8px;
  background: #ffe0bd;
  border-left: 5px solid var(--maroon);
}

.process-strip h3 {
  margin: 0 0 8px;
  color: var(--maroon-dark);
}

.process-strip p {
  margin: 0;
}

.europe-cta {
  background: var(--maroon);
  color: #fff8ef;
}

.europe-cta h2,
.europe-cta p {
  color: inherit;
}

.europe-cta p {
  max-width: 760px;
}


.sitemap-summary {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.summary-tile {
  padding: 18px;
  border-radius: 8px;
  background: var(--maroon);
  color: #fff8ef;
}

.summary-tile strong,
.summary-tile span {
  display: block;
}

.summary-tile strong {
  font-size: 1.8rem;
  line-height: 1;
}

.summary-tile span {
  margin-top: 8px;
  color: #f6d6b2;
  font-weight: 800;
}

.sitemap-groups {
  display: grid;
  gap: 20px;
}

.sitemap-group {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.sitemap-links {
  columns: 3 230px;
  column-gap: 26px;
}

.sitemap-links a {
  display: block;
  break-inside: avoid;
  margin: 0 0 9px;
  line-height: 1.35;
}

.blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.blog-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--maroon);
  color: #fff8ef;
  font-weight: 900;
}

.blog-chip:nth-child(2) {
  color: var(--green);
}

.blog-chip:nth-child(3) {
  color: var(--gold);
}

.blog-chip:nth-child(4) {
  color: var(--teal);
}

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

.blog-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: 0 8px 24px rgba(95, 36, 48, 0.08);
}

.blog-card small,
.post-meta {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 0;
  color: var(--maroon-dark);
  line-height: 1.15;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
}

.blog-card a {
  color: var(--green);
  font-weight: 900;
}

.post-body {
  max-width: 780px;
}

.post-body h2,
.post-body h3 {
  color: var(--maroon-dark);
  line-height: 1.16;
}

.post-body p,
.post-body li {
  color: var(--muted);
}

.post-body blockquote {
  margin: 28px 0;
  padding: 22px;
  border-left: 6px solid var(--maroon);
  border-radius: 8px;
  background: #ffe0bd;
  color: var(--maroon-dark);
  font-weight: 800;
}

.sanity-panel {
  margin-top: 28px;
  padding: 20px;
  border-radius: 8px;
  background: var(--maroon);
  color: #fff8ef;
}

.sanity-panel h2,
.sanity-panel p {
  color: inherit;
}

.sanity-panel code {
  color: var(--gold);
  font-weight: 900;
}

.uae-service {
  background: var(--surface);
}

.uae-service > section {
  padding: 76px 0;
}

.uae-service > section:first-child {
  padding: 86px 0;
  background:
    linear-gradient(90deg, rgba(95, 36, 48, 0.94), rgba(95, 36, 48, 0.72)),
    url("easy-moving-brand.webp") center / cover;
  color: #fff8ef;
}


.uae-service > section:nth-child(even) {
  background: var(--soft);
}

.uae-service > section > div {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.uae-service > section:first-child > div,
.uae-service #costs > div,
.uae-service #customs > div,
.uae-service #planning > div,
.uae-service > section:nth-of-type(2) > div,
.uae-service > section:nth-last-of-type(2) > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 400px);
  gap: 32px;
  align-items: start;
}

.uae-service h1,
.uae-service h2,
.uae-service h3 {
  color: var(--maroon-dark);
  line-height: 1.12;
}

.uae-service > section:first-child h1,
.uae-service > section:first-child h2,
.uae-service > section:first-child p,
.uae-service > section:first-child li {
  color: #fff8ef;
}

.uae-service h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  letter-spacing: 0;
}

.uae-service h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.uae-service h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.uae-service p,
.uae-service li,
.uae-service td {
  color: var(--muted);
}

.uae-service > section:first-child p:first-child,
.uae-service > section > div > p:first-child,
.uae-service > section > div > div > p:first-child {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.uae-service > section:first-child p:first-child {
  color: var(--orange-soft);
}

.uae-service > section:first-child div > div > p:not(:first-child) {
  max-width: 760px;
  font-size: 1.1rem;
}

.uae-service > section:first-child div > div > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.uae-service > section:first-child a,
.uae-service > section:last-child a,
.uae-service form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  background: var(--maroon);
  color: #fff;
  font-weight: 900;
}

.uae-service > section:first-child div > div > div a:nth-child(2) {
  background: rgba(255, 248, 239, 0.12);
  border: 2px solid rgba(255, 248, 239, 0.75);
}

.uae-service > section:first-child ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.uae-service > section:first-child li {
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(255, 248, 239, 0.12);
  color: #fff8ef;
  font-weight: 900;
}

.uae-service .destination-hero-image,
.uae-service .destination-feature-image {
  margin: 30px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 239, 0.24);
  border-radius: 8px;
  background: var(--maroon);
  box-shadow: 0 20px 46px rgba(23, 20, 20, 0.24);
}

.uae-service .destination-hero-image img,
.uae-service .destination-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.uae-service .destination-hero-image {
  max-width: 560px;
  aspect-ratio: 16 / 8.5;
}

.uae-service .destination-feature-image {
  display: grid;
  min-height: 340px;
  margin-bottom: 26px;
  border-color: rgba(116, 44, 56, 0.16);
  background: #fffdf9;
  box-shadow: 0 14px 34px rgba(95, 36, 48, 0.14);
}

.uae-service .destination-feature-image img {
  grid-area: 1 / 1;
  min-height: 340px;
}

.uae-service .destination-hero-image figcaption,
.uae-service .destination-feature-image figcaption {
  margin: 0;
  padding: 13px 16px;
  color: #fff8ef;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.uae-service .destination-feature-image figcaption {
  grid-area: 1 / 1;
  align-self: end;
  max-width: 560px;
  margin: 0 0 18px 18px;
  border-radius: 8px;
  background: rgba(95, 36, 48, 0.86);
  backdrop-filter: blur(3px);
}

.uae-service aside,
.uae-service article,
.uae-service details,
.uae-service table,
.uae-service > section:nth-of-type(6) div > div,
.uae-service > section:nth-of-type(7) div > div > div,
.uae-service > section:last-child div > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: 0 8px 24px rgba(95, 36, 48, 0.08);
}

.uae-service article,
.uae-service aside,
.uae-service details,
.uae-service > section:nth-of-type(6) div > div,
.uae-service > section:nth-of-type(7) div > div > div,
.uae-service > section:last-child div > div {
  padding: 24px;
}

.uae-service aside {
  position: sticky;
  top: 18px;
}

.uae-service form {
  display: grid;
  gap: 16px;
}

.uae-service #quote {
  border-top: 6px solid var(--orange);
}

.uae-service #quote h2,
.uae-service #quote p {
  color: var(--maroon-dark);
}

.uae-service #quote h2 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.uae-service #quote p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.uae-service #quote label {
  gap: 8px;
  color: var(--maroon-dark);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
}

.uae-service #quote input,
.uae-service #quote select,
.uae-service #quote textarea {
  min-height: 48px;
  border: 1px solid #e3c2a5;
  border-radius: 6px;
  background: #fffdf9;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  line-height: 1.35;
}

.uae-service #quote input,
.uae-service #quote select {
  padding: 0 13px;
}

.uae-service #quote textarea {
  padding: 13px;
}

.uae-service #quote input:focus,
.uae-service #quote select:focus,
.uae-service #quote textarea:focus {
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(116, 44, 56, 0.14);
  outline: 0;
}

.uae-service #quote button {
  width: 100%;
  min-height: 50px;
  margin-top: 2px;
  font-size: 1rem;
}

.uae-service textarea {
  min-height: 118px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  resize: vertical;
  font: inherit;
}

.uae-service #times > div > div > div,
.uae-service #customs > div > div > div {
  margin-top: 18px;
  padding: 18px;
  border-radius: 8px;
  background: #ffe0bd;
  color: var(--maroon-dark);
  font-weight: 800;
}

.uae-service section > div > div > div,
.uae-service #services > div > div,
.uae-service #process > div > div,
.uae-service #shipping > div > div,
.uae-service #destinations > div > div,
.uae-service > section:nth-of-type(10) > div > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.uae-service #process > div > div,
.uae-service #services > div > div {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.country-service > section:not(:first-child) > div,
.country-service #costs > div,
.country-service #customs > div,
.country-service #planning > div,
.country-service > section:nth-last-of-type(2) > div {
  display: block;
}

.country-service .country-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.country-service .country-table-wrap {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin-top: 24px;
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(95, 36, 48, 0.08);
}

.table-scroll-wrap {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
}

.table-scroll-wrap > table {
  width: 100%;
  min-width: 640px;
  margin-top: 0;
  border-collapse: collapse;
}

.table-scroll-wrap table th,
.table-scroll-wrap table td {
  word-break: break-word;
  white-space: normal;
}

.country-service .country-table-wrap table {
  margin-top: 0;
}

.country-service .europe-destination-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.country-service .region-link-panel {
  display: block;
  padding: 22px;
  border: 1px solid rgba(116, 44, 56, 0.16);
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: 0 8px 24px rgba(95, 36, 48, 0.08);
}

.country-service .region-link-panel h3 {
  margin-top: 0;
}

.country-service .region-link-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.country-service .region-link-panel a,
.country-service .region-link-panel span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(252, 138, 55, 0.18);
  color: var(--maroon);
  font-weight: 900;
  text-decoration: none;
}

.country-service .region-link-panel a:hover,
.country-service .region-link-panel a:focus-visible {
  background: var(--maroon);
  color: #fff8ef;
}

.country-service .region-link-panel span {
  opacity: 0.72;
}

.uae-service #shipping > div > div:last-of-type {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin-top: 30px;
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(95, 36, 48, 0.08);
}

.uae-service #shipping table {
  width: 100%;
  min-width: 820px;
  margin-top: 0;
  border-collapse: collapse;
  overflow: hidden;
  table-layout: fixed;
}

.uae-service .pack-guidance > div {
  max-width: 1180px;
}

.uae-service .pack-guidance h2 {
  max-width: 980px;
}

.uae-service .pack-guidance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 22px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(116, 44, 56, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(116, 44, 56, 0.07), rgba(240, 138, 59, 0.08));
}

.uae-service .pack-guidance-card {
  display: block;
  min-width: 0;
  padding: 26px;
  border: 1px solid rgba(234, 210, 188, 0.95);
  border-radius: 8px;
  background: #fffdfa;
  box-shadow: 0 14px 30px rgba(95, 36, 48, 0.08);
}

.uae-service .pack-guidance-card h3 {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(240, 138, 59, 0.35);
}

.uae-service .pack-guidance-card p {
  max-width: none;
  margin: 0;
}

.uae-service .pack-guidance-card p + p {
  margin-top: 14px;
}

.uae-service .pack-guidance-card ul {
  margin-top: 14px;
}

.country-service .pack-guidance-card-wide {
  grid-column: 1 / -1;
}

.country-service .pack-guidance-card-wide ul {
  columns: 2;
  column-gap: 38px;
  padding-left: 20px;
}

.country-service .pack-guidance-card-wide li {
  break-inside: avoid;
  margin-bottom: 8px;
}

.uae-service .pack-guidance-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.uae-service .pack-guidance-list li {
  position: relative;
  padding-left: 24px;
  line-height: 1.45;
}

.uae-service .pack-guidance-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(240, 138, 59, 0.14);
}

.uae-service th,
.uae-service td {
  padding: 19px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 0.98rem;
  line-height: 1.45;
}

.uae-service th:first-child,
.uae-service td:first-child {
  width: 20%;
  color: var(--maroon-dark);
  font-weight: 900;
}

.uae-service th:nth-child(2),
.uae-service td:nth-child(2) {
  width: 32%;
}

.uae-service th:nth-child(3),
.uae-service td:nth-child(3) {
  width: 22%;
}

.uae-service tr:last-child td {
  border-bottom: 0;
}

.uae-service th {
  background: var(--maroon);
  color: #fff8ef;
  font-weight: 900;
  line-height: 1.3;
}

.uae-service #faqs > div {
  max-width: 940px;
}

.uae-service #faqs > div > p:first-child,
.uae-service #faqs h2 {
  text-align: left;
}

.uae-service details {
  margin-top: 14px;
  padding: 0;
  overflow: hidden;
  border-left: 6px solid var(--orange);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.uae-service details[open] {
  border-left-color: var(--maroon);
}

.uae-service summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--maroon-dark);
  cursor: pointer;
  font-weight: 900;
  line-height: 1.3;
  list-style: none;
}

.uae-service summary::-webkit-details-marker {
  display: none;
}

.uae-service summary::after {
  content: "+";
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--maroon);
  color: #fff8ef;
  font-size: 1.15rem;
  line-height: 1;
}

.uae-service details[open] summary::after {
  content: "-";
}

.uae-service details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.uae-service a:not(.brand):not(.quote-link) {
  color: var(--green);
  font-weight: 900;
}

.uae-service > section:last-child {
  background: var(--orange);
}

.uae-service > section:last-child div > div {
  border-top: 6px solid var(--maroon);
}

.quote-page {
  background: var(--surface);
}

.quote-hero {
  padding: 82px 0;
  background:
    linear-gradient(90deg, rgba(95, 36, 48, 0.94), rgba(95, 36, 48, 0.68)),
    url("easy-moving-brand.webp") center / cover;
  color: #fff8ef;
}

.quote-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 390px);
  gap: 34px;
  align-items: end;
}

.quote-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #fff8ef;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.quote-hero p:not(.eyebrow) {
  max-width: 720px;
  color: #fff8ef;
  font-size: 1.15rem;
}

.quote-hero aside,
.quote-form-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: 0 12px 30px rgba(95, 36, 48, 0.12);
}

.quote-hero aside {
  padding: 24px;
  border-top: 6px solid var(--orange);
}

.quote-hero aside h2 {
  margin: 0 0 12px;
  color: var(--maroon-dark);
  font-size: 1.25rem;
}

.quote-hero aside ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
}

.quote-hero aside li {
  color: var(--muted);
  font-weight: 800;
}

.quote-form-section {
  padding: 76px 0;
}

.quote-form-wrap {
  max-width: 980px;
}

.full-quote-form {
  display: grid;
  gap: 22px;
}

.quote-request-mode {
  margin: 0 0 16px;
}

.quote-mode-block {
  transition: opacity 180ms ease;
}

.quote-mode-block[data-active="false"] {
  opacity: 0.42;
  pointer-events: none;
}

.quote-mode-block[data-active="false"] input,
.quote-mode-block[data-active="false"] select,
.quote-mode-block[data-active="false"] textarea {
  opacity: 0.55;
}

.quote-form-card {
  padding: 28px;
}

.quote-form-heading {
  margin-bottom: 22px;
}

.quote-form-heading h2 {
  margin: 0;
  color: var(--maroon-dark);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.12;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.address-fields__column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.full-quote-form label,
.full-quote-form legend {
  color: var(--maroon-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.full-quote-form input,
.full-quote-form select,
.full-quote-form textarea {
  min-height: 50px;
  border: 1px solid #d8c0aa;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

.full-quote-form input,
.full-quote-form select {
  padding: 0 14px;
}

.full-quote-form textarea {
  margin-top: 8px;
  padding: 14px;
  resize: vertical;
}

.full-quote-form input:focus,
.full-quote-form select:focus,
.full-quote-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240, 138, 59, 0.2);
  outline: 0;
}

.select-arrow {
  position: relative;
  display: block;
}

.select-arrow select {
  width: 100%;
  padding-right: 58px;
  appearance: none;
}

.select-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  background: var(--teal);
  pointer-events: none;
}

.select-arrow::before {
  content: "";
  position: absolute;
  right: 19px;
  bottom: 18px;
  z-index: 1;
  width: 11px;
  height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  pointer-events: none;
}

.inline-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 20px 0 0;
  padding: 0;
  border: 0;
}

.inline-options legend {
  flex: 0 0 100%;
  margin-bottom: 2px;
}

.inline-options label,
.checkbox-grid label,
.quote-consent label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.full-quote-form input[type="radio"],
.full-quote-form input[type="checkbox"] {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  accent-color: var(--orange);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  margin-bottom: 22px;
}

.quote-consent {
  display: grid;
  gap: 20px;
  border-top: 6px solid var(--orange);
}

.quote-consent button {
  min-height: 54px;
  border: 0;
  border-radius: 6px;
  background: var(--maroon);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
}

.quote-consent button:hover,
.quote-consent button:focus-visible {
  background: var(--maroon-dark);
}

.quote-submit-message {
  margin: 0;
  color: var(--green);
  font-weight: 900;
}

.quote-submit-message a {
  color: var(--maroon);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  padding: 58px 0;
  background: var(--charcoal);
  color: #f6d6b2;
}

.footer-grid {
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
}

.footer-grid > div {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.footer-grid > div:first-child {
  max-width: 360px;
}

.footer-brand .brand-mark {
  background: var(--orange);
  color: var(--maroon-dark);
}

.footer-brand strong {
  color: #fff;
}

.footer-brand small,
.footer-grid p {
  color: #e0b895;
}

.footer-grid h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1rem;
}

.footer-grid a {
  color: #f6d6b2;
}

.footer-grid a:hover {
  color: #fff;
}

@media (max-width: 980px) {
  .mobile-nav-toggle {
    display: inline-flex !important;
    grid-column: 3;
    grid-row: 1;
    order: initial;
    width: 42px !important;
    min-width: 42px;
  }

  .header-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    padding: 12px 0;
    column-gap: 8px;
    row-gap: 0;
  }

  .header-main > .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    overflow: hidden;
  }

  .header-main > .quote-link {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    min-height: 42px;
    padding: 0 14px;
    justify-content: center;
  }

  .main-nav {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    right: 0 !important;
    left: 0 !important;
    width: auto !important;
    z-index: 20;
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    padding: 14px;
    gap: 8px;
    background: var(--orange);
    border: 1px solid rgba(95, 36, 48, 0.25);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transform: translateY(-12px) scaleY(0.98);
    opacity: 0;
    pointer-events: none;
    max-height: calc(100dvh - 130px);
    overflow-y: auto;
    overflow-x: hidden;
    flex-basis: auto;
    visibility: hidden;
    transition: opacity 140ms ease, transform 140ms ease;
  }

  .mobile-nav-toggle-input:checked + .mobile-nav-toggle + .main-nav {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    pointer-events: auto;
    visibility: visible;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    pointer-events: auto;
    visibility: visible;
  }

  .main-nav a,
  .nav-item {
    width: 100%;
  }

  .main-nav > .has-mega {
    display: block;
    flex: 0 0 auto;
    min-height: 0;
    overflow: visible;
  }

  .main-nav > .has-mega .mega-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .main-nav > .has-mega .mega-menu {
    position: static !important;
    left: auto;
    top: auto;
    display: none;
    width: 100%;
    max-width: none;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .main-nav > .has-mega.is-open .mega-menu {
    display: flex !important;
    flex-direction: column;
  }

  .main-nav > .nav-blog {
    position: static !important;
    flex: 0 0 auto;
    clear: both;
    z-index: auto;
  }

  .main-nav a,
  .nav-item,
  .mega-toggle,
  .quote-link {
    justify-content: flex-start;
    min-height: 44px;
  }

  .main-nav a {
    border-radius: 7px;
  }

  .quote-panel,
  .quote-form,
  .service-grid,
  .location-grid,
  .news-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    height: auto;
    min-height: auto;
  }

  .hero-art {
    min-height: 58vh;
  }

  .quote-panel {
    align-items: start;
  }

  .quote-form {
    grid-column: 1 / -1;
  }

  .split,
  .trust-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .uae-service > section:first-child > div,
  .uae-service #costs > div,
  .uae-service #customs > div,
  .uae-service #planning > div,
  .uae-service > section:nth-of-type(2) > div,
  .uae-service > section:nth-last-of-type(2) > div {
    grid-template-columns: 1fr;
  }

  .uae-service aside {
    position: static;
  }

  .uae-service #services > div > div,
  .uae-service #process > div > div,
  .uae-service #shipping > div > div,
  .uae-service #destinations > div > div,
  .uae-service > section:nth-of-type(10) > div > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .table-scroll-wrap {
    width: 100%;
    margin-bottom: 18px;
  }

  .table-scroll-wrap > table {
    min-width: 680px;
  }
}

@media (max-width: 680px) {
  .europe-region-grid,
  .country-link-grid,
  .country-link-grid-wide {
    grid-template-columns: 1fr;
  }

  .europe-region {
    padding: 20px;
  }

  .europe-hero .hero-actions a,
  .europe-cta a {
    width: 100%;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .strip-inner {
    align-items: center;
    flex-direction: row;
    justify-content: center;
    padding: 6px 0;
  }

  .header-main {
    align-items: center;
    padding: 10px 0;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand strong {
    font-size: 0.9rem;
    white-space: nowrap;
  }

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

  .brand small {
    display: none;
  }

  .main-nav {
    top: calc(100% + 6px) !important;
    right: 0 !important;
    left: 0 !important;
    max-height: calc(100dvh - 120px);
    gap: 8px;
  }

  .has-mega {
    width: 100%;
  }

  .mega-toggle {
    width: 100%;
    justify-content: space-between;
    background: var(--maroon);
    color: var(--green);
  }

  .mega-toggle::after {
    border-color: var(--maroon-dark);
  }

  .mega-menu {
    position: relative !important;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
    display: none;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 6px 0 0;
    margin-top: 4px;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .has-mega.is-open .mega-menu {
    display: flex !important;
    flex-direction: column;
    position: static !important;
    float: none;
    height: auto;
  }

  .mega-column {
    padding: 12px;
    background: rgba(255, 248, 239, 0.55);
    border: 1px solid rgba(95, 36, 48, 0.18);
  }

  .mega-column h2 {
    margin: 0 0 4px;
    color: var(--maroon-dark);
    white-space: normal;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.86rem;
  }

  .mega-column a {
    min-height: 38px;
    border-radius: 6px;
    color: #3b2a26;
    background: transparent;
    padding: 8px 10px;
    align-items: flex-start;
  }

  .quote-link {
    width: auto;
    min-height: 40px;
    padding: 0 14px;
  }

  .hero-art {
    min-height: 56vh;
  }

  .hero-art img {
    object-position: 50% 50%;
  }

  .quote-band {
    margin-top: 0;
  }

  .quote-panel,
  .quote-form,
  .service-grid,
  .destination-list,
  .location-grid,
  .news-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    padding: 18px;
  }

  .section {
    padding: 64px 0;
  }

  .intro {
    padding-top: 64px;
  }

  .uae-service > section {
    padding: 58px 0;
  }

  .uae-service > section:first-child {
    padding: 58px 0;
  }

  .uae-service h1 {
    font-size: clamp(2.2rem, 12vw, 3.25rem);
  }

  .uae-service h2 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }

  .uae-service article,
  .uae-service aside,
  .uae-service details,
  .uae-service > section:nth-of-type(6) div > div,
  .uae-service > section:nth-of-type(7) div > div > div,
  .uae-service > section:last-child div > div {
    padding: 20px;
  }

  .uae-service #quote {
    padding: 22px;
  }

  .uae-service #services > div > div,
  .uae-service #process > div > div,
  .uae-service #shipping > div > div,
  .uae-service #destinations > div > div,
  .uae-service > section:nth-of-type(10) > div > div {
    grid-template-columns: 1fr;
  }

  .uae-service #shipping > div > div:last-of-type {
    overflow: visible;
    box-shadow: none;
    background: transparent;
  }

  .uae-service .pack-guidance-grid {
    gap: 14px;
    padding: 14px;
  }

  .uae-service .pack-guidance-card {
    padding: 20px;
  }

  .country-service .pack-guidance-card-wide ul {
    columns: 1;
  }

  .uae-service .destination-hero-image,
  .uae-service .destination-feature-image {
    margin-top: 22px;
  }

  .uae-service .destination-feature-image,
  .uae-service .destination-feature-image img {
    min-height: 260px;
  }

  .uae-service .destination-feature-image figcaption {
    max-width: calc(100% - 28px);
    margin: 0 14px 14px;
  }

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

  .country-service .europe-destination-groups {
    grid-template-columns: 1fr;
  }

  .country-service .country-table-wrap {
    overflow: visible;
    box-shadow: none;
    background: transparent;
  }

  .country-table-wrap table,
  .country-table-wrap tbody,
  .country-table-wrap tr,
  .country-table-wrap td {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .country-table-wrap table {
    border: 0;
    background: transparent;
    box-shadow: none;
    table-layout: auto;
  }

  .country-table-wrap thead {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .country-table-wrap tbody {
    display: grid;
    gap: 14px;
  }

  .country-table-wrap tr {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffdf9;
    box-shadow: 0 8px 20px rgba(95, 36, 48, 0.08);
  }

  .uae-service .country-table-wrap td,
  .country-table-wrap td {
    display: grid;
    grid-template-columns: minmax(112px, 38%) minmax(0, 1fr);
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    overflow-wrap: anywhere;
  }

  .country-table-wrap td::before {
    color: var(--maroon-dark);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .country-table-wrap td[data-label]::before {
    content: attr(data-label);
  }

  .country-table-wrap td:not([data-label]):nth-child(1)::before {
    content: "Service";
  }

  .country-table-wrap td:not([data-label]):nth-child(2)::before {
    content: "Usually suitable for";
  }

  .country-table-wrap td:not([data-label]):nth-child(3)::before {
    content: "Main benefit";
  }

  .country-table-wrap td:not([data-label]):nth-child(4)::before {
    content: "Main consideration";
  }

  .uae-service .country-table-wrap td:first-child,
  .country-table-wrap td:first-child {
    color: #fff8ef;
    background: var(--maroon);
  }

  .country-table-wrap td:first-child::before {
    color: #f6d6b2;
  }

  .country-table-wrap td:last-child {
    border-bottom: 0;
  }

  .uae-service #shipping table,
  .uae-service #shipping thead,
  .uae-service #shipping tbody,
  .uae-service #shipping tr,
  .uae-service #shipping td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .uae-service #shipping thead {
    display: none;
  }

  .uae-service #shipping table {
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .uae-service #shipping tr {
    margin-bottom: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffdf9;
    box-shadow: 0 8px 20px rgba(95, 36, 48, 0.08);
    overflow: hidden;
  }

  .uae-service #shipping td {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 14px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
  }

  .uae-service #shipping td::before {
    content: attr(data-label);
    color: var(--maroon-dark);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .uae-service #shipping td:first-child {
    width: 100%;
    background: var(--maroon);
    color: #fff8ef;
  }

  .uae-service #shipping td:first-child::before {
    color: #f6d6b2;
  }

  .uae-service #shipping td:last-child {
    border-bottom: 0;
  }

  .uae-service summary {
    align-items: flex-start;
    padding: 18px;
  }

  .uae-service details p {
    padding: 0 18px 18px;
  }

  .quote-hero {
    padding: 58px 0;
  }

  .quote-hero-grid,
  .form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .quote-form-section {
    padding: 58px 0;
  }

  .quote-form-card {
    padding: 22px;
  }

  .quote-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.3rem);
  }

  .inline-options {
    gap: 12px 18px;
  }
}


/* Homepage content refresh */
.home-hero {
  padding: 72px 0;
  background:
    linear-gradient(90deg, rgba(95, 36, 48, 0.96), rgba(95, 36, 48, 0.78)),
    url("easy-moving-brand.webp") center / cover;
  color: #fff8ef;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 42px;
  align-items: center;
}

.home-hero-copy h1 {
  max-width: 820px;
  margin: 0;
  color: #fff8ef;
  font-size: clamp(2.6rem, 5.7vw, 5.6rem);
  line-height: 0.98;
}

.home-hero-copy p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #ffe8d2;
  font-size: 1.08rem;
}

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

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-tags a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 6px;
  padding: 0 12px;
  background: rgba(255, 248, 239, 0.13);
  color: #fff8ef;
  font-weight: 900;
  font-size: 0.88rem;
}

.home-hero-media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 248, 239, 0.28);
  box-shadow: var(--shadow);
}

.home-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.copy-stack {
  display: grid;
  gap: 14px;
}

.copy-stack p {
  margin: 0;
}

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

.move-type-section,
.international-destinations,
.support-section {
  background: #fff8ef;
}

.move-type-grid,
.support-grid,
.faq-grid,
.home-region-grid {
  display: grid;
  gap: 18px;
}

.move-type-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.move-type-grid a,
.destination-region-card,
.support-grid article,
.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(95, 36, 48, 0.08);
}

.move-type-grid span,
.destination-region-card h3,
.faq-grid h3 {
  display: block;
  margin: 0 0 10px;
  color: var(--maroon-dark);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.2;
}

.move-type-grid p,
.destination-region-card p,
.support-grid p,
.faq-grid p {
  margin: 0;
  color: var(--muted);
}

.destination-list-dense {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.destination-list-dense a {
  min-height: 50px;
  padding: 12px 14px;
}

.home-region-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-page-photo {
  position: relative;
  margin: 38px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.home-page-photo-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 38px;
}

.home-page-photo-pair .home-page-photo {
  width: 100%;
  max-width: none;
  margin: 0;
}

.home-page-photo-crew {
  aspect-ratio: 4 / 3;
}

.home-page-photo-truck {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  aspect-ratio: 4 / 3;
}

.home-page-photo-bottom {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  aspect-ratio: 4 / 3;
}

.home-page-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-page-photo-truck img {
  object-position: center center;
}

.home-page-photo-bottom img {
  object-position: center center;
}

.home-page-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  max-width: 560px;
  padding: 12px 14px;
  border-radius: 6px;
  background: rgba(95, 36, 48, 0.9);
  color: #fff8ef;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.destination-region-card .country-link-grid {
  grid-template-columns: 1fr;
}

.process-strip-six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.support-grid h2 {
  margin: 0 0 14px;
  color: var(--maroon-dark);
  line-height: 1.12;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.support-grid .btn {
  margin-top: 22px;
}

.faq-section {
  background: var(--soft);
}

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

.home-final-cta {
  background: var(--maroon);
  color: #fff8ef;
  text-align: center;
}

.home-final-cta h2 {
  max-width: 780px;
  margin: 0 auto;
  color: #fff8ef;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.home-final-cta p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px auto 0;
  color: #ffe8d2;
}

.home-final-cta .btn {
  margin-top: 28px;
  background: var(--gold);
  color: var(--maroon-dark);
}

.lead-app {
  min-height: 100vh;
  background: #fff8ef;
}

.lead-app-hero {
  padding: 54px 0;
  background:
    linear-gradient(90deg, rgba(95, 36, 48, 0.96), rgba(95, 36, 48, 0.74)),
    url("easy-moving-brand.webp") center / cover;
  color: #fff8ef;
}

.lead-app .lead-app-hero > .container {
  width: 100%;
  margin: 0;
  padding-inline: 16px;
}

.lead-app-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 28px;
  align-items: end;
}

.lead-app-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff8ef;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.02;
}

.lead-app-hero p:not(.eyebrow) {
  max-width: 760px;
  color: #ffe8d2;
  font-size: 1.08rem;
}

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

.lead-stats article {
  padding: 18px;
  border: 1px solid rgba(255, 248, 239, 0.18);
  border-radius: 8px;
  background: rgba(255, 248, 239, 0.12);
}

.lead-stats span {
  display: block;
  color: #fff8ef;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.lead-stats p {
  margin: 8px 0 0;
  color: #f6d6b2;
  font-size: 0.86rem;
  font-weight: 900;
}

.lead-workspace {
  padding: 34px 0 58px;
}

.lead-app .lead-workspace > .container {
  width: 100%;
  margin: 0;
  padding-inline: 16px;
}

.lead-workspace-grid {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.lead-control-panel,
.lead-toolbar,
.lead-column {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: 0 8px 24px rgba(95, 36, 48, 0.08);
}

.lead-control-panel {
  position: sticky;
  top: 18px;
  padding: 16px;
}

.lead-control-panel h2 {
  margin: 0 0 18px;
  color: var(--maroon-dark);
  font-size: 1.5rem;
}

.lead-create-form,
.lead-create-form label {
  display: grid;
  gap: 9px;
}

.lead-create-form {
  gap: 10px;
}

.lead-create-form label,
.lead-toolbar label {
  color: var(--maroon-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.lead-create-form input,
.lead-create-form select,
.lead-create-form textarea,
.lead-toolbar input {
  width: 100%;
  min-height: 40px;
  border: 1px solid #e3c2a5;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.96rem;
}

.lead-create-form input,
.lead-create-form select,
.lead-toolbar input {
  padding: 0 10px;
}

.lead-create-form textarea {
  padding: 10px;
}

.lead-create-form button,
.lead-reset-button {
  cursor: pointer;
}

.lead-create-form button {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  background: var(--maroon);
  color: #fff8ef;
  font-weight: 900;
  font-size: 0.93rem;
}

.lead-board-wrap {
  min-width: 0;
  width: 100%;
}

.lead-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
  padding: 18px;
}

.lead-toolbar p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.lead-board {
  display: grid;
  grid-template-columns: repeat(6, minmax(300px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.lead-column {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 560px;
  overflow: hidden;
}

.lead-column header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
  background: var(--maroon);
}

.lead-column h2 {
  margin: 0;
  color: #fff8ef;
  font-size: 1rem;
  line-height: 1.2;
}

.lead-column header span {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--maroon-dark);
  font-weight: 900;
}

.lead-dropzone {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 500px;
  padding: 14px;
  background: #fff8ef;
}

.lead-dropzone.is-over {
  background: #ffe0bd;
  outline: 2px dashed var(--maroon);
  outline-offset: -8px;
}

.lead-card {
  padding: 14px;
  border: 1px solid rgba(116, 44, 56, 0.14);
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: 0 10px 24px rgba(95, 36, 48, 0.1);
  cursor: grab;
}

.lead-card.is-dragging {
  opacity: 0.58;
}

.lead-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.lead-card-actions {
  display: flex;
  gap: 8px;
  margin: 6px 0 10px;
}

.lead-card-actions button {
  min-height: 30px;
  border: 0;
  padding: 0 10px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
}

.lead-action-btn {
  background: var(--orange-soft);
  color: var(--maroon-dark);
}

.lead-action-delete {
  background: #e05f64;
  color: #fff;
}

.lead-card h3 {
  margin: 0;
  color: var(--maroon-dark);
  font-size: 1rem;
}

.lead-card-top span {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 900;
}

.lead-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.lead-card .lead-service {
  color: var(--maroon);
  font-weight: 900;
}

.lead-card .lead-submitted {
  margin-top: 10px;
  border-radius: 6px;
  padding: 7px 9px;
  background: #ffe2bf;
  color: var(--maroon-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.lead-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.lead-contact a {
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 900;
}

.lead-form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10px;
}

.lead-cancel-edit {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  background: var(--muted);
  color: #fff;
  padding: 0 10px;
  cursor: pointer;
  width: 100%;
  font-size: 0.86rem;
}

.lead-create-form button,
.lead-cancel-edit {
  width: 100%;
  min-width: 0;
}

.lead-notes {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  white-space: pre-line;
  overflow-wrap: anywhere;
}


/* Homepage responsive content refresh */
@media (max-width: 980px) {
  .lead-app .lead-app-hero > .container {
    padding-inline: 12px;
  }

  .lead-app .lead-workspace > .container {
    padding-inline: 12px;
  }

  .home-hero-grid,
  .service-grid-wide,
  .move-type-grid,
  .home-region-grid,
  .process-strip-six,
  .support-grid,
  .faq-grid,
  .lead-app-hero-grid,
  .lead-workspace-grid {
    grid-template-columns: 1fr;
  }

  .lead-control-panel {
    position: static;
  }

  .lead-board {
    grid-template-columns: repeat(6, minmax(240px, 1fr));
  }

  .home-hero {
    padding: 54px 0;
  }

  .home-hero-media {
    max-width: 620px;
  }

  .home-page-photo-truck,
  .home-page-photo-crew,
  .home-page-photo-bottom {
    max-width: none;
  }

  .home-page-photo-pair {
    grid-template-columns: 1fr;
  }

  .home-page-photo-crew {
    aspect-ratio: 4 / 3;
  }

  .home-page-photo-truck {
    aspect-ratio: 4 / 3;
  }

  .home-page-photo-bottom {
    aspect-ratio: 4 / 3;
  }

  .destination-list-dense {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .home-hero-copy h1 {
    font-size: clamp(2.25rem, 13vw, 3.2rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-tags a {
    width: 100%;
  }

  .destination-list-dense {
    grid-template-columns: 1fr;
  }

  .lead-stats,
  .lead-toolbar {
    grid-template-columns: 1fr;
  }

  .lead-control-panel {
    padding: 13px;
  }

  .lead-create-form {
    gap: 9px;
  }

  .lead-form-actions {
    gap: 8px;
  }

  .lead-create-form button,
  .lead-cancel-edit {
    min-height: 38px;
  }

  .lead-app-hero {
    padding: 46px 0;
  }
}

/* Gulf-to-UK return route pages */
.return-route-service > section:nth-of-type(2) > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 32px;
  align-items: start;
}

.return-route-service .country-toc h2 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.return-route-service .country-toc ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.return-route-service #process ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  counter-reset: return-move-step;
  list-style: none;
}

.return-route-service #process li {
  position: relative;
  min-width: 0;
  padding: 24px 24px 24px 70px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: 0 8px 24px rgba(95, 36, 48, 0.08);
  counter-increment: return-move-step;
}

.return-route-service #process li::before {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  content: counter(return-move-step);
  font-weight: 900;
}

.return-route-service #faqs details {
  margin-top: 12px;
  padding: 20px 22px;
}

.return-route-service #faqs summary {
  cursor: pointer;
  color: var(--maroon-dark);
  font-weight: 900;
}

.return-route-service #faqs details p {
  margin-bottom: 0;
}

.return-route-service > section:last-child > div {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: 0 8px 24px rgba(95, 36, 48, 0.08);
}

@media (max-width: 980px) {
  .return-route-service > section:nth-of-type(2) > div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .return-route-service #process ol {
    grid-template-columns: 1fr;
  }

  .return-route-service #process li {
    padding: 20px 20px 20px 62px;
  }

  .return-route-service #process li::before {
    top: 18px;
    left: 18px;
  }

  .return-route-service > section:last-child > div {
    padding: 24px;
  }
}
