body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f7fa;
}

header {
    background: #0d6efd;
    color: white;
    text-align: center;
    padding: 30px;
}

main {
    display: flex;
    justify-content: center;
    padding: 40px;
}

.card {
    background: white;
    width: 700px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,.15);
    padding: 30px;
}

button {
    background: #0d6efd;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background: #0b5ed7;
}#map {
  width: 100%;
  height: 500px;
  margin-top: 20px;
  border-radius: 10px;
}
.address-search {
    margin: 24px 0;
}

.address-search label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.address-row {
    display: flex;
    gap: 10px;
}

.address-row input {
    flex: 1;
    padding: 12px;
    border: 1px solid #b8c2cc;
    border-radius: 6px;
    font-size: 16px;
}

#message {
    min-height: 24px;
    margin-top: 10px;
    color: #374151;
}

@media (max-width: 650px) {
    .address-row {
        flex-direction: column;
    }

    .address-row button {
        width: 100%;
    }
}
.status-panel {
  width: 100%;
  max-width: 900px;
  margin: 24px auto 0;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #d9e2e8;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.status-panel-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.status-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 25px;
  background: #eef7fb;
  border-radius: 50%;
}

.status-panel-header h2 {
  margin: 0;
  font-size: 22px;
  color: #1f2d36;
}

.status-panel-header p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #6a7780;
}

.status-progress-bar {
  width: 100%;
  height: 10px;
  margin-bottom: 22px;
  overflow: hidden;
  background: #e7edf1;
  border-radius: 999px;
}

.status-progress-fill {
  width: 25%;
  height: 100%;
  background: #2d8fbd;
  border-radius: 999px;
  transition: width 0.3s ease;
}

.status-message {
  padding: 18px;
  margin-bottom: 22px;
  background: #f6fafc;
  border-left: 5px solid #2d8fbd;
  border-radius: 8px;
}

.status-message h3 {
  margin: 0 0 7px;
  font-size: 18px;
  color: #1f2d36;
}

.status-message p {
  margin: 0;
  line-height: 1.5;
  color: #4f5f69;
}

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

.status-step {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px;
  color: #7a858c;
  background: #f3f5f6;
  border-radius: 8px;
}

.status-step-marker {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  font-size: 13px;
  font-weight: 700;
  color: #6e7980;
  background: #ffffff;
  border: 2px solid #bcc6cc;
  border-radius: 50%;
}

.status-step.active {
  font-weight: 600;
  color: #1f2d36;
  background: #eaf5fa;
}

.status-step.active .status-step-marker {
  color: #ffffff;
  background: #2d8fbd;
  border-color: #2d8fbd;
}

.status-step.complete {
  color: #245f38;
  background: #e9f6ed;
}

.status-step.complete .status-step-marker {
  color: #ffffff;
  background: #3b9155;
  border-color: #3b9155;
}

@media (max-width: 700px) {
  .status-panel {
    padding: 18px;
  }

  .status-steps {
    grid-template-columns: 1fr;
  }
}
.status-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

#continueBtn {
  min-width: 150px;
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background: #2d8fbd;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

#continueBtn:hover:not(:disabled) {
  transform: translateY(-1px);
}

#continueBtn:disabled {
  color: #7d878d;
  background: #d9e0e4;
  cursor: not-allowed;
  opacity: 0.8;
}
/* ===============================
   SHARED HEADER
   =============================== */

.site-header {
    display: flex;
    justify-content: center;
    padding: 16px 20px 14px;
    background: #ffffff;
    border-bottom: 1px solid #e3e7eb;
}

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

.brand-name {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 29px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.8px;
}

.brand-green {
    color: #3dbb3d;
}

.brand-dark {
    color: #202124;
}

.brand-tagline {
    margin: 5px 0 0;
    font-family: "Inter", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #5f6368;
}

/* ===============================
   CUSTOMER JOURNEY BAR
   =============================== */

.journey-bar {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: min(860px, calc(100% - 32px));
    margin: 20px auto;
    padding: 16px 20px;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #e3e7eb;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.journey-step {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    min-width: 82px;
    font-family: "Inter", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #8a949a;
    text-align: center;
}

.journey-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 8px;
    color: #7a858c;
    background: #ffffff;
    border: 2px solid #c7d0d5;
    border-radius: 50%;
    box-sizing: border-box;
}

.journey-step.active {
    color: #202124;
}

