/* Steadfast Cleaning Co. shared styles, extracted from page inline CSS. */
/* Rules here are identical across every page that defined them. */

* { margin: 0; padding: 0; box-sizing: border-box; }
.nav-logo img {
      display: block;
      height: 72px;
      width: auto;
      max-height: 72px;
    }
.nav-links a:hover { color: var(--purple-mid); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-contact-widget {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 0 12px;
    }
.nav-contact-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      height: 36px;
      padding: 0 10px;
      border-radius: 8px;
      color: var(--purple-mid);
      text-decoration: none;
      transition: color 0.2s, background 0.2s;
    }
.nav-contact-icon:hover {
      color: var(--purple-dark);
      background: var(--purple-pale);
    }
.nav-contact-icon svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
    }
.nav-contact-label {
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.2px;
    }
.nav-contact-number {
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 500;
      color: var(--purple-dark);
      text-decoration: none;
      margin-left: 4px;
      transition: color 0.2s;
    }
.nav-contact-number:hover {
      color: var(--purple-mid);
    }

@media (max-width: 700px) {
  .nav-contact-number { display: none; }
  .nav-contact-widget { gap: 8px; padding: 0 4px; }
}

.nav-dropdown.open {
      display: block;
      animation: dropdownSlide 0.22s ease;
    }
@keyframes dropdownSlide {
      from { opacity: 0; transform: translateY(-6px); }
      to   { opacity: 1; transform: translateY(0); }
    }
.nav-dropdown ul { list-style: none; }
.nav-dropdown ul li a {
      display: block;
      padding: 14px 4px;
      color: var(--purple-dark);
      text-decoration: none;
      font-size: 17px;
      font-weight: 500;
      border-bottom: 1px solid rgba(45,27,105,0.07);
      transition: color 0.2s;
    }
.nav-dropdown ul li:last-child a { border-bottom: none; }
.nav-dropdown ul li a:hover { color: var(--purple-mid); }
.nav-dropdown-cta {
      margin-top: 4px;
      display: block !important;
      background: var(--purple-dark) !important;
      color: white !important;
      text-align: center;
      border-radius: 8px;
      font-weight: 600 !important;
      border-bottom: none !important;
    }
.nav-dropdown-cta:hover { background: var(--purple-mid) !important; color: white !important; }
.cta-banner {
      background: var(--purple-dark);
      padding: 80px;
      text-align: center;
    }
.cta-banner h2 {
      font-family: 'Playfair Display', serif;
      font-size: 46px;
      color: white;
      margin-bottom: 16px;
      font-weight: 700;
    }
.cta-banner p {
      color: rgba(255,255,255,0.75);
      font-size: 17px;
      margin-bottom: 40px;
    }
.cta-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }
.btn-white {
      background: white;
      color: var(--purple-dark);
      padding: 15px 32px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      transition: background 0.2s, transform 0.15s;
    }
footer {
      background: #0F0A24;
      color: rgba(255,255,255,0.7);
      padding: 60px 80px 40px;
    }
.footer-inner {
      max-width: 1240px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
.footer-brand img {
      display: block;
      height: 160px;
      width: auto;
      max-height: 160px;
      margin-bottom: 20px;
    }
.footer-tagline {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      color: var(--purple-light);
      font-size: 15px;
      margin-bottom: 16px;
    }
.footer-contact-item {
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      margin-bottom: 8px;
    }
.footer-contact-item a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
    }
.footer-bilingual {
      font-size: 14px;
      font-style: italic;
      color: rgba(255,255,255,0.55);
      margin-bottom: 16px;
    }
.footer-credential {
      font-size: 14px;
      color: var(--purple-light);
      margin-bottom: 16px;
    }
.footer-reviews {
      font-size: 14px;
      color: var(--purple-light);
      margin-bottom: 16px;
    }
.footer-reviews a {
      color: var(--purple-light);
      text-decoration: none;
      transition: color 0.2s;
    }
.footer-reviews a:hover { color: white; }
.footer-reviews-stars {
      color: #FBBC04;
      letter-spacing: 1px;
      margin-right: 6px;
    }
.footer-col h4 {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-bottom: 20px;
    }
.footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
.footer-play a {
      color: #FFFFFF;
      text-decoration: underline;
      text-underline-offset: 2px;
      transition: color 0.2s;
    }
