/* ==========================================================================
   Crown Relocations — Stylesheet
   Strictly following CR_brandbook.pdf & Design Guidelines
   ========================================================================== */

:root {
  /* Brand Colors from CR_brandbook.pdf */
  --cr-blue: #1E3E93;        /* Primary Deep Blue (60%) */
  --cr-blue-dark: #142B68;   /* Deep Blue Shade */
  --cr-cyan: #13B5EA;        /* Secondary Cyan (30%) */
  --cr-cyan-light: #E7F7FD;  /* Light Cyan Tint */
  --cr-yellow: #EEB111;      /* Accent Yellow (10%) */
  --cr-yellow-hover: #D89F0A;
  
  /* Neutral Palette */
  --cr-dark: #1A1F2C;
  --cr-text: #333C4E;
  --cr-muted: #64748B;
  --cr-light-gray: #F4F6F9;
  --cr-border: #E2E8F0;
  --cr-white: #FFFFFF;
  --cr-whatsapp: #25D366;
  --cr-whatsapp-dark: #1EBE5D;
  
  /* Typography */
  --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing & Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 6px 18px rgba(30, 62, 147, 0.08);
  --shadow-lg: 0 12px 32px rgba(30, 62, 147, 0.14);
}

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

html {
  font-family: var(--font-family);
  font-size: 16px;
  color: var(--cr-text);
  background-color: var(--cr-white);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.max-w-4xl {
  max-width: 860px;
}

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

.text-cyan {
  color: var(--cr-cyan);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ==========================================================================
   Buttons & UI Tokens
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-accent {
  background-color: var(--cr-yellow);
  color: #111827;
}

.btn-accent:hover {
  background-color: var(--cr-yellow-hover);
  box-shadow: 0 4px 14px rgba(238, 177, 17, 0.35);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--cr-border);
  color: var(--cr-muted);
}

.btn-outline:hover {
  background-color: var(--cr-light-gray);
  color: var(--cr-dark);
}

.btn-whatsapp {
  background-color: var(--cr-whatsapp);
  color: #FFFFFF;
}

.btn-whatsapp:hover {
  background-color: var(--cr-whatsapp-dark);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-link {
  color: var(--cr-blue);
  font-weight: 700;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-link:hover {
  color: var(--cr-cyan);
  text-decoration: underline;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.flex-1 {
  flex: 1;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.top-bar {
  background-color: var(--cr-blue-dark);
  color: #E2E8F0;
  font-size: 0.8125rem;
  padding: 8px 0;
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.8);
}

.top-bar__contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar__contact .divider {
  opacity: 0.3;
}

.top-bar__contact a:hover {
  color: var(--cr-cyan);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #4ADE80;
  font-weight: 600;
}

.site-header {
  background-color: var(--cr-white);
  border-bottom: 1px solid var(--cr-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--cr-dark);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--cr-blue);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--cr-blue) 0%, var(--cr-blue-dark) 100%);
  color: var(--cr-white);
  padding: 64px 0 80px 0;
  overflow: visible;
  isolation: isolate;
  z-index: 2;
}

/* Crown Brand Arrow Motif (CR_brandbook Section 5.0) */
.hero-arrow-shape {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 540px;
  height: 430px;
  background: url("crown-arrow.svg") no-repeat center center / contain;
  opacity: 0.12;
  pointer-events: none;
  z-index: -1;
}

/* Reusable Varied Subtle Arrow Watermarks (CR_brandbook Section 5.0) */
.section-arrow-right {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.section-arrow-right::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 360px;
  height: 288px;
  background: url("crown-arrow.svg") no-repeat center center / contain;
  opacity: 0.05;
  pointer-events: none;
  z-index: -1;
}

.section-arrow-left {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.section-arrow-left::before {
  content: "";
  position: absolute;
  left: -60px;
  top: 10%;
  width: 320px;
  height: 256px;
  background: url("crown-arrow.svg") no-repeat center center / contain;
  filter: hue-rotate(15deg) brightness(0.7);
  opacity: 0.045;
  pointer-events: none;
  z-index: -1;
}

.section-arrow-center {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.section-arrow-center::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 480px;
  height: 384px;
  background: url("crown-arrow.svg") no-repeat center center / contain;
  transform: translate(-50%, -50%);
  opacity: 0.02; /* Minimal opacity */
  pointer-events: none;
  z-index: -1;
}

/* Keep section content above decorative watermarks. */
.section-arrow-right > .container,
.section-arrow-left > .container,
.section-arrow-center > .container {
  position: relative;
  z-index: 1;
}

/* Crown Brand Arrow Icon Badge */
.brand-arrow-icon {
  display: inline-block;
  width: 14px;
  height: 11px;
  background: url("crown-arrow.svg") no-repeat center center / contain;
  vertical-align: middle;
  margin-left: 4px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #BAE6FD;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

/* Heading Underlines per CR_brandbook.md section 3.1 */
.heading-l1-dark {
  border-bottom: 4px solid var(--cr-yellow); /* Yellow underline on dark BG */
  display: inline-block;
  padding-bottom: 8px;
}

.heading-l1-light {
  border-bottom: 4px solid var(--cr-cyan); /* Cyan underline on light BG */
  display: inline-block;
  padding-bottom: 8px;
}

.hero-strapline {
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: #BAE6FD;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #E2E8F0;
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
}

.trust-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.trust-icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background-color: rgba(19, 181, 234, 0.18);
  color: var(--cr-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.trust-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--cr-white);
  line-height: 1.25;
}

.trust-text span {
  font-size: 0.78rem;
  color: #CBD5E1;
  line-height: 1.3;
}

/* ==========================================================================
   2-Step Quote Calculator Card
   ========================================================================== */

.quote-card {
  background-color: var(--cr-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--cr-dark);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.quote-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cr-border);
}

.quote-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cr-blue);
  line-height: 1.2;
}

