/* ===== MAIDS OF HONOLULU — Global Styles ===== */

:root {
  --navy:    #1B72AD;
  --navy-dk: #163050;
  --yellow:  #F5C300;
  --white:   #FFFFFF;
  --off-wh:  #F4F7FA;
  --gray-lt: #ECEFF1;
  --gray:    #78909C;
  --dark:    #1a1a2e;
  --radius:  6px;
  --shadow:  0 2px 12px rgba(0,0,0,.12);
  --trans:   .25s ease;
}

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

html { scroll-behavior: smooth; }
/* Never let a stray wide element widen the page on phones — it breaks
   position:fixed (the popup) in mobile browsers */
html, body { overflow-x: clip; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #333;
  background: var(--white);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--navy-dk); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(1.9rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { margin-bottom: .9rem; }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT ===== */
.container { max-width: 1120px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 72px 0; }
.section-alt { background: var(--off-wh); }
.section-title { text-align: center; margin-bottom: 2.5rem; color: var(--navy-dk); }
.section-title span { color: var(--navy); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--trans), color var(--trans), border-color var(--trans);
  text-align: center;
}
.btn-primary { background: var(--yellow); color: var(--navy-dk); }
.btn-primary:hover { background: #d4a900; color: var(--navy-dk); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy-dk); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dk); color: var(--white); }

/* Keep legacy class names working */
.btn-teal  { background: var(--navy); color: var(--white); }
.btn-teal:hover { background: var(--navy-dk); color: var(--white); }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--navy-dk);
  color: var(--white);
  text-align: center;
  padding: .55rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .2px;
}
.announcement-bar a { color: var(--yellow); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .6rem;
  padding-bottom: .6rem;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.navbar-brand img { height: 52px; width: auto; }
.navbar-brand-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-dk);
  line-height: 1.2;
}
.navbar-brand-text span { color: var(--navy); display: block; font-size: .8rem; font-weight: 600; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.nav-links a {
  font-weight: 600;
  color: var(--navy-dk);
  font-size: .95rem;
  padding: .25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--trans), color var(--trans);
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); border-bottom-color: var(--navy); }

.nav-cta .btn { padding: .55rem 1.25rem; font-size: .9rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: .25rem;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy-dk);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: url('../images/20230116_GJP_232_RT_LoRes_Web-1920w.jpg') center 30% / cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22, 48, 80, 0.80);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; width: 100%; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: flex-end;
  gap: 2rem;
}
.hero-content { max-width: 620px; }

.hero-content { color: var(--white); padding: 3rem 0 2rem; }
.hero-content h1 { margin-bottom: 1rem; }

.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy-dk);
  font-size: .85rem;
  font-weight: 700;
  padding: .3rem .8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  letter-spacing: .5px;
}
.hero-content p { font-size: 1.1rem; margin-bottom: 1.75rem; opacity: .92; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-phone {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hero-phone a { color: var(--yellow); }

.hero-img-col {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  max-height: 520px;
}
.hero-img-col img {
  max-height: 520px;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,.35));
}

/* Two side-by-side panels (home: guarantee + estimate) */
.panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
/* Contact: areas served */
.areas-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; max-width: 800px; margin: 0 auto; }
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }

/* ===== PHOTO GRID ===== */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: .75rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.photo-grid a:hover img { transform: scale(1.04); }
.photo-grid-wrap { overflow: hidden; border-radius: var(--radius); }

/* ===== AREAS SERVED ===== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: .5rem 1rem;
  margin-top: 1.5rem;
}
.areas-grid li {
  list-style: none;
  padding: .4rem .6rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--navy);
  font-size: .9rem;
}

/* ===== SERVICES CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 6px 24px rgba(0,0,0,.16); }
.card-img { height: 200px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-icon {
  background: var(--navy);
  color: var(--white);
  font-size: 2.2rem;
  padding: 1.5rem;
  text-align: center;
}
.card-body { padding: 1.25rem; }
.card-body h3 { margin-bottom: .5rem; color: var(--navy-dk); }
.card-body .btn { margin-top: 1rem; font-size: .875rem; padding: .5rem 1rem; }

/* ===== WHY CHOOSE ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
  text-align: center;
}
.why-item { padding: 1.5rem; }
.why-icon {
  font-size: 2.5rem;
  margin-bottom: .75rem;
  display: block;
}
.why-item h3 { color: var(--navy-dk); margin-bottom: .5rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--yellow);
}
.testimonial-stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: .5rem; }
.testimonial blockquote { font-style: italic; margin-bottom: .75rem; }
.testimonial cite { font-weight: 700; font-size: .9rem; color: var(--navy-dk); }

/* ===== TRUST BADGES ===== */
.trust-bar {
  background: var(--navy-dk);
  padding: 1.25rem 0;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
}
.trust-badge img { height: 36px; width: auto; filter: brightness(0) invert(1); }
.trust-badge .icon { font-size: 1.4rem; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: .35rem; font-size: .9rem; color: var(--navy-dk); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .65rem 1rem;
  border: 1.5px solid #CFD8DC;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  color: #333;
  transition: border-color var(--trans);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  display: none;
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: #2E7D32;
  font-weight: 600;
  margin-top: 1rem;
}