.footer-play a:hover { color: var(--purple-light); }
.hero-rating-stars {
      color: #FBBC04;
      letter-spacing: 1px;
      font-size: 14px;
    }
.hero-rating-text {
      letter-spacing: 0.2px;
    }
.testimonials-section {
      background: var(--purple-pale);
      padding: 80px 80px;
    }
.testimonials-inner {
      max-width: 1240px;
      margin: 0 auto;
    }
.testimonials-header {
      text-align: center;
      margin-bottom: 48px;
    }
.testimonials-eyebrow {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--purple-mid);
      margin-bottom: 16px;
    }
.testimonials-title {
      font-family: 'Playfair Display', serif;
      font-size: 42px;
      font-weight: 700;
      color: var(--purple-dark);
      line-height: 1.15;
      margin: 0;
    }
.testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 32px;
    }
.testimonial-card {
      background: white;
      border-radius: 16px;
      padding: 32px 28px;
      box-shadow: 0 4px 24px rgba(45,27,105,0.06);
      display: flex;
      flex-direction: column;
    }
.testimonial-stars {
      color: #FBBC04;
      font-size: 16px;
      letter-spacing: 2px;
      margin-bottom: 16px;
    }
.testimonial-quote {
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      line-height: 1.65;
      color: var(--text-dark);
      margin: 0 0 20px 0;
      flex: 1;
    }
.testimonial-attribution {
      font-family: 'Playfair Display', serif;
      font-size: 15px;
      font-weight: 600;
      font-style: italic;
      color: var(--purple-dark);
    }
.testimonials-footer {
      text-align: center;
    }
.testimonials-link {
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      color: var(--purple-mid);
      text-decoration: none;
      transition: color 0.2s;
    }
.testimonials-link:hover { color: var(--purple-dark); }

@media (max-width: 900px) {
  .testimonials-section { padding: 60px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonials-title { font-size: 30px; }
}

@media (max-width: 768px) {
  .nav-logo img { height: 56px; max-height: 56px; }
  .footer-brand img { height: 120px; max-height: 120px; }
  .cta-banner { padding: 60px 24px; }
  .cta-banner h2 { font-size: 32px; }
  .cta-actions { flex-direction: column; align-items: center; }
  footer { padding: 48px 24px 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

.estimator-section {
      padding: 60px 80px;
      max-width: 1400px;
      margin: 0 auto;
    }
.estimator-header {
      margin-bottom: 24px;
      text-align: center;
    }
.estimator-eyebrow {
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--purple-mid);
      margin-bottom: 8px;
      display: block;
    }
.estimator-title {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      font-weight: 700;
      color: var(--purple-dark);
      margin-bottom: 12px;
      line-height: 1.15;
    }
.estimator-intro {
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      color: var(--text-mid);
      line-height: 1.6;
      max-width: 640px;
      margin: 0 auto;
    }
.estimate-banner {
      background: var(--purple-pale);
      border-radius: 16px;
      padding: 20px 28px;
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      gap: 18px;
    }
.estimate-banner-icon {
      width: 44px; height: 44px;
      background: var(--purple-dark);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
.estimate-banner-icon svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; }
.estimate-banner-text h3 {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      color: var(--purple-dark);
      margin-bottom: 4px;
    }
.estimate-banner-text p {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.5;
    }
.estimator {
      border: 1px solid rgba(45,27,105,0.1);
      border-radius: 16px;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
    }
.form-side {
      padding: 32px 36px;
      background: var(--white);
      min-height: 460px;
      display: flex;
      flex-direction: column;
    }
.step-track {
      display: flex;
      gap: 6px;
      margin-bottom: 22px;
    }
.step-dot {
      flex: 1;
      height: 4px;
      background: rgba(45,27,105,0.08);
      border-radius: 100px;
      transition: background 0.3s;
    }
.step-dot.active { background: var(--purple-mid); }
.step-dot.done { background: var(--purple-dark); }
.step-track.three-step .step-dot[data-step="4"] { display: none; }
.step-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--purple-mid);
      margin-bottom: 6px;
    }
.options { display: grid; gap: 10px; }
.options.grid-2 { grid-template-columns: 1fr 1fr; }
.options.grid-4 { grid-template-columns: repeat(4, 1fr); }
.options.grid-5 { grid-template-columns: repeat(5, 1fr); }
.opt {
      border: 1px solid rgba(45,27,105,0.12);
      border-radius: 12px;
      padding: 14px 18px;
      background: var(--white);
      cursor: pointer;
      transition: all 0.18s ease;
      text-align: left;
      font-family: 'DM Sans', sans-serif;
      display: flex;
      flex-direction: column;
      gap: 3px;
    }