.quote-card__desc {
  font-size: 0.8125rem;
  color: var(--cr-muted);
  margin-top: 4px;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--cr-light-gray);
  color: var(--cr-muted);
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.step-badge.active {
  background-color: var(--cr-blue);
  color: var(--cr-white);
}

.step-badge.completed {
  background-color: var(--cr-cyan);
  color: var(--cr-white);
}

.step-line {
  width: 24px;
  height: 3px;
  background-color: var(--cr-border);
  border-radius: 2px;
}

.move-type-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 24px;
  border-top: 1px solid var(--cr-border);
  border-bottom: 1px solid var(--cr-border);
  background-color: #FAFBFC;
}

.move-type-tab {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 8px;
  border: 0;
  border-right: 1px solid var(--cr-border);
  background-color: transparent;
  color: var(--cr-muted);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.28;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.move-type-tab:last-child {
  border-right: none;
}

.move-type-tab i {
  color: var(--cr-cyan);
  font-size: 1.05rem;
}

.move-type-tab:hover {
  background-color: var(--cr-cyan-light);
  color: var(--cr-blue);
}

.move-type-tab.active {
  position: relative;
  background-color: var(--cr-white);
  color: var(--cr-blue);
  box-shadow: inset 0 -3px 0 var(--cr-cyan);
}

.move-type-tab.active i {
  color: var(--cr-blue);
}

.move-type-tab:focus-visible {
  outline: 3px solid rgba(19, 181, 234, 0.3);
  outline-offset: -3px;
  position: relative;
  z-index: 1;
}

.move-type-panel {
  display: none;
}

.move-type-panel.active {
  display: block;
  animation: fadeIn 0.25s ease-in-out;
}

.quote-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.quote-form-main {
  min-width: 0;
}

.quote-summary {
  position: sticky;
  top: 92px;
  overflow: hidden;
  border: 1px solid var(--cr-border);
  border-radius: var(--radius-md);
  background-color: var(--cr-white);
  box-shadow: 0 12px 28px rgba(15, 43, 94, 0.12);
}

.summary-progress {
  display: grid;
  grid-template-columns: auto minmax(30px, 1fr) auto;
  align-items: start;
  gap: 8px;
  padding: 18px 18px 15px;
  border-bottom: 1px solid var(--cr-border);
}

.summary-progress__item {
  display: grid;
  justify-items: center;
  gap: 5px;
  color: var(--cr-muted);
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
}

.summary-progress__item span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 2px solid var(--cr-border);
  border-radius: 50%;
  background: var(--cr-white);
}

