/* Early Bird Movers - ebmovers.com
   Palette taken from the original logo and the original site CSS:
     bird blue   #3cb4fc   (sampled from ebmovers-logo.png)
     cap orange  #fc900c   (sampled from ebmovers-logo.png)
     box brown   #a83c00   (sampled from ebmovers-logo.png)
     button gold #f8d43b   with BLACK text - the old site's button style
     check mark  #ee6023   the old site's bullet colour
   Hand-written static CSS. No framework, no build step, no dependencies. */

:root {
  --blue: #3cb4fc;
  --blue-deep: #0a86cf;
  --blue-ink: #075a8c;
  --sky-pale: #e4f0f0;
  --sky-tint: #f2fafe;
  --gold: #f8d43b;
  --gold-deep: #e8bf14;
  --orange: #fc900c;
  --check: #ee6023;
  --brown: #a83c00;
  --ink: #1d1d1d;
  --ink-soft: #55606b;
  --white: #ffffff;
  --line: #d8e6ee;
  --shadow: 0 2px 10px rgba(7, 90, 140, 0.10);
  --shadow-lg: 0 10px 30px rgba(7, 90, 140, 0.16);
  --radius: 5px;
  --wrap: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--blue-ink);
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--blue-ink);
  color: #fff;
  padding: 12px 18px;
  z-index: 999;
}

.skip-link:focus {
  left: 8px;
  top: 8px;
}

/* ---------- Top call bar ---------- */

.topbar {
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}

.topbar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
  padding-bottom: 8px;
}

.topbar a {
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}

.topbar a:hover {
  text-decoration: underline;
}

.topbar .tb-note {
  color: #eaf7ff;
  font-weight: 400;
}

/* ---------- Header / nav ---------- */

.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand img {
  width: 92px;
  height: auto;
  flex: none;
}

.brand-text {
  line-height: 1.15;
}

.brand-name {
  display: block;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--blue-ink);
}

.brand-tag {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--check);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  padding: 9px 13px;
  border-radius: var(--radius);
}

.nav a:hover {
  background: var(--sky-tint);
  color: var(--blue-ink);
}

.nav a.current {
  background: var(--blue);
  color: var(--white);
}

/* ---------- Buttons - the old site's style: gold with black text ---------- */

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
  text-align: center;
  border: 4px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.btn-call {
  background: var(--gold);
  color: #000000;
  box-shadow: var(--shadow);
}

.btn-call:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-outline {
  background: var(--white);
  color: var(--blue-ink);
  border-color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

/* ---------- Hero - sky with clouds, matching the logo ---------- */

.hero {
  position: relative;
  background: linear-gradient(180deg, #7fd0ff 0%, var(--blue) 55%, #8fd8ff 100%);
  color: var(--white);
  padding: 66px 0 80px;
  overflow: hidden;
}

/* soft cloud shapes, drawn in CSS to match the logo motif */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.hero::before {
  width: 260px;
  height: 260px;
  top: -110px;
  right: -50px;
  box-shadow: -120px 60px 0 -40px rgba(255, 255, 255, 0.45);
}

.hero::after {
  width: 200px;
  height: 200px;
  bottom: -120px;
  left: -60px;
  box-shadow: 130px 40px 0 -50px rgba(255, 255, 255, 0.4);
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: 45px;
  line-height: 1.12;
  letter-spacing: -0.8px;
  max-width: 16ch;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(7, 90, 140, 0.35);
}

.hero p.lede {
  font-size: 20px;
  margin: 0 0 30px;
  color: #ffffff;
  max-width: 54ch;
  text-shadow: 0 1px 5px rgba(7, 90, 140, 0.3);
}

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

.hero .btn-outline {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--white);
  color: var(--blue-ink);
}

.hero .btn-outline:hover {
  background: var(--white);
  color: var(--blue-ink);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 2px solid rgba(255, 255, 255, 0.45);
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.hero-badges span {
  white-space: nowrap;
}

/* ---------- Page banner (inner pages) ---------- */

.page-banner {
  position: relative;
  background: linear-gradient(180deg, #7fd0ff 0%, var(--blue) 100%);
  color: var(--white);
  padding: 42px 0 40px;
  overflow: hidden;
}

.page-banner::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  top: -100px;
  right: 6%;
  box-shadow: -110px 50px 0 -45px rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.page-banner .wrap {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  margin: 0 0 8px;
  font-size: 37px;
  letter-spacing: -0.6px;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(7, 90, 140, 0.35);
}

.page-banner p {
  margin: 0;
  font-size: 19px;
  color: #ffffff;
  max-width: 60ch;
  text-shadow: 0 1px 5px rgba(7, 90, 140, 0.3);
}

/* ---------- Sections ---------- */

section {
  padding: 58px 0;
}

section.alt {
  background: var(--sky-tint);
}

.section-head {
  margin-bottom: 32px;
}

.section-head.center {
  text-align: center;
}

h2 {
  font-size: 33px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0 0 12px;
  color: var(--blue-ink);
}

h3 {
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--blue-ink);
}

.section-head p {
  margin: 0;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 62ch;
}

.section-head.center p {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Rate cards ---------- */

.rates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.rate-card {
  background: var(--white);
  border: 2px solid var(--line);
  border-top: 6px solid var(--blue);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--shadow);
}

.rate-card.best {
  border-top-color: var(--gold);
}

.rate-days {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--check);
  margin: 0 0 10px;
}

.rate-price {
  font-size: 46px;
  font-weight: 800;
  color: var(--blue-ink);
  line-height: 1;
  letter-spacing: -1.5px;
}

.rate-price .per {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0;
}

.rate-note {
  margin: 12px 0 0;
  font-size: 15px;
  color: var(--ink-soft);
}

.rate-foot {
  margin-top: 22px;
  font-size: 15px;
  color: var(--ink-soft);
  text-align: center;
}

/* ---------- Card grids ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
}

section.alt .card {
  border-color: #cfe6f2;
}

.card p:last-child {
  margin-bottom: 0;
}

.card-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
}

/* ---------- Included list - orange tick, like the old site ---------- */

.checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 10px 28px;
}