.journey-step.active .journey-marker {
    color: #ffffff;
    background: #3dbb3d;
    border-color: #3dbb3d;
}

.journey-step.complete {
    color: #2e7d32;
}

.journey-step.complete .journey-marker {
    color: #ffffff;
    background: #2e9d44;
    border-color: #2e9d44;
}

.journey-line {
    flex: 1 1 90px;
    min-width: 35px;
    max-width: 130px;
    height: 3px;
    margin: 16px 8px 0;
    background: #dfe5e8;
    border-radius: 999px;
}

.journey-line.complete {
    background: #2e9d44;
}

@media (max-width: 650px) {
    .site-header {
        padding-top: 20px;
    }

    .brand-name {
        font-size: 28px;
    }

    .journey-bar {
        width: calc(100% - 24px);
        padding: 16px 10px;
    }

    .journey-step {
        min-width: 58px;
        font-size: 11px;
    }

    .journey-marker {
        width: 30px;
        height: 30px;
    }

    .journey-line {
        min-width: 12px;
        margin-right: 2px;
        margin-left: 2px;
        margin-top: 14px;
    }
}
/* ===============================
   WELCOME CARD
   =============================== */

.welcome-card {
    width: min(900px, calc(100% - 32px));
    margin: 0 auto 28px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e3e7eb;
    border-left: 6px solid #3dbb3d;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    box-sizing: border-box;
}

.welcome-header {
    display: flex;
    align-items: center;
    gap: 18px;
}

.welcome-icon {
    font-size: 40px;
}

.welcome-header h2 {
    margin: 0;
    font-size: 28px;
    color: #202124;
}

.welcome-time {
    margin-top: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #2e9d44;
}

.welcome-description {
    margin: 22px 0;
    font-size: 17px;
    line-height: 1.7;
    color: #5f6368;
}

.welcome-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}
.welcome-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #f7f9fb;
    border-radius: 8px;
    font-weight: 600;
    color: #202124;
}

@media (max-width: 700px) {

    .welcome-card {
        width: calc(100% - 24px);
        padding: 22px;
    }

    .welcome-header {
        flex-direction: column;
        text-align: center;
    }

    .welcome-checklist {
        grid-template-columns: 1fr;
    }

    .welcome-header h2 {
        font-size: 24px;
    }
}

/* ==================================================
   SIGNUP PAGE
   ================================================== */

.signup-page {
    width: min(1000px, calc(100% - 32px));
    margin: 0 auto 50px;
}

.signup-heading {
    margin: 10px 0 28px;
    text-align: center;
}

.signup-heading h1 {
    margin: 8px 0 12px;
    font-size: 36px;
    color: #202124;
}

.signup-heading p:last-child {
    max-width: 700px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.6;
    color: #5f6368;
}

.property-summary-card,
.signup-form-card {
    background: #ffffff;
    border: 1px solid #e3e7eb;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    padding: 30px;
    margin-bottom: 24px;
}

.property-confirmed-label {
    color: #2e9d44;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-section-heading {
    margin-bottom: 24px;
}

.form-section-heading h2 {
    margin: 6px 0 0;
    font-size: 26px;
    color: #202124;
}

.section-label {
    color: #2e9d44;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .08em;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-field label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #202124;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 14px;
    font-size: 16px;
    border: 1px solid #cfd8dc;
    border-radius: 8px;
    box-sizing: border-box;
    width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #2d8fbd;
    box-shadow: 0 0 0 3px rgba(45,143,189,.15);
}

.optional-label {
    color: #6b7280;
    font-size: 13px;
    font-weight: normal;
}

.signup-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
}

.primary-button,
.secondary-button {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: .2s;
}

.primary-button {
    background: #2d8fbd;
    color: white;
    border: none;
    cursor: pointer;
}

.primary-button:hover {
    background: #2578a0;
}

.secondary-button {
    background: white;
    color: #2d8fbd;
    border: 2px solid #2d8fbd;
}

.secondary-button:hover {
    background: #f4fbff;
}

#signupMessage {
    margin-top: 20px;
    text-align: center;
    font-weight: 600;
}

@media (max-width: 768px) {

    .signup-page {
        width: calc(100% - 24px);
    }

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

    .property-summary-header,
    .signup-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        text-align: center;
    }

    .signup-heading h1 {
        font-size: 30px;
    }
}