.summary-progress__item.active {
  color: var(--cr-blue);
}

.summary-progress__item.active span,
.summary-progress__item.completed span {
  border-color: var(--cr-yellow);
  background: var(--cr-yellow);
  color: var(--cr-white);
}

.summary-progress__line {
  height: 2px;
  margin-top: 14px;
  background: var(--cr-border);
}

.summary-content {
  padding: 20px 18px 8px;
}

.summary-heading {
  margin-bottom: 14px;
}

.summary-kicker,
.contact-section-eyebrow {
  margin: 0 0 3px;
  color: var(--cr-cyan);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.summary-heading h3 {
  color: var(--cr-blue);
  font-size: 1.16rem;
  line-height: 1.2;
}

.summary-section {
  padding: 14px;
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  background: var(--cr-light-gray);
}

.summary-section__title {
  margin-bottom: 10px;
  color: var(--cr-blue);
  font-size: 0.88rem;
  font-weight: 800;
}

.summary-section__title span {
  margin-right: 3px;
  color: var(--cr-cyan);
}

.summary-list {
  display: grid;
  gap: 7px;
}

.summary-list div {
  display: grid;
  grid-template-columns: minmax(76px, 0.7fr) minmax(0, 1.3fr);
  gap: 8px;
}

.summary-list dt {
  color: var(--cr-muted);
  font-size: 0.7rem;
}

.summary-list dd {
  min-width: 0;
  color: var(--cr-dark);
  font-size: 0.72rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.summary-edit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: var(--cr-blue);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
}

.summary-edit:hover {
  color: var(--cr-cyan);
}

.summary-actions {
  display: flex;
  gap: 9px;
  padding: 14px 18px 10px;
}

.summary-actions .btn {
  min-height: 46px;
}

.summary-actions .btn[hidden] {
  display: none;
}

.summary-actions .btn-outline {
  white-space: nowrap;
}

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

.form-detail-section {
  min-width: 0;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--cr-light-gray);
}

.form-detail-heading {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 13px;
  color: var(--cr-blue);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
}

.form-detail-heading i {
  color: var(--cr-cyan);
  font-size: 0.88rem;
}

.form-detail-section .form-group {
  margin-bottom: 0;
}

.form-detail-section .form-row {
  gap: 9px;
}

.form-detail-section .form-select,
.form-detail-section .form-input {
  padding: 10px 11px;
  font-size: 0.8rem;
}

.inline-form-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cr-dark);
  font: inherit;
  font-size: 0.73rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.inline-form-toggle i {
  color: var(--cr-blue);
  font-size: 0.88rem;
}

.detail-popup {
  margin-top: 12px;
  padding: 13px;
  border: 1px solid #BDE7F6;
  border-radius: var(--radius-sm);
  background: var(--cr-white);
}

.detail-popup__heading {
  margin-bottom: 10px;
  color: var(--cr-blue);
  font-size: 0.76rem;
  font-weight: 800;
}

.detail-popup .form-label {
  font-size: 0.7rem;
}

.detail-popup .form-input,
.detail-popup .form-select {
  padding: 9px 10px;
  font-size: 0.76rem;
}

.date-range-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  width: 100%;
}

.date-range-row .form-group {
  min-width: 0;
  width: 100%;
}

.date-range-row input[type="date"] {
  display: block;
  width: 100%;
  min-width: 0;
  padding-right: 7px;
}

.date-range-heading {
  margin-top: 12px;
}

#exact-container-measure {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 14px;
  padding: 0;
  margin: 0;
  border: 0;
}

#exact-container-measure.is-invalid {
  outline: 2px solid rgba(239, 68, 68, 0.35);
  outline-offset: 5px;
  border-radius: var(--radius-sm);
}

.contact-details-section {
  padding: 20px;
  margin-bottom: 15px;
  border-radius: var(--radius-md);
  background: var(--cr-light-gray);
}

.contact-section-heading {
  margin-bottom: 17px;
}

.contact-section-heading h3 {
  color: var(--cr-blue);
  font-size: 1.12rem;
}

.contact-section-heading p {
  margin-top: 4px;
  color: var(--cr-muted);
  font-size: 0.78rem;
}

.form-row--name {
  align-items: flex-start;
}

.col-title {
  flex: 0 0 82px;
}