/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-lt); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-dk);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--navy);
  flex-shrink: 0;
  transition: transform var(--trans);
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 1rem; }

/* ===== CHECKLIST ===== */
.checklist { list-style: none; margin: 1rem 0; }
.checklist li {
  padding: .4rem 0 .4rem 1.75rem;
  position: relative;
  font-size: .95rem;
}
.checklist li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--navy);
  font-weight: 700;
}

/* ===== SERVICE DETAIL ===== */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.service-detail-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #0f2340 0%, var(--navy-dk) 55%, var(--navy) 100%);
  color: var(--white);
  padding: 64px 0 56px;
  text-align: center;
}
.page-hero h1 { margin-bottom: .5rem; }
.page-hero p { font-size: 1.1rem; opacity: .88; max-width: 560px; margin: 0 auto; }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--navy-dk);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}
.cta-band h2 { margin-bottom: .75rem; }
.cta-band p { margin-bottom: 1.5rem; opacity: .88; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dk);
  color: #cdd8e3;
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-logo-box {
  display: inline-block;
  background: var(--white);
  border-radius: 8px;
  padding: .5rem .75rem;
  margin-bottom: 1.25rem;
}
.footer-logo-box img { height: 52px; width: auto; display: block; }

.footer-brand h4 { color: var(--white); font-size: 1rem; margin-bottom: .75rem; }
.footer-brand p  { font-size: .9rem; margin-bottom: .3rem; color: #cdd8e3; }
.footer-brand a  { color: #cdd8e3; }
.footer-brand a:hover { color: var(--yellow); }

.footer-col h4 { color: var(--white); margin-bottom: 1rem; font-size: 1rem; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul a { color: #cdd8e3; font-size: .9rem; text-decoration: underline; }
.footer-col ul a:hover { color: var(--yellow); }

.footer-hours p { font-size: .9rem; margin-bottom: .25rem; color: #cdd8e3; }

.footer-social {
  display: flex;
  gap: .6rem;
  margin: 1.1rem 0;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  overflow: hidden;
  transition: opacity var(--trans);
}
.footer-social a:hover { opacity: .85; }
.footer-social a.fb  { background: #1877F2; }
.footer-social a.yelp { background: #D32323; }
.footer-social a.gmb  { background: var(--white); }
.footer-social img { width: 22px; height: 22px; }
.footer-social a.fb img,
.footer-social a.yelp img { filter: brightness(0) invert(1); }

.footer-payment-icons {
  display: flex;
  gap: .6rem;
  align-items: center;
  margin: .75rem 0 .5rem;
}
.footer-payment-icons img { height: 38px; width: auto; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .82rem;
  color: #8fa8be;
}
.footer-bottom a { color: #8fa8be; text-decoration: underline; }
.footer-bottom a:hover { color: var(--yellow); }

/* ===== POPUP / MODAL ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.popup-overlay.hidden { display: none; }
.popup-box {
  background: var(--white);
  border-radius: 12px;
  max-width: 460px;
  width: 100%;
  max-height: calc(100vh - 2rem);
  max-height: calc(100dvh - 2rem);
  overflow: hidden auto;
  box-shadow: 0 8px 40px rgba(0,0,0,.28);
  animation: popIn .35s ease;
}
@keyframes popIn {
  from { transform: scale(.85); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.popup-header {
  background: linear-gradient(135deg, #0f2340, var(--navy-dk));
  color: var(--white);
  padding: 1.75rem 2rem;
  text-align: center;
}
.popup-header .promo-badge {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.popup-header h2 { font-size: 1.35rem; margin-top: .3rem; }
.popup-body { padding: 1.5rem 2rem 2rem; }
.popup-offer-list { list-style: none; margin: 1rem 0 1.5rem; }
.popup-offer-list li {
  padding: .5rem 0 .5rem 1.75rem;
  position: relative;
  font-size: .95rem;
  border-bottom: 1px solid var(--gray-lt);
}
.popup-offer-list li::before { content: '🌺'; position: absolute; left: 0; }
.popup-actions { display: flex; flex-direction: column; gap: .75rem; }
.popup-dismiss {
  background: none;
  border: none;
  color: var(--gray);
  font-size: .85rem;
  cursor: pointer;
  text-align: center;
  padding: .25rem;
}
.popup-dismiss:hover { color: #333; }
.popup-close {
  position: absolute;
  top: .75rem;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

/* ===== JOBS PAGE ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.benefit-card .icon { font-size: 2rem; margin-bottom: .5rem; }
.benefit-card h3 { font-size: 1rem; color: var(--navy-dk); }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  background: var(--navy-dk);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-info-card h3 { margin-bottom: 1.25rem; }
.contact-info-item {
  display: flex;
  gap: .75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}
.contact-info-item .icon { font-size: 1.25rem; flex-shrink: 0; margin-top: .1rem; }
.contact-info-item a { color: var(--yellow); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: .75rem 0;
  font-size: .875rem;
  color: var(--gray);
}
.breadcrumb a { color: var(--navy); }
.breadcrumb span { margin: 0 .4rem; }

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.team-member-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2.5rem;
  border: 4px solid var(--yellow);
}
.team-member h3 { color: var(--navy-dk); }
.team-member p { font-size: .9rem; color: var(--gray); }

/* ===== ABOUT SECTION IMAGE ===== */
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img img { width: 100%; height: 400px; object-fit: cover; }

/* ===== STATS BOX ===== */
.stats-box {
  background: var(--off-wh);
  border-radius: var(--radius);
  padding: 2rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: center;
}
.stat-number { font-size: 2.5rem; font-weight: 900; color: var(--yellow); line-height: 1; }
.stat-label { font-size: .9rem; color: var(--gray); margin-top: .25rem; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .section { padding: 48px 0; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 1rem 1.25rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    gap: .75rem;
  }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .navbar { position: relative; }

  /* Phones: single column, drop the stacked cutout photo (the background
     photo already shows the team) so the hero stays one screen tall */
  .hero { min-height: auto; padding: 0; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-content { padding: 2.5rem 0 2.5rem; }
  .hero-img-col { display: none; }
  .hero-actions { flex-direction: column; }
  .panel-grid, .areas-grid, .form-row-3 { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  .form-row { grid-template-columns: 1fr; }

  .service-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .photo-grid { grid-template-rows: 200px 200px; }

  .popup-header .promo-badge { font-size: 2.8rem; }

  .trust-bar .container { gap: 1.25rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .photo-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 200px); }
}

/* ===== INSTANT ESTIMATE ===== */
.estimate-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
}
.estimate-step {
  color: var(--navy-dk);
  font-size: 1.15rem;
  margin: 0 0 1.25rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--yellow);
}
.estimate-step + .form-group, .form-row + .estimate-step { margin-top: 0; }
.form-group + .estimate-step, .form-row + .estimate-step { margin-top: 2rem; }

.choice-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
.choice { position: relative; cursor: pointer; }
.choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.choice span {
  display: block;
  text-align: center;
  padding: .7rem .5rem;
  border: 1.5px solid #CFD8DC;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy-dk);
  transition: all var(--trans);
}
.choice input:checked + span { background: var(--navy); border-color: var(--navy); color: var(--white); }
.choice input:focus-visible + span { outline: 2px solid var(--yellow); outline-offset: 2px; }

.estimate-submit { width: 100%; font-size: 1.05rem; padding: .9rem; margin-top: .5rem; }
.estimate-note { font-size: .85rem; color: var(--gray); text-align: center; margin-top: 1rem; }
.estimate-error {
  background: #FDECEA; border: 1px solid #F5C6C2; color: #B3261E;
  border-radius: var(--radius); padding: .85rem 1rem; margin-top: 1rem; font-size: .95rem;
}

.estimate-result { text-align: center; }
.estimate-headline { font-size: 1.1rem; font-weight: 600; color: var(--navy-dk); }
.estimate-price { font-size: 2.6rem; font-weight: 800; color: var(--navy); line-height: 1.2; margin: .35rem 0; }
.estimate-detail { color: #555; margin-bottom: 1.5rem; }
.estimate-offer {
  background: #FFF8DB; border: 1px solid var(--yellow); border-radius: var(--radius);
  padding: 1rem 1.25rem; margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
  .estimate-card { padding: 1.5rem; }
  .choice-group { grid-template-columns: 1fr; }
  .estimate-price { font-size: 2.1rem; }
}

/* ===== HOW IT WORKS / CLEANING TYPES / 22 STEPS ===== */
.how-grid, .types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.how-step { text-align: center; }
.how-num {
  width: 48px; height: 48px; margin: 0 auto 1rem;
  border-radius: 50%; background: var(--yellow); color: var(--navy-dk);
  font-weight: 800; font-size: 1.3rem; display: flex; align-items: center; justify-content: center;
}
.how-step h3, .type-card h3 { color: var(--navy-dk); margin-bottom: .5rem; font-size: 1.1rem; }
.how-step p, .type-card p { color: #555; }
.type-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.75rem; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; max-width: 960px; margin: 0 auto; }
.steps-grid h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: .6rem; padding-bottom: .4rem; border-bottom: 2px solid var(--yellow); }
.steps { padding-left: 1.6rem; line-height: 1.9; color: #444; }
.steps li::marker { color: var(--navy); font-weight: 700; }

.field-hint { font-size: .85rem; color: var(--gray); margin: -.15rem 0 .6rem; }
.estimate-why { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem .75rem; margin: 0 0 1.25rem; padding: 0; }
.estimate-why li { font-size: .85rem; font-weight: 600; color: var(--navy-dk); background: var(--off-wh); border-radius: 999px; padding: .35rem .85rem; }
.estimate-fineprint { font-size: .85rem; color: var(--gray); margin-bottom: 1.5rem; }

@media (max-width: 768px) {
  .how-grid, .types-grid, .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