/* Fix signup page being arranged in narrow columns */
main.signup-page {
    display: block;
    padding: 0;
}

#signupForm {
    width: 100%;
}
/* ==========================================
   PROPERTY SUMMARY CARD ENHANCEMENTS
   ========================================== */

.property-summary-content {
    flex: 1;
}

.property-summary-text {
    margin: 16px 0 20px;
    font-size: 17px;
    color: #5f6368;
    line-height: 1.6;
}

.property-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #2e7d32;
}

.property-summary-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 220px;
    gap: 14px;
    text-align: center;
}

.property-edit-text {
    margin: 0;
    font-size: 15px;
    color: #6b7280;
}

#confirmedAddress {
    margin: 10px 0;
    font-size: 36px;
    font-weight: 800;
    color: #202124;
    line-height: 1.2;
}

/* ==========================================
   PROPERTY PAGE LAYOUT REFINEMENT
   ========================================== */

.property-page {
    display: block;
    width: min(1000px, calc(100% - 32px));
    margin: 0 auto 48px;
    padding: 0;
}

.property-card {
    width: 100%;
    box-sizing: border-box;
}

.property-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.property-card-title {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.property-card-title .section-label {
    margin: 0;
    white-space: nowrap;
}

.property-card-title h2 {
    margin: 0;
    font-size: 26px;
    color: #2e9d44;
}

.address-search {
    margin: 0 0 24px;
}

.address-search label {
    margin-bottom: 10px;
}

.address-row input {
    min-height: 48px;
    box-sizing: border-box;
}

.address-row button {
    min-height: 48px;
    white-space: nowrap;
}

#message {
    margin: 10px 0 0;
}

/* Reduce the oversized map */
#map {
    height: 360px;
    margin-top: 24px;
}

/* Bottom navigation buttons */
.status-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 24px;
}

.status-actions .secondary-button,
.status-actions #continueBtn {
    min-width: 165px;
    box-sizing: border-box;
    text-align: center;
}

@media (max-width: 700px) {
    .property-page {
        width: calc(100% - 24px);
    }

    .property-card-title {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    #map {
        height: 300px;
    }

    .status-actions {
        flex-direction: column-reverse;
    }

    .status-actions .secondary-button,
    .status-actions #continueBtn {
        width: 100%;
    }
}
/* ==========================================
   WELCOME STEP LIST
   ========================================== */

.welcome-checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.welcome-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #f7f9fb;
    border-radius: 10px;
    font-weight: 600;
    color: #202124;
}

.welcome-step-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #3dbb3d;
    color: white;

    font-size: 15px;
    font-weight: 700;
}
.marker-green {
    color: #2e9d44;
    font-weight: 700;
}

.marker-red {
    color: #d32f2f;
    font-weight: 700;
}
/* ==========================================
   STEP 1 — FIND PROPERTY PAGE
   ========================================== */

.address-page {
    display: block;
    width: min(820px, calc(100% - 32px));
    margin: 44px auto 60px;
    padding: 0;
}

.address-card {
    padding: 42px;
    background: #ffffff;
    border: 1px solid #e3e7eb;
    border-left: 6px solid #3dbb3d;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

.address-card-heading {
    margin-bottom: 30px;
}

.address-card-heading h1 {
    margin: 8px 0 14px;
    font-size: 34px;
    color: #202124;
}

.address-introduction {
    max-width: 680px;
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #5f6368;
}

.address-card .form-field {
    margin-bottom: 0;
}

.address-card .form-field label {
    display: block;
    margin-bottom: 9px;
    font-size: 16px;
    font-weight: 700;
    color: #202124;
}

.address-card input {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    font-size: 17px;
    border: 1px solid #cfd8dc;
    border-radius: 8px;
    box-sizing: border-box;
}

.address-card input:focus {
    outline: none;
    border-color: #2d8fbd;
    box-shadow: 0 0 0 3px rgba(45, 143, 189, 0.15);
}

.form-message {
    min-height: 24px;
    margin: 10px 0 0;
    color: #c62828;
    font-weight: 600;
}

.address-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 26px;
}

.address-actions .primary-button {
    min-width: 150px;
}

@media (max-width: 650px) {
    .address-page {
        width: calc(100% - 24px);
        margin-top: 28px;
    }

    .address-card {
        padding: 28px 22px;
    }

    .address-card-heading h1 {
        font-size: 29px;
    }

    .address-actions .primary-button {
        width: 100%;
    }
}
/* ==========================================
   STEP 2 — MARK BIN LOCATIONS
   ========================================== */