.col-name {
  flex: 1 1 0;
}

.phone-input-group {
  display: grid;
  grid-template-columns: minmax(164px, 0.45fr) minmax(0, 1fr);
  gap: 8px;
  width: 100%;
}

.phone-country-code {
  width: 100%;
  min-width: 164px;
}

.phone-input-group .form-input {
  width: 100%;
  min-width: 0;
}

.form-row-error {
  margin-top: -11px;
  margin-bottom: 13px;
}

.optional {
  color: var(--cr-muted);
  font-size: 0.72rem;
  font-weight: 500;
}

.colleague-details {
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid var(--cr-border);
  border-radius: var(--radius-md);
  background: var(--cr-white);
}

.colleague-details summary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 17px;
  color: var(--cr-blue);
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
}

.colleague-details summary::marker {
  color: var(--cr-cyan);
}

.colleague-details summary span {
  margin-left: auto;
  color: var(--cr-muted);
  font-size: 0.7rem;
  font-weight: 600;
}

.colleague-details__body {
  padding: 0 17px 17px;
}

.contact-options {
  display: grid;
  gap: 9px;
  padding: 2px 2px 15px;
}

.contact-option {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--cr-dark);
  font-size: 0.76rem;
  line-height: 1.4;
  cursor: pointer;
}

.contact-option input {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: var(--cr-blue);
  cursor: pointer;
}

.summary-verification {
  padding: 14px 16px;
  border-top: 1px solid var(--cr-border);
  background: var(--cr-white);
}

.summary-verification__heading {
  margin-bottom: 9px;
  color: var(--cr-blue);
  font-size: 0.78rem;
  font-weight: 800;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
}

.captcha-image {
  width: 160px;
  max-width: calc(100% - 42px);
  height: 48px;
  border: 1px solid var(--cr-border);
  border-radius: var(--radius-sm);
  background: var(--cr-cyan-light);
}

.captcha-refresh {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--cr-border);
  border-radius: 50%;
  background: var(--cr-white);
  color: var(--cr-blue);
  font-size: 1.1rem;
  cursor: pointer;
}

.captcha-refresh:hover {
  border-color: var(--cr-cyan);
  color: var(--cr-cyan);
}

.summary-verification .form-input {
  margin-bottom: 10px;
}

.marketing-option {
  margin-top: 4px;
}

.hero-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}

.hero-section > .container {
  max-width: 1380px;
}

.hero-content {
  width: 100%;
  max-width: 920px;
  text-align: center;
}

.hero-title {
  display: inline-block;
}

.hero-subtitle {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.hero-trust-grid {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.hero-form-wrapper {
  position: relative;
  z-index: 5;
  width: min(1180px, 100%);
  margin-top: 38px;
  margin-bottom: -178px;
}

.hero-form-wrapper .quote-card {
  width: 100%;
}

.hero-section + .routes-section {
  position: relative;
  z-index: 1;
  padding-top: 258px;
}

@media (max-width: 1120px) {
  .quote-form-layout {
    grid-template-columns: 1fr;
  }

  .quote-summary {
    position: static;
  }
}

.move-type-intro {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 11px 12px;
  margin-bottom: 18px;
  border-left: 3px solid var(--cr-cyan);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background-color: var(--cr-cyan-light);
  color: var(--cr-blue);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.45;
}

.move-type-intro i {
  margin-top: 2px;
  color: var(--cr-cyan);
}

.corporate-detail-panel {
  padding: 18px;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  background-color: var(--cr-light-gray);
}

.corporate-detail-title {
  margin-bottom: 14px;
  color: var(--cr-blue);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
}

.corporate-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 14px;
}

.corporate-services-grid.is-invalid {
  outline: 2px solid rgba(239, 68, 68, 0.35);
  outline-offset: 5px;
  border-radius: var(--radius-sm);
}

.corporate-service-option {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--cr-text);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
  cursor: pointer;
}

.corporate-service-option input {
  width: 17px;
  height: 17px;
  margin-top: 1px;
  flex: 0 0 17px;
  accent-color: var(--cr-blue);
  cursor: pointer;
}

.relocation-volume-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.relocation-volume-header .corporate-detail-title {
  margin-bottom: 0;
}

