/* ==========================================================================
   Orca Removals — page styles (House Removals product)
   Ocean-blue base with a warm coral accent so it reads distinctly from the
   Transport & Logistics product while staying in the same family.
   ========================================================================== */

.removals-page {
  background: #f5f9fc;
  color: #2d3a44;
}

.removals-page section {
  position: relative;
}

/* ---------- Shared section furniture ---------- */

.rm-section {
  padding: 5rem 0;
}

.rm-section--tight {
  padding: 3.5rem 0;
}

.rm-section--alt {
  background: #ffffff;
}

.rm-eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--removals-accent-dark);
  margin-bottom: 0.85rem;
}

.rm-section-title {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  font-weight: 700;
  color: var(--ocean-900);
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

.rm-section-sub {
  font-size: 1.02rem;
  color: #5d6b76;
  line-height: 1.7;
  max-width: 700px;
}

.rm-section-head {
  margin-bottom: 3rem;
}

.rm-section-head.text-center .rm-section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Hero ---------- */

.rm-hero {
  position: relative;
  overflow: hidden;
  padding: 9.5rem 0 5.5rem;
  background: linear-gradient(135deg, var(--ocean-950) 0%, var(--ocean-800) 48%, var(--ocean-600) 100%);
  color: #ffffff;
}

.rm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at 70% 30%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, #000 0%, transparent 72%);
  pointer-events: none;
}

.rm-hero .container {
  position: relative;
  z-index: 2;
}

.rm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(244, 162, 97, 0.16);
  border: 1px solid rgba(244, 162, 97, 0.45);
  color: #ffd9b8;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.rm-hero h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.13;
  margin-bottom: 1.25rem;
}

.rm-hero h1 .accent {
  background: linear-gradient(120deg, var(--removals-accent) 0%, #ffd0a8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rm-hero-lead {
  font-size: 1.1rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 2rem;
  max-width: 560px;
}

.btn-removals {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-decoration: none;
  background: linear-gradient(135deg, var(--removals-accent) 0%, var(--removals-accent-dark) 100%);
  color: #ffffff;
  font-weight: 700;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.9rem;
  box-shadow: 0 12px 26px rgba(231, 111, 81, 0.34);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-removals:hover,
.btn-removals:focus {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(231, 111, 81, 0.42);
}

.btn-removals-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 0.8rem 1.8rem;
  transition: all 0.25s ease;
}

.btn-removals-ghost:hover,
.btn-removals-ghost:focus {
  background: rgba(255, 255, 255, 0.16);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-3px);
}

.rm-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.rm-hero-proof-item .num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.rm-hero-proof-item .cap {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

/* ---------- Hero visual: a stylised quote/job card stack ---------- */

.rm-hero-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rm-quote-card {
  width: 100%;
  max-width: 400px;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.5rem;
  color: #2d3a44;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
  position: relative;
  z-index: 3;
  animation: rmFloat 6s ease-in-out infinite;
}

@keyframes rmFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.rm-quote-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.9rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #eef2f5;
}

.rm-quote-ref {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8d9aa5;
}

.rm-quote-chip {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(38, 222, 129, 0.16);
  color: #1a9c5c;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rm-quote-route {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.15rem;
}

.rm-quote-point {
  flex: 1;
  min-width: 0;
}

.rm-quote-point .lbl {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9aa6b1;
  font-weight: 700;
  display: block;
}

.rm-quote-point .val {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ocean-900);
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rm-quote-arrow {
  color: var(--removals-accent-dark);
  flex-shrink: 0;
}

.rm-quote-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.15rem;
}

.rm-quote-meta div {
  background: #f4f8fb;
  border-radius: 10px;
  padding: 0.6rem 0.55rem;
  text-align: center;
}

.rm-quote-meta .k {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9aa6b1;
  font-weight: 700;
}

.rm-quote-meta .v {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ocean-800);
}

.rm-quote-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 0.9rem;
  border-top: 1px dashed #dde5ec;
}

.rm-quote-total .lbl {
  font-size: 0.8rem;
  color: #6c7a85;
  font-weight: 600;
}

.rm-quote-total .amt {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--removals-accent-dark);
}

/* stacked ghost cards behind */
.rm-quote-ghost {
  position: absolute;
  width: 100%;
  max-width: 400px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  height: 240px;
}

.rm-quote-ghost.one {
  transform: translateY(26px) scale(0.94);
  z-index: 2;
}

.rm-quote-ghost.two {
  transform: translateY(50px) scale(0.88);
  z-index: 1;
}