.markers-page {
    display: block;
    width: min(1000px, calc(100% - 32px));
    margin: 34px auto 60px;
    padding: 0;
}

.markers-heading {
    margin-bottom: 24px;
    text-align: center;
}

.markers-heading h1 {
    margin: 8px 0 10px;
    font-size: 34px;
    color: #202124;
}

#confirmedPropertyAddress {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: #5f6368;
}

.marker-instructions-card,
.markers-map-card {
    margin-bottom: 24px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e3e7eb;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

.marker-instructions-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.marker-instruction {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #f7f9fb;
    border-radius: 10px;
    font-weight: 600;
    line-height: 1.5;
}

.instruction-number {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #ffffff;
    background: #3dbb3d;
    border-radius: 50%;
    font-weight: 700;
}

.markers-map-card #map {
    height: 360px;
    margin-top: 16px;
}

.markers-map-card .status-panel {
    max-width: none;
    margin-top: 24px;
}

@media (max-width: 700px) {
    .markers-page {
        width: calc(100% - 24px);
    }

    .marker-instructions-card,
    .markers-map-card {
        padding: 20px;
    }

    .markers-map-card #map {
        height: 300px;
    }
}

/* Dropdown placeholder styling */

select:invalid {
    color: #9ca3af;
}

select option {
    color: #202124;
}

select option[value=""] {
    color: #9ca3af;
}
/* =========================================================
   STEP 4: REVIEW & PAYMENT
   ========================================================= */

.review-page {
    min-height: 100vh;
    background: #f4f7f4;
    color: #1f2933;
}

.review-main {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 64px;
}

.review-container {
    width: min(820px, 100%);
    margin: 28px auto 0;
}

.review-heading {
    margin-bottom: 22px;
    text-align: center;
}

.review-heading h1 {
    margin: 4px 0 8px;
    font-size: clamp(1.55rem, 2.4vw, 1.85rem);
    line-height: 1.1;
    color: #173f2b;
    font-weight: 700;
}

.review-heading > p:last-child {
    max-width: 610px;
    margin: 0 auto;
    color: #5f6b65;
    font-size: 1rem;
    line-height: 1.6;
}