.relocation-volume-value {
  display: inline-flex;
  min-width: 48px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 1px solid var(--cr-border);
  border-radius: var(--radius-sm);
  background-color: var(--cr-white);
  color: var(--cr-blue);
  font-size: 1rem;
  font-weight: 700;
}

.relocation-volume-range {
  width: 100%;
  height: 26px;
  margin: 14px 0 0;
  cursor: pointer;
  accent-color: var(--cr-yellow);
}

.relocation-volume-range::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(to right, var(--cr-yellow) 0 var(--range-progress, 35%), #CBD5E1 var(--range-progress, 35%) 100%);
}

.relocation-volume-range::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  margin-top: -8px;
  border: 0;
  border-radius: 50%;
  background: var(--cr-yellow);
  box-shadow: 0 2px 6px rgba(238, 177, 17, 0.35);
  -webkit-appearance: none;
}

.relocation-volume-range::-moz-range-track {
  height: 8px;
  border-radius: 99px;
  background: #CBD5E1;
}

.relocation-volume-range::-moz-range-progress {
  height: 8px;
  border-radius: 99px;
  background: var(--cr-yellow);
}

.relocation-volume-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: var(--cr-yellow);
  box-shadow: 0 2px 6px rgba(238, 177, 17, 0.35);
}

.relocation-volume-range:focus-visible {
  outline: 3px solid rgba(19, 181, 234, 0.3);
  outline-offset: 3px;
  border-radius: 99px;
}

.relocation-volume-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 1px;
  color: var(--cr-muted);
  font-size: 0.75rem;
}

.form-step {
  border: none;
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.25s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-group {
  margin-bottom: 16px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.col-6 {
  flex: 1;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cr-dark);
  margin-bottom: 6px;
}

.req {
  color: #E5232A;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--cr-border);
  border-radius: var(--radius-sm);
  background-color: var(--cr-white);
  color: var(--cr-dark);
  font-size: 0.9rem;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--cr-cyan);
  box-shadow: 0 0 0 3px rgba(19, 181, 234, 0.15);
}

.form-input.is-invalid, .form-select.is-invalid {
  border-color: #EF4444;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 12px;
  font-size: 1.1rem;
}

.input-with-icon .form-input {
  padding-left: 40px;
  background-color: var(--cr-light-gray);
  color: var(--cr-muted);
  cursor: not-allowed;
}

.input-with-prefix {
  display: flex;
  align-items: center;
}

.input-with-prefix .prefix {
  background-color: var(--cr-light-gray);
  border: 1.5px solid var(--cr-border);
  border-right: none;
  padding: 12px 14px;
  font-weight: 600;
  color: var(--cr-muted);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: 0.9rem;
}

.has-prefix {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.field-error {
  display: none;
  font-size: 0.75rem;
  color: #EF4444;
  margin-top: 4px;
  font-weight: 500;
}

.field-error.visible {
  display: block;
}

.form-actions-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 18px;
  color: var(--cr-muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

.privacy-consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex: 0 0 16px;
  accent-color: var(--cr-blue);
  cursor: pointer;
}

.privacy-consent input.is-invalid {
  outline: 2px solid rgba(239, 68, 68, 0.35);
  outline-offset: 2px;
}

.privacy-consent label {
  cursor: pointer;
}

.privacy-consent a {
  color: var(--cr-blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-consent a:hover {
  color: var(--cr-cyan);
}

.privacy-error {
  margin-left: 25px;
}

.form-privacy-note {
  font-size: 0.75rem;
  color: var(--cr-muted);
  text-align: center;
  margin-top: 14px;
}

/* Success Card */
.form-success-state {
  text-align: center;
  padding: 24px 0;
  animation: fadeIn 0.3s ease;
}

.success-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--cr-cyan-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.success-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cr-blue);
  margin-bottom: 8px;
}

.success-desc {
  font-size: 0.9rem;
  color: var(--cr-text);
  line-height: 1.5;
  margin-bottom: 24px;
}

/* ==========================================================================
   Sections Common Styling
   ========================================================================== */

.section {
  padding: 80px 0;
}

.hero-section + .routes-section {
  padding-top: 258px;
}

.bg-light {
  background-color: var(--cr-light-gray);
}

.section-header {
  margin-bottom: 48px;
}

.badge-sub {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--cr-cyan);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--cr-blue);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--cr-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* ==========================================================================
   Route Cards Grid
   ========================================================================== */