/* floating pills around the card */
.rm-float-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ocean-900);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
  z-index: 4;
  animation: rmFloat 5s ease-in-out infinite;
}

.rm-float-pill i {
  color: var(--removals-accent-dark);
}

.rm-float-pill.p1 {
  top: 6%;
  left: -4%;
  animation-delay: 0.6s;
}

.rm-float-pill.p2 {
  bottom: 10%;
  right: -3%;
  animation-delay: 1.4s;
}

/* ---------- Pain points ---------- */

.rm-pain {
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(1, 42, 74, 0.07);
  border-left: 4px solid var(--removals-accent);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 8px 22px rgba(1, 42, 74, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rm-pain:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(1, 42, 74, 0.1);
}

.rm-pain h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ocean-900);
  margin-bottom: 0.5rem;
}

.rm-pain p {
  font-size: 0.9rem;
  color: #64727d;
  margin: 0;
  line-height: 1.65;
}

.rm-pain-icon {
  color: var(--removals-accent-dark);
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
}

/* ---------- Feature grid ---------- */

.rm-feature {
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(1, 42, 74, 0.07);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  box-shadow: 0 10px 28px rgba(1, 42, 74, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.rm-feature:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 162, 97, 0.5);
  box-shadow: 0 22px 46px rgba(1, 42, 74, 0.13);
}

.rm-feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--ocean-600) 0%, var(--ocean-800) 100%);
  box-shadow: 0 10px 22px rgba(1, 79, 134, 0.28);
  margin-bottom: 1.25rem;
}

/* Alternate the icon colour down the grid; the cards sit inside .col-* wrappers,
   so the nth-child has to be applied to the column, not the card. */
[class*="col-"]:nth-child(even) .rm-feature-icon {
  background: linear-gradient(135deg, var(--removals-accent) 0%, var(--removals-accent-dark) 100%);
  box-shadow: 0 10px 22px rgba(231, 111, 81, 0.3);
}

.rm-feature h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ocean-900);
  margin-bottom: 0.7rem;
}

.rm-feature p {
  font-size: 0.92rem;
  color: #64727d;
  line-height: 1.68;
  margin-bottom: 1rem;
}

.rm-feature ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rm-feature ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.87rem;
  color: #4c5a65;
  padding: 0.22rem 0;
}

.rm-feature ul li i {
  color: #26de81;
  font-size: 0.78rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

/* ---------- Split / deep-dive blocks ---------- */

.rm-split-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
}

.rm-split-list li {
  display: flex;
  gap: 1rem;
  padding: 0.85rem 0;
}

.rm-split-list li + li {
  border-top: 1px solid rgba(1, 42, 74, 0.07);
}

.rm-split-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(244, 162, 97, 0.14);
  color: var(--removals-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rm-split-list h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ocean-900);
  margin-bottom: 0.25rem;
}

.rm-split-list p {
  font-size: 0.9rem;
  color: #64727d;
  margin: 0;
  line-height: 1.62;
}

/* Mock UI panel used in the split sections */
.rm-mock {
  background: linear-gradient(135deg, var(--ocean-900) 0%, var(--ocean-700) 100%);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 24px 52px rgba(1, 42, 74, 0.24);
}

.rm-mock-bar {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.15rem;
}

.rm-mock-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.rm-mock-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  margin-bottom: 0.7rem;
}

.rm-mock-row:last-child {
  margin-bottom: 0;
}

.rm-mock-avatar {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.85rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--ocean-500) 0%, var(--ocean-700) 100%);
}

.rm-mock-row:nth-child(odd) .rm-mock-avatar {
  background: linear-gradient(135deg, var(--removals-accent) 0%, var(--removals-accent-dark) 100%);
}

.rm-mock-text {
  flex: 1;
  min-width: 0;
}

.rm-mock-text .t {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ocean-900);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rm-mock-text .s {
  display: block;
  font-size: 0.74rem;
  color: #7d8a95;
}

.rm-mock-tag {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.26rem 0.6rem;
  border-radius: 999px;
  flex-shrink: 0;
}

.rm-mock-tag.ok {
  background: rgba(38, 222, 129, 0.16);
  color: #1a9c5c;
}

.rm-mock-tag.warn {
  background: rgba(244, 162, 97, 0.2);
  color: #c2562f;
}

.rm-mock-tag.info {
  background: rgba(44, 125, 160, 0.16);
  color: var(--ocean-600);
}

/* ---------- Steps ---------- */