.opt:hover {
      border-color: var(--purple-mid);
      background: var(--purple-pale);
    }
.opt.selected {
      border-color: var(--purple-mid);
      background: var(--purple-pale);
      box-shadow: 0 0 0 1px var(--purple-mid);
    }
.opt-title {
      font-size: 14px;
      font-weight: 600;
      color: var(--purple-dark);
    }
.opt-sub {
      font-size: 12px;
      color: var(--text-mid);
      font-weight: 400;
      line-height: 1.4;
    }
.options.compact .opt {
      padding: 14px 0;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
.options.compact .opt-title {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 700;
    }
.opt.size-tile {
      padding: 18px 20px;
      gap: 6px;
      text-align: left;
    }
.opt.size-tile .opt-title {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--purple-dark);
      line-height: 1.2;
    }
.opt.size-tile .opt-sub {
      font-size: 13px;
      color: var(--text-mid);
      font-weight: 500;
    }
.opt.size-tile .opt-meta {
      font-size: 12px;
      color: var(--text-mid);
      opacity: 0.7;
      margin-top: 4px;
      line-height: 1.4;
    }
.opt-helper {
      border: 1px dashed rgba(45,27,105,0.2);
      border-radius: 12px;
      padding: 16px 20px;
      background: var(--purple-pale);
      display: flex;
      flex-direction: column;
      gap: 4px;
      cursor: default;
      pointer-events: none;
    }
.opt-helper-title {
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--purple-dark);
    }
.opt-helper-sub {
      font-size: 12px;
      color: var(--text-mid);
      line-height: 1.5;
    }
.form-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: auto;
      padding-top: 20px;
    }
.btn-back {
      background: none;
      border: none;
      color: var(--text-mid);
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: color 0.2s;
    }
.btn-back:hover { color: var(--purple-dark); }
.btn-back:disabled { opacity: 0.3; cursor: default; }
.btn-next {
      background: var(--purple-mid);
      color: white;
      padding: 12px 26px;
      border-radius: 6px;
      border: none;
      font-weight: 500;
      font-size: 15px;
      cursor: pointer;
      transition: background 0.2s;
      font-family: 'DM Sans', sans-serif;
    }
.btn-next:hover { background: var(--purple-dark); }
.btn-next:disabled {
      background: rgba(45,27,105,0.15);
      color: rgba(45,27,105,0.4);
      cursor: not-allowed;
    }
.result-side {
      background: var(--purple-pale);
      padding: 32px 36px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
.result-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--purple-mid);
      margin-bottom: 16px;
    }
.summary-block {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(45,27,105,0.08);
      margin-bottom: 20px;
    }
.summary-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 20px;
      border-bottom: 1px solid rgba(45,27,105,0.06);
    }
.summary-row:last-child { border-bottom: none; }
.summary-label { font-size: 13px; color: var(--text-mid); font-weight: 500; }
.summary-value {
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      color: var(--purple-dark);
      font-weight: 600;
    }
.summary-value.empty {
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 400;
      color: rgba(74,74,106,0.4);
    }
.summary-empty-msg {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      color: var(--purple-dark);
      line-height: 1.3;
      margin-bottom: 24px;
      font-weight: 600;
    }
.result-card { display: none; }
.result-card.active { display: block; }
.estimate-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--purple-light);
      color: var(--purple-dark);
      padding: 6px 14px;
      border-radius: 100px;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 20px;
    }
.estimate-pill::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--purple-dark);
      border-radius: 50%;
    }
.price-prefix {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 18px;
      color: var(--purple-mid);
      margin-bottom: 2px;
      display: block;
    }
.price-amount {
      font-family: 'Playfair Display', serif;
      font-size: 60px;
      font-weight: 700;
      color: var(--purple-dark);
      line-height: 1;
      letter-spacing: -0.02em;
    }
.price-amount .dollar {
      font-size: 32px;
      vertical-align: top;
      margin-right: 4px;
      position: relative;
      top: 12px;
    }
.price-cadence {
      font-size: 12px;
      color: var(--text-mid);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-top: 6px;
      margin-bottom: 18px;
    }
