/* Moving Out Guide: page layout only. Shared components come from styles.css, header.css, and index.css. */

.move-guide-page {
  background: #f9f9f9;
}

.move-guide-page .landing-hero {
  padding: 64px 0 58px;
  background: linear-gradient(135deg, #002348 0%, #003f63 100%);
  color: #fff;
}

.move-guide-page .guide-kicker,
.move-guide-page .section-eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  color: #FD3B26;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.move-guide-page .guide-kicker {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(253, 59, 38, 0.14);
  color: #fff;
}

.move-guide-page .hero-copy h1 {
  max-width: 900px;
  margin: 0 auto 14px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.35rem, 5.6vw, 4.3rem);
  line-height: 1.06;
  text-align: center;
}

.move-guide-page .hero-copy .hero-sub {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

.guide-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

.guide-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid rgba(0, 35, 72, 0.18);
  border-radius: 999px;
  background: #fff;
  color: #002348;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.guide-secondary-button:hover,
.guide-secondary-button:focus {
  background: #f2f6fb;
  color: #002348;
}

.guide-secondary-button.light {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.guide-secondary-button.light:hover,
.guide-secondary-button.light:focus {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.guide-section {
  padding: 46px 0;
}

.guide-section + .guide-section {
  padding-top: 18px;
}

.guide-soft-band {
  background: #fff;
  border-top: 1px solid rgba(0, 35, 72, 0.06);
  border-bottom: 1px solid rgba(0, 35, 72, 0.06);
}

.guide-split {
  padding-top: 34px;
}

.guide-split-panel,
.guide-two-column,
.guide-storage-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: center;
  min-width: 0;
}

.guide-split-panel,
.guide-mini-card,
.guide-highlight-box {
  background: #fff;
  border: 1px solid rgba(0, 35, 72, 0.09);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 35, 72, 0.05);
}

.guide-split-panel {
  padding: 28px;
}

.guide-section-heading {
  max-width: 780px;
  margin: 0 auto 24px;
  text-align: center;
}

.guide-section-heading h2,
.guide-split-panel h2,
.guide-two-column h2,
.guide-storage-panel h2 {
  margin: 0 0 12px;
  color: #002348;
  font-size: clamp(1.8rem, 3.5vw, 2.65rem);
  line-height: 1.16;
}

.guide-section-heading p,
.guide-split-panel p,
.guide-two-column p,
.guide-storage-panel p {
  color: #34465d;
  font-size: 1.02rem;
  line-height: 1.65;
}

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

.guide-card-grid.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.guide-mini-card,
.guide-highlight-box {
  padding: 22px;
}

.guide-mini-card h3,
.guide-highlight-box h3 {
  margin: 0 0 12px;
  color: #002348;
  font-size: 1.15rem;
}

.guide-mini-card .check-list,
.guide-highlight-box .check-list,
.guide-callout-list {
  margin: 0;
}

.guide-callout-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.guide-callout-list li {
  position: relative;
  padding: 12px 14px 12px 34px;
  border-radius: 8px;
  background: #f5f8fb;
  color: #24364d;
  font-weight: 600;
}

.guide-callout-list li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FD3B26;
}

.guide-storage-section {
  padding-top: 34px;
}

.guide-storage-panel {
  align-items: start;
  padding: 30px;
  border-radius: 16px;
  background: #002348;
  color: #fff;
}

.guide-storage-panel h2,
.guide-storage-panel p {
  color: #fff;
}

.guide-storage-panel p {
  color: rgba(255, 255, 255, 0.9);
}

.guide-storage-panel .guide-callout-list li {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.94);
}

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

.timeline-list li {
  padding: 13px 15px;
  border-left: 4px solid #FD3B26;
  border-radius: 8px;
  background: #f5f8fb;
  color: #24364d;
}

.timeline-list strong {
  display: block;
  color: #002348;
}

.guide-wide-list {
  max-width: 880px;
  margin: 0 auto;
}

.move-guide-page .final-cta {
  padding: 46px 0 54px;
  background: #fff;
}

.move-guide-page .final-cta-box {
  border-radius: 8px;
  background: #002348;
  color: #fff;
}

.move-guide-page .final-cta-box h2 {
  color: #fff;
}

.move-guide-page .final-cta-box p {
  color: rgba(255, 255, 255, 0.88);
}

.move-guide-page .final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.move-guide-page .final-cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.move-guide-page .final-cta-actions .primary {
  background: #FD3B26;
  color: #fff;
}

.move-guide-page .final-cta-actions .secondary {
  background: #fff;
  color: #002348;
}

@media (max-width: 860px) {
  .guide-split-panel,
  .guide-two-column,
  .guide-storage-panel,
  .guide-card-grid,
  .guide-card-grid.four-up {
    grid-template-columns: 1fr;
  }

  .guide-section-heading {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .move-guide-page .landing-hero {
    padding: 38px 0 34px;
  }

  .guide-action-row,
  .move-guide-page .final-cta-actions {
    align-items: stretch;
  }

  .guide-action-row a,
  .move-guide-page .final-cta-actions a {
    width: 100%;
    text-align: center;
  }

  .guide-section {
    padding: 34px 0;
  }

  .guide-split-panel,
  .guide-mini-card,
  .guide-highlight-box,
  .guide-storage-panel {
    padding: 20px;
  }
}