.step-eyebrow {
    margin: 0;
    color: #2f7d4a;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.review-card,
.secure-checkout-card {
    margin-bottom: 18px;
    padding: 26px;
    border: 1px solid #dce6df;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(28, 54, 39, 0.06);
}

.review-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.review-card-header h2,
.service-plan-card h2,
.secure-checkout-card h2 {
    margin: 3px 0 0;
    color: #173f2b;
    font-size: 1.3rem;
}

.review-card-label {
    margin: 0;
    color: #2f7d4a;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.11em;
}

.review-edit-link {
    flex-shrink: 0;
    color: #246b3c;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.review-edit-link:hover,
.review-edit-link:focus-visible {
    text-decoration: underline;
}

.review-address {
    margin: 0 0 18px;
    color: #24322a;
    font-size: 1.06rem;
    font-weight: 700;
    line-height: 1.6;
}

.saved-location-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.saved-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #355844;
    font-weight: 650;
}

.saved-location span,
.service-includes span {
    display: inline-grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: #e5f4e9;
    color: #23723d;
    font-size: 0.82rem;
    font-weight: 900;
}

.review-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.review-detail {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.review-detail-label {
    color: #68756e;
    font-size: 0.83rem;
    font-weight: 700;
}

.review-detail strong {
    color: #24322a;
    font-size: 1rem;
    overflow-wrap: anywhere;
}

.review-notes {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid #e6ece8;
}

.review-notes p {
    margin: 7px 0 0;
    color: #35423b;
    line-height: 1.6;
    white-space: pre-wrap;
}

.service-plan-card {
    border-color: #bed8c5;
    background: linear-gradient(145deg, #ffffff 0%, #f4faf5 100%);
}

.service-plan-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-top: 5px;
}

.service-plan-heading > div > p {
    margin: 7px 0 0;
    color: #617068;
    line-height: 1.5;
}

.service-price {
    display: flex;
    flex-shrink: 0;
    align-items: baseline;
    gap: 4px;
    margin: 0;
    color: #173f2b;
    text-align: right;
    white-space: nowrap;
}

.service-price strong {
    display: inline;
    color: #173f2b;
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1;
}

.service-price span {
    display: inline;
    margin: 0;
    color: #526158;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-includes {
    display: grid;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #dce9df;
}

.service-includes p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #33463a;
    font-weight: 650;
}

/* ==========================================
   SECURE CHECKOUT COMPONENT
   ========================================== */

.secure-checkout-card {
    display: block;
    margin-bottom: 18px;
    padding: 26px;
    background: #f8fbf9;
    border: 1px solid #dce6df;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(28, 54, 39, 0.06);
    box-sizing: border-box;
}

.secure-checkout-content {
    width: 100%;
}

.secure-checkout-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.secure-checkout-icon {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    background: #e4f1e7;
    border-radius: 12px;
    font-size: 1.25rem;
}

.secure-checkout-header h2 {
    margin: 2px 0 0;
    color: #173f2b;
    font-size: 1.3rem;
}

.secure-checkout-intro {
    margin: 8px 0 0;
    color: #5c6962;
    line-height: 1.6;
}

.security-highlights {
    width: 100%;
    margin-top: 0;
    padding: 18px 20px;
    background: #f0faf3;
    border-left: 5px solid #2e9d44;
    border-radius: 8px;
    box-sizing: border-box;
}

.security-highlights p {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 10px 0;
    color: #245f38;
    font-weight: 600;
    line-height: 1.5;
}

.security-highlights p:first-child {
    margin-top: 0;
}

.security-highlights p:last-child {
    margin-bottom: 0;
}

.security-highlights p span {
    flex-shrink: 0;
    font-weight: 800;
    color: #2e9d44;
}

.security-highlights .security-primary {
    color: #174d2a;
    font-weight: 750;
}

@media (max-width: 700px) {
    .secure-checkout-card {
        padding: 20px;
        border-radius: 14px;
    }

    .security-highlights {
        padding: 16px;
    }
}
.subscription-agreement {
    max-width: 650px;
    margin: 24px auto 18px;
    color: #68756e;
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: center;
}

.review-actions{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:24px;
    margin-top:24px;
}

.review-actions .secondary-button,
.review-actions .primary-button {
    min-width: 175px;
    text-align: center;
}

@media (max-width: 700px) {
    .review-main {
        width: min(100% - 22px, 1120px);
        padding-top: 18px;
    }

    .review-card,
    .secure-checkout-card {
        padding: 20px;
        border-radius: 14px;
    }

    .review-card-header,
    .service-plan-heading {
        flex-direction: column;
    }

    .review-detail-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-price {
        text-align: left;
    }

    .review-actions {
        flex-direction: column-reverse;
    }

    .review-actions .secondary-button,
    .review-actions .primary-button {
        width: 100%;
    }
}
/* Keep the Review page centered and full width */
.review-main {
    display: block;
}
/* =========================================================
   STEP 5: COMPLETE
   ========================================================= */

.complete-page {
    min-height: 100vh;
    background: #f4f7f4;
    color: #1f2933;
}

.complete-main {
    display: block;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 64px;
}

.complete-card {
    width: min(820px, 100%);
    margin: 28px auto 0;
    padding: 42px 36px;
    border: 1px solid #dce6df;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(28, 54, 39, 0.08);
    text-align: center;
}

.complete-celebration {
    margin-bottom: 10px;
    font-size: 3rem;
    line-height: 1;
}

.complete-card h1 {
    margin: 8px 0 10px;
    color: #173f2b;
    font-size: clamp(2.3rem, 6vw, 3.4rem);
    line-height: 1.05;
}

.complete-welcome {
    margin: 0;
    color: #2f7d4a;
    font-size: 1.3rem;
    font-weight: 800;
}

.complete-message {
    max-width: 610px;
    margin: 14px auto 30px;
    color: #5f6b65;
    font-size: 1.05rem;
    line-height: 1.7;
}

.complete-next-steps,
.complete-service-summary,
.complete-help {
    margin-top: 24px;
    padding: 26px;
    border: 1px solid #dfe8e2;
    border-radius: 15px;
    background: #f9fbf9;
    text-align: left;
}

.complete-next-steps h2,
.complete-service-summary h2,
.complete-help h2 {
    margin: 0;
    color: #173f2b;
    font-size: 1.3rem;
}

.complete-checklist {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.complete-checklist p {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0;
    color: #33463a;
    font-weight: 650;
}

.complete-checklist span {
    display: inline-grid;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    place-items: center;
    border-radius: 50%;
    background: #e5f4e9;
    color: #23723d;
    font-size: 0.84rem;
    font-weight: 900;
}

.complete-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 30px;
    margin-top: 22px;
}

.complete-summary-grid div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.complete-summary-grid span {
    color: #68756e;
    font-size: 0.83rem;
    font-weight: 700;
}

.complete-summary-grid strong {
    color: #24322a;
    font-size: 1rem;
    overflow-wrap: anywhere;
}

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

.complete-help p {
    margin: 8px 0 0;
    color: #5f6b65;
    line-height: 1.6;
}

.complete-home-button {
    display: inline-block;
    min-width: 180px;
    margin-top: 28px;
    text-align: center;
}

@media (max-width: 700px) {
    .complete-main {
        width: min(100% - 22px, 1120px);
        padding-top: 18px;
    }

    .complete-card {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .complete-next-steps,
    .complete-service-summary,
    .complete-help {
        padding: 20px;
    }

    .complete-summary-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .complete-home-button {
        width: 100%;
    }
}
/* ========================================
   VERSION 1.1 COMPACT LAYOUT
   ======================================== */

.address-card-heading h1 {
    font-size: 1.7rem;
    line-height: 1.15;
    margin: 10px 0 16px;
}
/* Compact spacing for Step 1 */

.address-card {
    padding-bottom: 24px;
}

.address-form {
    gap: 16px;
}

.address-actions {
    margin-top: 18px;
}
/* ==========================================
   STEP 3 — SIGNUP PAGE REFINEMENTS
   ========================================== */

/* Keep signup content centered */
.signup-form-card .form-section-heading,
.signup-form-card > .form-field,
.signup-form-card .form-row {
    width: min(760px, 100%);
    margin-left: auto;
    margin-right: auto;
}

/* Two-column Customer Information rows */
.signup-form-card .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

/* Ensure each paired field fits its column */
.signup-form-card .form-row .form-field {
    width: 100%;
    min-width: 0;
    margin-bottom: 18px;
}

/* Standard spacing for individual service fields */
.signup-form-card > .form-field {
    margin-bottom: 18px;
}

/* Mobile phone helper text */
.field-helper {
    margin: 7px 0 0;
    font-size: 0.82rem;
    line-height: 1.35;
    color: #667085;
}
.inline-helper {
    display: block;
    margin-top: 4px;
    margin-left: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    color: #6b7280;
}

/* Smaller confirmed property address */
#confirmedAddress {
    margin: 8px 0 12px;
    font-size: 1.75rem;
    line-height: 1.25;
}

/* Narrow Trash Day, Bin Count, and Gate Code fields */
.signup-form-card > .short-field {
    width: min(360px, 100%);
    margin-left: calc((100% - min(680px, 100%)) / 2);
    margin-right: auto;
}

/* Keep text areas compact */
.signup-form-card textarea {
    height: 72px;
    min-height: 72px;
    resize: vertical;
}

.optional-label {
    margin-left: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #9ca3af;
    vertical-align: middle;
}

@media (max-width: 700px) {
    .signup-form-card .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .signup-form-card > .short-field {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    #confirmedAddress {
        font-size: 1.45rem;
    }
}
.field-label-with-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}