.note-box-est {
      background: white;
      border-left: 3px solid var(--purple-mid);
      border-radius: 0 8px 8px 0;
      padding: 16px 20px;
      margin-bottom: 24px;
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.6;
    }
.note-box-est strong { color: var(--purple-dark); font-weight: 600; }
.breakdown {
      background: white;
      border: 1px solid rgba(45,27,105,0.08);
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 24px;
    }
.breakdown-row {
      display: flex;
      justify-content: space-between;
      padding: 12px 18px;
      font-size: 14px;
      color: var(--text-mid);
      border-bottom: 1px solid rgba(45,27,105,0.06);
    }
.breakdown-row:last-child { border-bottom: none; }
.breakdown-row.total {
      background: var(--purple-pale);
      color: var(--purple-dark);
      font-weight: 600;
    }
.result-actions { display: flex; flex-direction: column; gap: 10px; }
.btn-book {
      background: var(--purple-dark);
      color: white;
      padding: 15px 32px;
      border-radius: 6px;
      border: none;
      text-align: center;
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      font-family: 'DM Sans', sans-serif;
    }
.btn-book:hover { background: var(--purple-mid); transform: translateY(-1px); }
.btn-restart {
      background: transparent;
      color: var(--purple-dark);
      border: 1px solid rgba(45,27,105,0.2);
      padding: 13px 30px;
      border-radius: 6px;
      text-align: center;
      font-weight: 500;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.2s;
      font-family: 'DM Sans', sans-serif;
    }
.btn-restart:hover { border-color: var(--purple-mid); color: var(--purple-mid); }
.step { display: none; flex-direction: column; flex: 1; }
.step.active { display: flex; }
.confirmation { display: none; text-align: center; padding: 8px 0; }
.confirmation.active { display: block; }
.confirmation-icon {
      width: 56px; height: 56px;
      background: var(--purple-dark);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }
.confirmation-icon svg { width: 28px; height: 28px; }
.confirmation-title {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--purple-dark);
      margin-bottom: 12px;
    }
.confirmation-body {
      font-size: 15px;
      color: var(--text-mid);
      line-height: 1.6;
      margin-bottom: 16px;
    }
.confirmation-meta {
      font-size: 13px;
      color: var(--text-mid);
      line-height: 1.6;
      margin-bottom: 24px;
      padding-top: 16px;
      border-top: 1px solid rgba(45,27,105,0.08);
    }
.confirmation-meta a {
      color: var(--purple-mid);
      text-decoration: none;
      font-weight: 600;
    }
.confirmation-meta a:hover { color: var(--purple-dark); }
.result-card.confirmed .estimate-pill,
    .result-card.confirmed .price-prefix,
    .result-card.confirmed .price-amount,
    .result-card.confirmed .price-cadence,
    .result-card.confirmed .note-box-est,
    .result-card.confirmed .breakdown,
    .result-card.confirmed #est-result-actions { display: none; }
.quote-request-panel {
      display: none;
      text-align: center;
      padding: 8px 0 16px;
    }
.quote-request-title {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--purple-dark);
      margin-bottom: 12px;
      line-height: 1.2;
    }
.quote-request-body {
      font-size: 15px;
      color: var(--text-mid);
      line-height: 1.6;
      max-width: 400px;
      margin: 0 auto;
    }
.result-card.quote-request .estimate-pill,
    .result-card.quote-request .price-prefix,
    .result-card.quote-request .price-amount,
    .result-card.quote-request .price-cadence,
    .result-card.quote-request #est-result-note,
    .result-card.quote-request #est-breakdown { display: none; }
.result-card.quote-request #est-quote-request { display: block; }

@media (max-width: 900px) {
  .estimator-section { padding: 40px 20px; }
  .estimator { grid-template-columns: 1fr; }
  .form-side { padding: 28px 24px; min-height: auto; }
  .result-side { padding: 28px 24px; }
  .options.grid-2 { grid-template-columns: 1fr; }
  .options.grid-4 { grid-template-columns: repeat(2, 1fr); }
  .options.grid-5 { grid-template-columns: repeat(3, 1fr); }
  .price-amount { font-size: 56px; }
  .price-amount .dollar { font-size: 30px; top: 10px; }
  .estimate-banner { flex-direction: column; align-items: flex-start; padding: 20px; }
}

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

/* Footer "All of Tampa Bay" anchor lands below the sticky nav */
#where-we-clean { scroll-margin-top: 100px; }