.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.routes-note {
  margin: 18px auto 0;
  color: var(--cr-muted);
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
}

.route-card {
  background-color: var(--cr-white);
  border: 1px solid var(--cr-border);
  border-radius: var(--radius-md);
  padding: 0 22px 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.route-card__image {
  position: relative;
  height: 132px;
  margin: 0 -22px 24px;
  overflow: hidden;
  background-color: var(--cr-blue-dark);
}

.route-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 43, 104, 0.02) 25%, rgba(20, 43, 104, 0.34) 100%);
  pointer-events: none;
}

.route-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.route-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--cr-cyan);
}

.route-card:hover .route-card__image img {
  transform: scale(1.045);
}

.route-card__flag {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.route-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cr-blue);
  margin-bottom: 6px;
}

.route-card__cities {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cr-muted);
  margin-bottom: 10px;
}

.route-timing {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cr-blue);
  background-color: var(--cr-cyan-light);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.route-card__features {
  list-style: none;
  font-size: 0.85rem;
  color: var(--cr-text);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.route-card__features li {
  position: relative;
  padding-left: 18px;
  line-height: 1.45;
}

.route-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cr-cyan);
  font-weight: 700;
}

.highlight-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F0F9FF 100%);
  border-color: var(--cr-cyan);
}

/* ==========================================================================
   Value Pillars Grid
   ========================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-box {
  background-color: var(--cr-white);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--cr-border);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: var(--cr-cyan-light);
  color: var(--cr-blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cr-blue);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--cr-muted);
  line-height: 1.55;
}

/* ==========================================================================
   Process Steps
   ========================================================================== */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-card {
  position: relative;
  padding: 28px 20px;
  border-radius: var(--radius-md);
  background-color: var(--cr-light-gray);
}

.step-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cr-cyan);
  line-height: 1;
  margin-bottom: 12px;
}

.process-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cr-blue);
  margin-bottom: 8px;
}

.process-text {
  font-size: 0.85rem;
  color: var(--cr-text);
  line-height: 1.5;
}

/* ==========================================================================
   Reviews Grid
   ========================================================================== */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background-color: var(--cr-white);
  padding: 30px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--cr-border);
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: var(--cr-yellow);
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.review-quote {
  font-size: 0.925rem;
  color: var(--cr-text);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  font-style: italic;
}

.reviewer-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--cr-blue);
}

.reviewer-info span {
  font-size: 0.78rem;
  color: var(--cr-muted);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: var(--cr-white);
  border: 1px solid var(--cr-border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}

.faq-item[open] {
  border-color: var(--cr-cyan);
}

.faq-question {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cr-blue);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 24px;
}

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

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--cr-cyan);
}

.faq-item[open] .faq-question::after {
  content: "−";
}