.field-label-icon {
    display: inline-grid;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    place-items: center;
    background: #edf8ef;
    border-radius: 7px;
    font-size: 15px;
}
.field-help-inline {
    font-size: 0.88rem;
    font-weight: 400;
    color: #6b7280;
    margin-left: 6px;
}

.optional {
    color: #9ca3af;
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 4px;
}
.section-divider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 32px 0 18px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    font-size: 0.95rem;
    font-weight: 700;
    color: #374151;
}

.section-divider .optional {
    font-size: 0.85rem;
    font-weight: 500;
    color: #9ca3af;
}
.property-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}
.edit-property-panel {
    margin-top: 18px;
}

.edit-property-panel p {
    margin: 0 0 12px;
    color: #6b7280;
    font-size: 0.95rem;
}

.property-summary-content {
    flex: 1;
}

.edit-property-panel {
    text-align: center;
    min-width: 190px;
}

.edit-property-panel p {
    margin-bottom: 12px;
    color: #6b7280;
    font-size: .95rem;
}
.full-width-field {
    width: 100%;
    max-width: none;
}

.full-width-field textarea {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
}
.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
    display: block;
    box-sizing: border-box;
}

.full-width-field {
    width: 100%;
    max-width: none;
}

.full-width-field textarea {
    width: 100%;
    max-width: none;
    min-height: 90px;
    resize: vertical;
}
/* ==========================================
   SIGNUP FLOW HEADING HIERARCHY
   ========================================== */