.checks li {
  position: relative;
  padding-left: 36px;
  font-size: 17px;
}

.checks li::before {
  content: "\2714";
  position: absolute;
  left: 0;
  top: -3px;
  color: var(--check);
  font-size: 26px;
  line-height: 1.3;
}

/* ---------- FAQ ---------- */

.faq {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  padding: 17px 22px;
  font-weight: 700;
  font-size: 18px;
  color: var(--blue-ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.faq summary::after {
  content: "+";
  font-size: 28px;
  font-weight: 400;
  color: var(--check);
  line-height: 1;
  flex: none;
}

.faq[open] summary::after {
  content: "-";
}

.faq summary:hover {
  background: var(--sky-tint);
}

.faq .faq-body {
  padding: 0 22px 20px;
  color: var(--ink-soft);
}

.faq .faq-body p:first-child {
  margin-top: 0;
}

.faq .faq-body p:last-child {
  margin-bottom: 0;
}

/* ---------- Contact / form ---------- */

.contact-cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
}

.info-block {
  margin-bottom: 26px;
}

.info-block h3 {
  margin-bottom: 4px;
}

.info-block p {
  margin: 0;
  color: var(--ink-soft);
}

.info-block a.big {
  font-weight: 800;
  font-size: 24px;
  color: var(--blue-ink);
  text-decoration: none;
}

.info-block a.big:hover {
  text-decoration: underline;
}

form.quote {
  background: var(--sky-tint);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--blue-ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  font-family: inherit;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #b9d5e4;
  border-radius: var(--radius);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(60, 180, 252, 0.45);
  border-color: var(--blue);
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-note {
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--ink-soft);
  text-align: center;
}

/* ---------- Service area ---------- */

.area-list {
  columns: 3;
  column-gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: var(--ink-soft);
}

.area-list li {
  break-inside: avoid;
  padding: 3px 0;
}

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  background: linear-gradient(180deg, var(--blue) 0%, #7fd0ff 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  bottom: -130px;
  left: 4%;
  box-shadow: 130px 40px 0 -55px rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.cta-band .wrap {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: var(--white);
  text-shadow: 0 2px 8px rgba(7, 90, 140, 0.3);
}

.cta-band p {
  font-size: 19px;
  color: #ffffff;
  max-width: 56ch;
  margin: 0 auto 28px;
  text-shadow: 0 1px 5px rgba(7, 90, 140, 0.25);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.cta-band .btn-outline {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--white);
  color: var(--blue-ink);
}

.cta-band .btn-outline:hover {
  background: var(--white);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--blue-ink);
  color: #d5ecf8;
  font-size: 15px;
  padding: 46px 0 26px;
  border-top: 6px solid var(--gold);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-logo {
  width: 84px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  padding: 4px;
}

.site-footer h4 {
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  margin: 0 0 14px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  padding: 4px 0;
}

.site-footer a {
  color: #d5ecf8;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #a9cfe4;
}

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

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .contact-cols {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .area-list {
    columns: 2;
  }
}

@media (max-width: 780px) {
  .site-header .wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .nav {
    justify-content: flex-start;
  }
  .nav a {
    padding: 8px 10px;
    font-size: 14px;
  }
  .brand img {
    width: 62px;
  }
  .hero {
    padding: 46px 0 54px;
  }
  .hero h1 {
    font-size: 33px;
  }
  .hero p.lede {
    font-size: 18px;
  }
  .page-banner h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 26px;
  }
  .btn {
    width: 100%;
    font-size: 19px;
  }
  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .field-row {
    grid-template-columns: 1fr;
  }
  .area-list {
    columns: 1;
  }
  body {
    font-size: 16px;
  }
}
