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

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}

/* ============================================
   Step Modal
============================================ */

/* Blur the single page wrapper — avoids sub-pixel seams between sections */
body.modal-open .page-wrap {
  filter: blur(5px);
  margin: -30px;
  padding: 30px;
  transition: filter 0.2s;
}

/* Clip the scaled/blurred overflow so edges don't show */
html {
  overflow: hidden scroll;
}

body {
  overflow: hidden;
}

body.modal-open {
  padding-right: 0 !important;
}

/* Transparent backdrop */
.modal-backdrop {
  background: rgba(0, 0, 0, 0.35) !important;
}

.step-modal-dialog {
  max-width: 550px;
  position: relative;
}

/* Close button — inside card, top-right corner */
.step-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  font-size: 18px;
  line-height: 1;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.step-modal-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

.step-modal-content {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.step-option-hint {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin-bottom: 16px;
}

.step-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.step-option-btn {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2c3e50;
  background: #ffffff;
  border: 1.5px solid #dde3ea;
  border-radius: 6px;
  padding: 13px 16px;
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.step-option-btn:hover {
  border-color: #2a9d8f;
  background: #f0faf9;
}

.step-option-btn.selected {
  border-color: #2a9d8f;
  background: #2a9d8f;
  color: #ffffff;
}

.btn-step-back {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #888;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}

.btn-step-back:hover {
  color: #2c3e50;
}

/* ============================================
   Hero Section
============================================ */
.hero {
  position: relative;
  background: url('../img/hero.png') center bottom / cover no-repeat;
  display: flex;
  flex-direction: column;
}

/* Dark overlay removed — overlay is baked into hero.png */

/* ============================================
   Navbar
============================================ */
.hero-nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-tagline {
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.85;
}

/* Right nav cluster: toggle + phone side by side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}

/* Pill toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  padding: 4px;
  gap: 2px;
}

.lang-toggle-btn {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 99px;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}

.lang-toggle-btn:hover {
  color: #ffffff;
}

.lang-toggle-btn.active {
  background: #ffffff;
  color: #2C3E50;
  pointer-events: none;
}

/* Phone block */
.nav-phone {
  color: #ffffff;
  line-height: 1.35;
  text-align: right;
}

.nav-phone-label {
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  opacity: 1;
  display: block;
}

.nav-phone strong {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  display: block;
}

.nav-phone-number {
  text-decoration: none;
  color: inherit;
}

.nav-phone-icon {
  display: none;
}

/* ============================================
   Hero Body
============================================ */
.hero-body {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 100px;
}

/* ============================================
   Hero Copy (Left)
============================================ */
.hero-copy {
  color: #ffffff;
}

.hero-title {
  font-size: 62px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 0;
  max-width: 540px;
}

/* Checklist */
.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-checklist li {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
}

.hero-checklist li img {
    height: 24px;
}

.hero-checklist li p {
    margin: 4px 0 0 0;
}

.check-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain;
}

/* ============================================
   Lead Capture Card (Right)
============================================ */
.lead-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

.lead-card-header {
  background: #2a9d8f;
  padding: 16px 24px;
}

.lead-card-title {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}

.lead-card-body {
  padding: 22px 24px 24px;
}

/* Step progress bar */
.step-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.step-label {
  font-size: 13px;
  font-weight: 400;
  color: #555;
}

.step-pct {
  font-size: 13px;
  font-weight: 500;
  color: #555;
}

.step-progress {
  height: 5px;
  background: #e0e0e0;
  border-radius: 99px;
  margin-bottom: 20px;
  overflow: hidden;
}

.step-progress-fill {
  height: 100%;
  background: #2a9d8f;
  border-radius: 99px;
}

/* Card question */
.card-question {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.35;
  margin-bottom: 18px;
}

/* Label */
.card-label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  display: block;
  margin-bottom: 8px;
}

/* Input */
.postal-input {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 12px 14px;
  margin-bottom: 16px;
  color: #555;
}

.postal-input:focus {
  border-color: #2a9d8f;
  box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.18);
  outline: none;
}

/* CTA Button */
.btn-cta {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  background: #2a9d8f;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 13px 20px;
  margin-bottom: 14px;
  transition: background 0.2s;
}

