:root {
  --bs-primary: #ff631d;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-gray: #6c757d;
  --bs-border-color: #dee2e6;
  --bs-font-sans-serif: Lato, Arial, sans-serif;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  color: #444;
  font-family: var(--bs-font-sans-serif);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

a {
  color: var(--bs-primary);
  font-weight: 700;
  text-decoration: underline;
}

a:hover {
  color: #868686;
}

img,
svg {
  vertical-align: middle;
}

.img-fluid {
  height: auto;
  max-width: 100%;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 100%;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(var(--bs-gutter-x) * -0.5);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-top: calc(var(--bs-gutter-y) * -1);
}

.row > * {
  flex-shrink: 0;
  margin-top: var(--bs-gutter-y);
  max-width: 100%;
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  width: 100%;
}

.col-10 { flex: 0 0 auto; width: 83.33333333%; }
.col-12 { flex: 0 0 auto; width: 100%; }

@media (min-width: 768px) {
  .col-md-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-md-5 { flex: 0 0 auto; width: 41.66666667%; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
  .col-md-7 { flex: 0 0 auto; width: 58.33333333%; }
  .col-md-8 { flex: 0 0 auto; width: 66.66666667%; }
}

@media (min-width: 992px) {
  .col-lg-3 { flex: 0 0 auto; width: 25%; }
  .col-lg-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-lg-5 { flex: 0 0 auto; width: 41.66666667%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-7 { flex: 0 0 auto; width: 58.33333333%; }
  .col-lg-8 { flex: 0 0 auto; width: 66.66666667%; }
  .col-lg-9 { flex: 0 0 auto; width: 75%; }
  .col-lg-10 { flex: 0 0 auto; width: 83.33333333%; }
}

@media (min-width: 1200px) {
  .col-xl-3 { flex: 0 0 auto; width: 25%; }
  .col-xl-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-xl-6 { flex: 0 0 auto; width: 50%; }
  .col-xl-8 { flex: 0 0 auto; width: 66.66666667%; }
  .col-xl-9 { flex: 0 0 auto; width: 75%; }
  .col-xl-11 { flex: 0 0 auto; width: 91.66666667%; }
}

.g-3,
.gx-3 { --bs-gutter-x: 1rem; }

.g-3,
.gy-3 { --bs-gutter-y: 1rem; }

.g-4,
.gx-4 { --bs-gutter-x: 1.5rem; }

.g-4,
.gy-4 { --bs-gutter-y: 1.5rem; }

@media (min-width: 992px) {
  .g-lg-4,
  .gx-lg-4 { --bs-gutter-x: 1.5rem; }

  .g-lg-4,
  .gy-lg-4 { --bs-gutter-y: 1.5rem; }

  .g-lg-5,
  .gx-lg-5 { --bs-gutter-x: 3rem; }

  .g-lg-5,
  .gy-lg-5 { --bs-gutter-y: 3rem; }
}

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }

@media (min-width: 768px) {
  .d-md-none { display: none !important; }
  .d-md-block { display: block !important; }
}

@media (min-width: 992px) {
  .d-lg-none { display: none !important; }
}

.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.align-items-center { align-items: center !important; }
.align-items-start { align-items: flex-start !important; }
.align-items-stretch { align-items: stretch !important; }

.position-relative { position: relative !important; }
.position-fixed { position: fixed !important; }
.bottom-0 { bottom: 0 !important; }
.start-0 { left: 0 !important; }
.end-0 { right: 0 !important; }
.overflow-hidden { overflow: hidden !important; }

.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }

.m-0 { margin: 0 !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

@media (min-width: 768px) {
  .mb-md-4 { margin-bottom: 1.5rem !important; }
}

.p-0 { padding: 0 !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.pt-3 { padding-top: 1rem !important; }
.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

@media (min-width: 576px) {
  .px-sm-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
}

@media (min-width: 768px) {
  .p-md-4 { padding: 1.5rem !important; }
  .p-md-5 { padding: 3rem !important; }
  .px-md-0 { padding-left: 0 !important; padding-right: 0 !important; }
}

@media (min-width: 992px) {
  .p-lg-4 { padding: 1.5rem !important; }
  .p-lg-5 { padding: 3rem !important; }
  .py-lg-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
}

.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }

.text-center { text-align: center !important; }
.text-start { text-align: left !important; }
.text-muted { color: #6c757d !important; }
.text-dark { color: #212529 !important; }
.text-white { color: #fff !important; }
.text-white-50 { color: rgba(255, 255, 255, 0.5) !important; }
.text-warning { color: #ffc107 !important; }
.text-danger { color: #dc3545 !important; }
.text-uppercase { text-transform: uppercase !important; }
.text-decoration-none { text-decoration: none !important; }

.fw-normal { font-weight: 400 !important; }
.fw-semibold { font-weight: 600 !important; }
.fw-bold { font-weight: 700 !important; }

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: inherit;
  font-family: Lato, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.h4 { font-size: calc(1.275rem + 0.3vw) !important; }
.h5 { font-size: 1.25rem !important; }
.h6 { font-size: 1rem !important; }

.fs-4 { font-size: calc(1.275rem + 0.3vw) !important; }
.fs-5 { font-size: 1.25rem !important; }
.small,
small { font-size: 0.875em; }
.lead { font-size: 1.25rem; font-weight: 300; }
.lh-1 { line-height: 1 !important; }
.w-6 { width: 1.5rem !important; }
.h-6 { height: 1.5rem !important; }

.bg-white { background-color: #fff !important; }
.bg-light { background-color: #f8f9fa !important; }
.bg-gray { background-color: #f8f8f8 !important; }
.bg-blue { background-color: #f1f5f9 !important; }
.bg-orange { background-color: #ffefe8 !important; }
.bg-hero,
.card-header.bg-hero { background-color: #ff631d; color: #fff; }

.border { border: 1px solid var(--bs-border-color) !important; }
.border-0 { border: 0 !important; }
.border-top { border-top: 1px solid var(--bs-border-color) !important; }

.rounded { border-radius: 0.25rem !important; }
.rounded-2 { border-radius: 0.5rem !important; }
.rounded-3 { border-radius: 0.75rem !important; }
.rounded-4 { border-radius: 1rem !important; }
.rounded-12 { border-radius: 12px !important; }
.rounded-circle { border-radius: 50% !important; }
.rounded-pill { border-radius: 50rem !important; }

.shadow-sm { box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }

.btn {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0.375rem 0.75rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
  user-select: none;
  vertical-align: middle;
}

.btn-success {
  background-color: #ff631d;
  border-color: #f96400;
  color: #fff;
}

.btn-success:hover,
.btn-success:focus {
  background-color: #f04800;
  border-color: #e85c00;
  color: #fff;
}

.btn-white-orange {
  background-color: #fff;
  border: 1px solid #ff631d;
  color: #ff631d;
}

.btn-white-orange:hover,
.btn-white-orange:focus {
  background-color: #ff631d;
  color: #fff;
}

.btn-outline-secondary {
  background-color: transparent;
  border-color: #6c757d;
  color: #6c757d;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
  background-color: #6c757d;
  color: #fff;
}

.btn-link {
  background-color: transparent;
  border: 0;
  color: var(--bs-primary);
  font-weight: 400;
  text-decoration: underline;
}

.btn-link:hover,
.btn-link:focus {
  color: #868686;
}

.btn-lg {
  font-size: 1.3125rem;
  padding: 0.5rem 1rem;
}

.badge {
  border-radius: 50rem;
  display: inline-block;
  font-size: 0.75em;
  font-weight: 400;
  line-height: 1;
  padding: 0.35em 0.65em;
}

.card {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow-wrap: break-word;
  position: relative;
}

.card-body {
  flex: 1 1 auto;
  padding: 1rem;
}

.card-header {
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  margin-bottom: 0;
  padding: 0.75rem 1rem;
}

.card-title {
  margin-bottom: 0.5rem;
}

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

.list-group {
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  padding-left: 0;
}

.list-group-flush {
  border-radius: 0;
}

.list-group-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
  display: block;
  padding: 0.5rem 1rem;
  position: relative;
  text-decoration: none;
}

.list-group-flush > .list-group-item {
  border-left-width: 0;
  border-right-width: 0;
}

.list-group-flush > .list-group-item:first-child {
  border-top-width: 0;
}

.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.accordion {
  overflow-anchor: none;
}

.accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.accordion-button {
  align-items: center;
  background-color: #fff;
  border: 0;
  color: #212529;
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  overflow-anchor: none;
  padding: 1rem 1.25rem;
  position: relative;
  text-align: left;
  width: 100%;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 99, 29, 0.25);
  outline: 0;
  z-index: 3;
}

.accordion-button:not(.collapsed) {
  background-color: #fff7f3;
  color: #cc4f17;
}

.accordion-body {
  padding: 1rem 1.25rem;
}

.collapse:not(.show) {
  display: none;
}

.homepage-banner {
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 3.5rem 0;
  position: relative;
}

.homepage-banner > .container,
.homepage-banner .row {
  position: relative;
  z-index: 1;
}

.homepage-banner h1 {
  font-family: Roboto, Lato, Arial, sans-serif;
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 500;
  margin: 0 0 0.75rem;
}

.homepage-banner h2 {
  font-family: Roboto, Lato, Arial, sans-serif;
  font-size: calc(1.325rem + 0.9vw);
  font-weight: 500;
}

.form-container .form-label {
  color: #fff;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  appearance: none;
  background: hsla(0, 0%, 100%, 0.95);
  border: 2px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #212529;
  display: block;
  font-size: 16px;
  line-height: 1.5;
  padding: 8px 15px;
  transition: all 0.3s ease;
  width: 100%;
}

.form-control {
  height: 54px;
}

.form-select {
  height: auto;
}

.form-control:focus,
.form-select:focus {
  background: #fff;
  border-color: #ff631d;
  box-shadow: 0 8px 15px rgba(255, 87, 34, 0.15);
  outline: none;
  transform: translateY(-1px);
}

.homepageInput::-webkit-input-placeholder,
.homepageInput::-moz-placeholder,
.homepageInput:-ms-input-placeholder,
.form-control::placeholder {
  color: #999;
}

@media (max-width: 767px) {
  .homepage-banner {
    background-position: 80% 20%;
    padding: 2.75rem 0;
  }

  .form-container {
    margin: 0 12px;
    padding: 20px;
  }

  .form-control,
  .form-select {
    font-size: 16px;
  }

  .form-control {
    height: 48px;
  }

  .btn-success {
    font-size: 16px;
    height: 48px;
  }
}

.backdrop-blur {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background-color: hsla(0, 0%, 100%, 0.15);
}

.cta-quote-wrapper {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.cta-quote-btn {
  background: #ff631d;
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #fff;
  display: inline-block;
  font-size: 1.23em;
  font-weight: 700;
  margin-top: 8px;
  max-width: 430px;
  padding: 16px 44px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  width: 100%;
}

.cta-quote-btn:hover,
.cta-quote-btn:focus {
  background: #ffefe8;
  color: #ff631d;
  text-decoration: none;
}

.final-cta-section {
  align-items: center;
  background: linear-gradient(90deg, #ff631d, #ff9800);
  border-top: 1px solid #ffb48a;
  box-shadow: 0 -2px 16px rgba(255, 87, 34, 0.07);
  display: flex;
  justify-content: center;
  padding: 54px 0;
  width: 100%;
}

.final-cta-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 0 auto;
  max-width: 700px;
  padding: 0 16px;
  width: 100%;
}

.final-cta-title {
  color: #fff;
  font-size: 2.1em;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.final-cta-btn {
  background: #fff;
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #ff631d;
  display: inline-block;
  font-size: 1.23em;
  font-weight: 700;
  margin-top: 8px;
  padding: 16px 44px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.final-cta-btn:hover,
.final-cta-btn:focus {
  background: #ff631d;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 700px) {
  .cta-quote-btn,
  .final-cta-btn {
    font-size: 1em;
    padding: 12px 18px;
  }

  .final-cta-container {
    max-width: 100%;
    padding: 0 6px;
  }

  .final-cta-title {
    font-size: 1.2em;
  }
}

.sec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff631d;
  margin-bottom: 8px;
}

.current-page-quote-form .form-label {
  color: #444 !important;
}


.clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.move-type-table .move-note {
  line-height: 1.35;
  max-width: 34rem;
}

.move-type-table .table-note-row td {
  padding-top: 0;
  border-top: 0;
}

.move-type-table .table-note-row small {
  display: block;
  padding: 0.25rem 0 0.5rem;
}

.area-group {
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.area-group h3 {
  letter-spacing: 0.02em;
}

.area-group p {
  color: #4b5563;
  line-height: 1.55;
}

.area-group a {
  color: #ff631d;
  font-weight: 700;
  text-decoration: none;
}

.area-group a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .area-group {
    padding: 1rem 0.75rem;
  }
}

@media (min-width: 992px) {
  .area-directory .col-lg-4:nth-child(-n + 3) .area-group {
    border-top: 0;
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .london-area-links .btn-white-orange {
    height: 56px;
    align-content: center;
  }
}

.house-hero-proof {
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.95rem;
  font-weight: 600;
}

.house-quote-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 18px;
}

.house-quote-card .form-label {
  font-weight: 600;
}

.house-quote-card .form-select {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 31, 53, 0.12);
  border-radius: 12px;
  box-shadow: none;
  color: #212529;
  font-size: 16px;
  line-height: 1.5;
  min-height: 54px;
  padding: 14px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.house-quote-card .form-select:focus {
  border-color: #ffb088;
  box-shadow: 0 0 0 3px rgba(255, 99, 29, 0.2);
  outline: none;
}

.simple-quote-panel {
  display: none;
}

#houseQuoteCard.is-simple .guided-quote-panel {
  display: none;
}

#houseQuoteCard.is-simple .simple-quote-panel {
  display: block;
}

.factor-card {
  transition: border-color 0.2s;
}

.factor-card:hover {
  border-color: #ff631d;
}

#stickyQuoteCta {
  z-index: 1030;
}