.faq-answer {
  padding-top: 12px;
  font-size: 0.875rem;
  color: var(--cr-muted);
  line-height: 1.6;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */

.cta-banner {
  background-color: var(--cr-blue);
  color: var(--cr-white);
  padding: 60px 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-banner__title {
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.cta-banner__desc {
  color: #CBD5E1;
  font-size: 0.95rem;
}

.cta-banner__actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background-color: #0F172A;
  color: #94A3B8;
  padding: 60px 0 20px 0;
  font-size: 0.85rem;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1E293B;
}

.footer-strapline {
  color: #E2E8F0;
  margin: 12px 0 16px 0;
  font-size: 0.95rem;
}

.footer-address {
  line-height: 1.6;
}

.footer-accreditations {
  flex-shrink: 0;
}

.footer-accreditations h4 {
  color: var(--cr-white);
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.accreditation-grid {
  display: grid;
  grid-template-columns: repeat(2, 160px);
  gap: 10px;
}

.acc-card {
  transition: transform 0.2s ease, opacity 0.2s ease;
  cursor: default;
}

.acc-card:hover {
  transform: translateY(-2px);
}

.acc-svg {
  width: 100%;
  height: 48px;
  display: block;
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  font-size: 0.8rem;
}

.footer-links a:hover {
  color: var(--cr-cyan);
}

/* ==========================================================================
   Floating WhatsApp & Sticky Mobile Bar
   ========================================================================== */

.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background-color: var(--cr-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  background-color: var(--cr-whatsapp-dark);
}

.floating-tooltip {
  position: absolute;
  right: 68px;
  background-color: var(--cr-dark);
  color: var(--cr-white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.floating-whatsapp:hover .floating-tooltip {
  opacity: 1;
}

.mobile-sticky-bar {
  display: none;
}

/* ==========================================================================
   Hamburger Button & Mobile Navigation
   ========================================================================== */

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1.5px solid var(--cr-border);
  cursor: pointer;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.hamburger-btn:hover {
  border-color: var(--cr-blue);
  background-color: var(--cr-light-gray);
}

.hamburger-bar {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--cr-dark);
  border-radius: 2px;
  transition: transform 0.26s cubic-bezier(0.22, 0.61, 0.36, 1),
              opacity 0.2s ease,
              width 0.2s ease;
}

.hamburger-btn.is-open .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.is-open .hamburger-bar:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger-btn.is-open .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav panel — slides down from below sticky header */
.mobile-nav-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--cr-white);
  border-top: 2px solid var(--cr-cyan);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.14);
  padding: 12px 0 28px;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.26s ease,
              transform 0.34s cubic-bezier(0.16, 0.84, 0.44, 1);
  z-index: 10;
}

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

.mobile-nav-links {
  padding: 4px 0 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--cr-border);
}

.mobile-nav-link {
  display: block;
  padding: 13px 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cr-dark);
  border-bottom: 1px solid var(--cr-border);
  transition: color 0.18s ease, padding-left 0.18s ease;
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-nav-link:hover {
  color: var(--cr-blue);
  padding-left: 6px;
}

.mobile-nav-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Full-screen dimming backdrop */
.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 98; /* below sticky header (100) */
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (min-width: 901px) and (max-width: 1024px) {
  .hero-container {
    gap: 0;
  }

  .hero-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 900px) {
  .hero-container {
    gap: 0;
  }
  .routes-grid, .features-grid, .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* --- Navigation --- */
  .header-nav      { display: none; }
  .header-actions  { display: none; }
  .hamburger-btn   { display: flex; }
  .mobile-nav-panel    { display: block; }
  .mobile-nav-backdrop { display: block; }

  /* --- Top bar --- */
  .top-bar__contact .divider,
  .top-bar__contact span { display: none; }

  /* --- Hero --- */
  .hero-section { padding: 40px 0 70px 0; }
  .hero-title   { font-size: 2rem; }
  .hero-form-wrapper {
    margin-top: 28px;
    margin-bottom: -76px;
  }
  .hero-section + .routes-section {
    padding-top: 145px;
  }
  .hero-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* --- Sections --- */
  .section        { padding: 52px 0; }
  .section-header { margin-bottom: 32px; }
  .section-title  { font-size: 1.75rem; }

  /* --- Grids --- */
  .routes-grid,
  .features-grid,
  .process-steps { grid-template-columns: 1fr; }

  .route-card__image {
    height: 168px;
  }

  /* --- Quote form --- */
  .quote-card { padding: 24px 18px; }
  .quote-card__header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .form-row { flex-direction: column; gap: 0; }
  .form-detail-grid {
    grid-template-columns: 1fr;
  }
  .phone-input-group {
    grid-template-columns: 1fr;
  }
  .phone-country-code {
    min-width: 0;
  }
  .move-type-tabs {
    margin-right: 0;
    margin-left: 0;
  }
  .move-type-tab {
    min-height: 66px;
    gap: 6px;
    font-size: 0.7rem;
  }
  .move-type-tab i {
    font-size: 0.95rem;
  }
  .corporate-services-grid {
    grid-template-columns: 1fr;
  }
  .summary-actions {
    flex-direction: column;
  }
  .summary-actions .btn {
    width: 100%;
  }
  .summary-progress {
    padding-right: 15px;
    padding-left: 15px;
  }
  .summary-content {
    padding-right: 15px;
    padding-left: 15px;
  }
  .summary-actions {
    padding-right: 15px;
    padding-left: 15px;
  }

  /* --- CTA Banner --- */
  .cta-banner { padding: 48px 0; }
  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-banner__title { font-size: 1.45rem; }
  .cta-banner__actions {
    flex-direction: column;
    width: 100%;
  }

  /* --- Footer --- */
  .site-footer__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-accreditations {
    align-self: flex-start;
    width: 100%;
    text-align: left;
  }
  .accreditation-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
  }
  .acc-card {
    width: min(240px, 100%);
    margin-left: 0;
    margin-right: 0;
    align-self: flex-start;
  }
  .footer-bottom__inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* --- WhatsApp float --- */
  .floating-whatsapp {
    bottom: calc(74px + env(safe-area-inset-bottom));
    right: 18px;
    width: 50px;
    height: 50px;
  }

  /* --- Body clearance for sticky bar --- */
  body { padding-bottom: 64px; }

  /* --- Mobile sticky bar --- */
  .mobile-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background-color: var(--cr-white);
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    z-index: 998;
    gap: 10px;
    align-items: stretch;
    overflow: hidden;
  }
  .mobile-sticky-bar .btn {
    flex: 1 1 0;
    width: 0;
    max-width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 12px 14px;
    font-size: 0.85rem;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  @media (max-width: 380px) {
    .mobile-sticky-bar {
      gap: 8px;
      padding-left: 10px;
      padding-right: 10px;
    }

    .mobile-sticky-bar .btn {
      padding-right: 8px;
      padding-left: 8px;
      font-size: 0.76rem;
    }
  }

  /* Watermarks stay behind content and fade into the background on mobile. */
  .section-arrow-right::after {
    opacity: 0.025;
    z-index: -1;
  }
  .section-arrow-left::before {
    opacity: 0.02;
    z-index: -1;
  }
  .section-arrow-center::after {
    opacity: 0.012;
    z-index: -1;
  }
  .hero-arrow-shape {
    opacity: 0.05;
    z-index: -1;
  }
}