.btn-cta:hover {
  background: #21867a;
  color: #ffffff;
}

/* Disclaimer */
.card-disclaimer {
  font-size: 12px;
  font-weight: 400;
  color: #888;
  text-align: center;
  margin-bottom: 0;
}

/* ============================================
   Responsive
============================================ */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 44px;
  }

  .hero-body {
    padding: 40px 0 60px;
  }

  .hero-copy {
    margin-bottom: 48px;
  }

  .col-lg-5.offset-lg-1 {
    padding: 0 16px;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .nav-tagline {
    display: none;
  }

  .nav-phone-label {
    display: none;
  }

  .nav-phone-number strong {
    display: none;
  }

  .nav-phone-icon {
    display: block;
  }

  .nav-phone-number {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-body {
    padding: 0 0 40px;
  }

  .hero-copy {
    margin-bottom: 16px;
  }

  .hero-checklist-mobile {
    padding-top: 24px;
  }

  .container-xl {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ============================================
   Info Section
============================================ */
.info-section {
  background: #2c3e50;
  padding: 80px 0 0;
}

.info-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
  flex: 1;
}

/* Image col: padding-bottom offsets the CTA button so image ends at checklist level */
.info-section .col-lg-5 {
  padding-bottom: 80px;
}

.info-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.info-content {
  color: #ffffff;
}

.info-eyebrow {
  font-size: 12px;
  font-weight: 500;
  color: #2a9d8f;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.info-title {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.info-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 28px;
}

.info-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.info-checklist li {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-info-cta {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  background: #2a9d8f;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 12px 26px;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}

.btn-info-cta:hover {
  background: #21867a;
  color: #ffffff;
}

.info-footer {
  text-align: center;
  margin-top: 50px;
  padding-bottom: 50px;
}

.btn-show-less {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  background: transparent;
  border: 1px solid #566a7e;
  border-radius: 99px;
  padding: 17px 33px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-show-less:hover {
  border-color: #ffffff;
  color: #ffffff;
}

.toggle-arrow {
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
  transition: transform 0.35s ease;
}

.toggle-arrow.is-open {
  transform: rotate(180deg);
}

@media (max-width: 991.98px) {
  .info-section .col-lg-5 {
    padding-bottom: 0;
  }

  .info-section .row.align-items-stretch {
    flex-direction: column-reverse;
  }

  .info-img-wrap {
    margin-bottom: 0;
    margin-top: 40px;
  }

  .info-title {
    font-size: 28px;
  }
}

/* ============================================
   Topics Collapse
============================================ */
.topics-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.topics-collapse.is-open {
  max-height: 3000px; /* large enough for all items */
}

.topics-cta-footer {
  padding-top: 50px;
  text-align: center;
  display: none;
}

.topics-cta-footer.is-open {
  display: block;
}
.topics-section {
  background: #2c3e50;
  padding: 0;
  border-top: 1px solid #415162;
  transition: padding 0.6s ease;
}

.topics-section.is-open {
  padding-bottom: 80px;
}

.topic-item {
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topic-item.last {
  border-bottom: none;
}

.topic-num {
  font-size: 12px;
  font-weight: 600;
  color: #2a9d8f;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 12px;
}

.topic-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 14px;
}

.topic-desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 0;
}

.topic-cta {
  padding-top: 50px;
  text-align: center;
}

.topic-cta-label {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}

/* ============================================
   CTA Section
============================================ */
.cta-section {
  background: #f0ede8;
  padding: 80px 0 100px;
}

.cta-title {
  font-size: 40px;
  font-weight: 700;
  color: #2C3E50;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 17px;
  font-weight: 400;
  color: #6B6B6B;
  margin-bottom: 48px;
}

/* ============================================
   Footer
============================================ */
.site-footer {
  background: #2c3e50;
  padding: 24px 0;
}

.footer-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

.footer-copy {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-link {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #ffffff;
}

@media (max-width: 767.98px) {
  .cta-title {
    font-size: 26px;
  }

  .site-footer .row {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ============================================
   Step 4 — Contact Form
============================================ */
.step4-body {
  max-height: 80vh;
  overflow-y: auto;
}

.step-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

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

.step-form-row .step-form-group {
  flex: 1;
}

.step-form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.step-form-label {
  font-size: 13px;
  font-weight: 500;
  color: #2c3e50;
}

.step-form-input {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #2c3e50;
  border: 1.5px solid #dde3ea;
  border-radius: 6px;
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

.step-form-input::placeholder {
  color: #aab4be;
}

.step-form-input:focus {
  border-color: #2a9d8f;
}

.step-legal {
  font-size: 12px;
  color: #000;
  line-height: 1.65;
  margin-top: 14px;
  margin-bottom: 0;
}

.step-legal-link {
  color: #9aa5b1;
  text-decoration: underline;
}

/* ============================================
   Thank You Page
============================================ */
.ty-page .hero {
  min-height: 100vh;
}

.ty-hero-content {
  padding: 60px 0 80px;
}

.ty-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2.5px solid #2a9d8f;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.ty-check svg {
  width: 28px;
  height: 28px;
}

.ty-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px;
}

.ty-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 32px;
  line-height: 1.6;
}

.ty-btn {
  font-size: 15px;
  padding: 13px 28px;
}

.error {
    color: red;
    font-size: 0.8em;
    display: none;
}

.error.visible {
    display: block;
}

.city-state-zip {
    font-size: 12px;
    padding: 2px 0;
}

.pac-container {
    z-index: 1060 !important;
}

/* Mobile-only sticky CTA footer */
.sp-mobile-sticky-cta {
  display: none;
}

@media (max-width: 767.98px) {
  .sp-mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1030;
    display: none;
    gap: 9px;
    align-items: center;
    padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
    background: #26384a;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
  }

  .sp-mobile-sticky-cta.sp-mobile-sticky-cta-visible {
    display: flex;
  }

  .sp-mobile-sticky-main {
    flex: 1;
    min-height: 38px;
    border: 0;
    border-radius: 8px;
    background: #54aaa3;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
  }

  .sp-mobile-sticky-phone {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 8px;
    background: #34485d;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sp-mobile-sticky-phone svg {
    width: 15px;
    height: 15px;
    fill: #fff;
  }

  body.sp-mobile-sticky-padding {
    padding-bottom: 58px;
  }
}

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

#accordion-info .topics-section {
	background: #2c3e50;
	padding: 0 0 80px;
}

@media (max-width: 991.98px) {
	#accordion-info .topics-section {
		padding-top: 40px;
	}
}

#accordion-info .topic-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 0;
}

#accordion-info .topic-item:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#accordion-info .topic-header {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 22px 0;
	cursor: pointer;
	user-select: none;
}