/* Steps 1–4: consistent workflow headings */
.address-card-heading h1,
.markers-heading h1,
.signup-heading h1,
.review-heading h1 {
    margin: 6px 0 10px;
    font-size: clamp(1.55rem, 2.4vw, 1.85rem);
    line-height: 1.15;
    font-weight: 700;
}

/* Page-specific colors */
.address-card-heading h1,
.markers-heading h1,
.signup-heading h1 {
    color: #202124;
}

.review-heading h1 {
    color: #173f2b;
}

/* Keep Step 4 slightly tighter */
.review-heading {
    margin-bottom: 22px;
}

/* Step 5 remains larger and celebratory */
.complete-card h1 {
    margin: 8px 0 10px;
    font-size: clamp(2.3rem, 6vw, 3.4rem);
    line-height: 1.05;
    font-weight: 800;
    color: #173f2b;
}
.review-detail-label i{
    margin-right:8px;
    color:#2e9d44;
    font-size:.95rem;
}
/* ==========================================
   SIGNUP SERVICE ICON CONSISTENCY
   ========================================== */

.field-label-with-icon {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

.field-label-icon {
    display: inline-block;
    width: auto;
    height: auto;
    flex: 0 0 auto;
    color: #2e9d44;
    background: transparent;
    border-radius: 0;
    font-size: 0.95rem;
    line-height: 1;
}

.signup-form-card .form-section-heading h2 {
    color: #173f2b;
}

.signup-form-card .form-field label {
    color: #24322a;
}
/* Ensure empty optional Review fields stay hidden */
.review-detail[hidden],
.review-notes[hidden] {
    display: none !important;
}
/* ==========================================
   EDIT SECTION HIGHLIGHT
   ========================================== */

@keyframes highlightCard {

    0% {
        box-shadow: 0 0 0 rgba(46,157,68,0);
        border-color: #dce6df;
    }

    20% {
        box-shadow: 0 0 0 6px rgba(46,157,68,.18);
        border-color: #2e9d44;
    }

    60% {
        box-shadow: 0 0 0 10px rgba(46,157,68,.08);
    }

    100% {
        box-shadow: 0 8px 24px rgba(0,0,0,.06);
        border-color: #dce6df;
    }
}

.card-highlight {
    animation: highlightCard 1.8s ease;
}
.map-view-guidance {
    margin: 0 0 16px;
    padding: 14px 16px;
    border-left: 4px solid #2d8fbd;
    border-radius: 10px;
    background: #f3f9fc;
    color: #24333d;
}

.map-view-guidance strong {
    display: block;
    margin-bottom: 5px;
}

.map-view-guidance p {
    margin: 0;
    line-height: 1.5;
}
.map-help {
    margin: 10px 0 14px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    overflow: visible;
}

.map-help summary {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 2px 0;
    border: none;
    background: transparent;
    color: #174a73;
    font-weight: 600;
    list-style: none;
}

.map-help summary::-webkit-details-marker {
    display: none;
}

.map-help summary::before {
    content: "i";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: #2d8fbd;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    line-height: 1;
    flex-shrink: 0;
}

.map-help-content {
    margin-top: 8px;
    padding: 10px 12px;
    border-left: 3px solid #2d8fbd;
    border-radius: 6px;
    background: #f8fbfd;
    color: #333333;
    line-height: 1.55;
}

.map-help-content p {
    margin: 0;
}
.map-help-content {
    margin-top: 8px;
    padding: 10px 12px;
    background: #f8fbfd;
    border: none;
    border-radius: 6px;
}

.map-help-content p {
    margin: 0 0 8px;
    line-height: 1.5;
}

.map-help-content p:last-child {
    margin-bottom: 0;
}
/* iPhone Safari — Google Places autocomplete viewport stability */
@media (max-width: 650px) {
    gmp-place-autocomplete {
        display: block;
        width: 100%;
        position: relative;
        z-index: 10;
    }
}