.rm-steps {
  counter-reset: rmstep;
}

.rm-step {
  height: 100%;
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 2.75rem 1.6rem 1.75rem;
  border: 1px solid rgba(1, 42, 74, 0.07);
  box-shadow: 0 10px 26px rgba(1, 42, 74, 0.06);
}

.rm-step::before {
  counter-increment: rmstep;
  content: counter(rmstep);
  position: absolute;
  top: -22px;
  left: 1.6rem;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--ocean-600) 0%, var(--ocean-900) 100%);
  box-shadow: 0 10px 22px rgba(1, 42, 74, 0.28);
}

.rm-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ocean-900);
  margin-bottom: 0.55rem;
}

.rm-step p {
  font-size: 0.9rem;
  color: #64727d;
  line-height: 1.66;
  margin: 0;
}

/* ---------- Who it's for ---------- */

.rm-who {
  height: 100%;
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: 18px;
  background: linear-gradient(160deg, #ffffff 0%, #f2f7fb 100%);
  border: 1px solid rgba(1, 42, 74, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rm-who:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(1, 42, 74, 0.12);
}

.rm-who i {
  font-size: 2rem;
  color: var(--ocean-600);
  margin-bottom: 0.9rem;
}

.rm-who h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ocean-900);
  margin-bottom: 0.4rem;
}

.rm-who p {
  font-size: 0.85rem;
  color: #6c7a85;
  margin: 0;
  line-height: 1.6;
}

/* ---------- Testimonial ---------- */

.rm-quote-block {
  background: linear-gradient(135deg, var(--ocean-900) 0%, var(--ocean-700) 100%);
  border-radius: 22px;
  padding: 3rem;
  color: #ffffff;
  box-shadow: 0 22px 50px rgba(1, 42, 74, 0.22);
}

.rm-quote-block .stars {
  color: #ffc857;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.rm-quote-block blockquote {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.65;
  font-weight: 500;
  margin: 0 0 1.5rem;
}

.rm-quote-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.rm-quote-author .who {
  font-weight: 700;
  font-size: 0.95rem;
}

.rm-quote-author .role {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.rm-quote-author-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(244, 162, 97, 0.22);
  border: 1px solid rgba(244, 162, 97, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--removals-accent);
  flex-shrink: 0;
}

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

.rm-faq .accordion-item {
  border: 1px solid rgba(1, 42, 74, 0.09);
  border-radius: 14px !important;
  margin-bottom: 0.85rem;
  overflow: hidden;
  background: #ffffff;
}

.rm-faq .accordion-button {
  font-weight: 700;
  font-size: 1rem;
  color: var(--ocean-900);
  background: #ffffff;
  padding: 1.15rem 1.35rem;
}

.rm-faq .accordion-button:not(.collapsed) {
  background: rgba(1, 79, 134, 0.05);
  color: var(--ocean-700);
  box-shadow: none;
}

.rm-faq .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(1, 79, 134, 0.14);
}

.rm-faq .accordion-body {
  font-size: 0.93rem;
  color: #5d6b76;
  line-height: 1.72;
  padding: 0 1.35rem 1.3rem;
}

/* ---------- Final CTA ---------- */

.rm-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--ocean-950) 0%, var(--ocean-700) 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rm-cta::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 780px;
  height: 780px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 162, 97, 0.16) 0%, rgba(244, 162, 97, 0) 62%);
  pointer-events: none;
}

.rm-cta .container {
  position: relative;
  z-index: 2;
}

.rm-cta h2 {
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.rm-cta p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 2.25rem;
}

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

@media (max-width: 991.98px) {
  .rm-hero {
    padding: 8rem 0 4rem;
  }

  .rm-hero-visual {
    min-height: 360px;
    margin-top: 3rem;
  }

  .rm-float-pill.p1 {
    left: 0;
  }

  /* Clear of the quote total, which sits close to the card edge once stacked. */
  .rm-float-pill.p2 {
    right: 0;
    bottom: -0.75rem;
  }
}

@media (max-width: 575.98px) {
  .rm-section {
    padding: 3.5rem 0;
  }

  .rm-quote-block {
    padding: 2rem 1.5rem;
  }

  .rm-hero-proof {
    gap: 1.25rem;
  }

  .rm-float-pill {
    font-size: 0.7rem;
    padding: 0.45rem 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rm-quote-card,
  .rm-float-pill {
    animation: none;
  }

  .rm-feature,
  .rm-pain,
  .rm-who {
    transition: none;
  }
}