#accordion-info .topic-header:hover .topic-title {
	color: #2a9d8f;
}

#accordion-info .topic-num {
	font-size: 12px;
	font-weight: 600;
	color: #2a9d8f;
	letter-spacing: 0.05em;
	flex-shrink: 0;
	min-width: 22px;
	padding-top: 8px;
	line-height: 12px;
}

#accordion-info .topic-title {
	font-size: 20px;
	font-weight: 700;
	color: #f7f5f2;
	line-height: 28px;
	margin-bottom: 0;
	flex: 1;
	transition: color 0.2s;
}

#accordion-info .topic-chevron {
	flex-shrink: 0;
	display: block;
	transition: transform 0.3s ease;
	transform: rotate(180deg);
	margin-top: 11px;
}

#accordion-info .topic-item.is-open .topic-chevron {
	transform: rotate(0deg);
}

#accordion-info .topic-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
	padding-left: 42px;
}

#accordion-info .topic-item.is-open .topic-body {
	max-height: 400px;
}

#accordion-info .topic-desc {
	font-size: 16px;
	font-weight: 400;
	color: #cfc6bb;
	line-height: 28px;
	margin-bottom: 0;
	padding-bottom: 24px;
}

#accordion-info .topics-cta-footer {
	padding-top: 50px;
	text-align: center;
}

#accordion-info .topic-cta-label {
	font-size: 14px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 20px;
}

#accordion-info .btn-info-cta {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 600;
	background: #2a9d8f;
	color: #ffffff;
	border: none;
	border-radius: 6px;
	padding: 12px 26px;
	text-decoration: none;
	transition: background 0.2s;
	display: inline-block;
}

#accordion-info .btn-info-cta:hover {
	background: #21867a;
	color: #ffffff;
}