/* Very small phones (iPhone SE, Galaxy A series, etc.) */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero-title     { font-size: 1.75rem; }
  .hero-strapline { font-size: 1rem; }
  .hero-subtitle  { font-size: 0.95rem; }
  .hero-trust-grid { grid-template-columns: 1fr; }

  .section       { padding: 44px 0; }
  .section-title { font-size: 1.5rem; }

  .quote-card       { padding: 20px 16px; }
  .quote-card__title { font-size: 1.1rem; }
  .move-type-tabs {
    margin-right: 0;
    margin-left: 0;
  }
  .move-type-tab {
    min-height: 62px;
    padding: 8px 4px;
    flex-direction: column;
    gap: 3px;
    font-size: 0.62rem;
    text-align: center;
  }
  .move-type-tab i {
    font-size: 0.9rem;
  }
  .corporate-detail-panel {
    padding: 15px;
  }
  .relocation-volume-value {
    min-width: 44px;
    min-height: 36px;
  }
  .form-detail-section,
  .contact-details-section {
    padding: 14px;
  }
  .colleague-details summary,
  .colleague-details__body {
    padding-right: 14px;
    padding-left: 14px;
  }
  .summary-actions {
    flex-wrap: wrap;
  }
  .summary-actions .btn {
    flex: 1 1 auto;
  }
  .cta-banner__title { font-size: 1.3rem; }

  .accreditation-grid {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .btn-lg {
    padding: 14px 20px;
    font-size: 0.9rem;
  }

  .review-card { padding: 22px 18px; }

  .process-card { padding: 22px 16px; }

  .route-card__image {
    height: 148px;
  }
}

/* ==========================================================================
   Luxury Reveal Animations — Fade In Up
   ========================================================================== */

@keyframes crFadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes crFadeInRight {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Initial hidden state — set by JS so no-JS visitors always see content */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  will-change: opacity, transform;
}

.reveal.is-visible {
  animation: crFadeInUp 0.72s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

/* Hero left-side items slide in from slight left for extra polish */
.reveal--hero {
  transform: translateY(24px);
}

.reveal--hero.is-visible {
  animation: crFadeInUp 0.8s cubic-bezier(0.16, 0.84, 0.44, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

/* Card-style elements get a slightly longer, softer ease */
.reveal--card.is-visible {
  animation: crFadeInUp 0.78s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--hero,
  .reveal--card {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}
