/* ─────────────────────────────────────────────────────────────────────────
   /construction-dumpster-rental

   Page-specific layout only. The .priced-card and .rdr-fee-* blocks are the same
   patterns as the construction page (construction-dumpster-rental.css), duplicated
   here so the two pages can ship on independent branches; fold both into a shared
   component sheet once both are merged. Everything that can be reused is reused:
   the hero comes from dumpster-hero.css, the price tables from the
   .pricing-table rules in city-service.css, and the fees, FAQ, city-links
   and ready-to-book blocks from their own component sheets.

   Note for whoever edits this next: site.combined.css is NOT served. Add
   rules here, and register the file in the page's @section Styles.
   ───────────────────────────────────────────────────────────────────────── */

.rdr-cost-section,
.rdr-city-section,
.rdr-split-section,
.rdr-phase-section,
.rdr-logistics-section {
    padding: 64px 0;
}

.rdr-cost-section { background: #fff; }
.rdr-city-section { background: #f7f7f7; }
.rdr-split-section { background: #fff; }
.rdr-phase-section { background: #f7f7f7; }
.rdr-logistics-section { background: #fff; }

.rdr-lede {
    max-width: 860px;
    margin: 12px 0 28px;
}

.rdr-note {
    margin-top: 12px;
    color: #555;
}

/* ── Tables ─────────────────────────────────────────────────────────────
   Wide tables scroll inside their own container rather than forcing the
   page body to scroll sideways on a phone. */
.rdr-table-wrap {
    overflow-x: auto;
    margin-bottom: 28px;
    -webkit-overflow-scrolling: touch;
}

.rdr-table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    background: #fff;
}

.rdr-table caption {
    caption-side: top;
    text-align: left;
    padding: 0 0 10px;
    color: #555;
}

.rdr-table th,
.rdr-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid #e6e6e6;
}

.rdr-table thead th {
    border-bottom: 2px solid #d0d0d0;
    white-space: nowrap;
}

.rdr-table tbody tr:last-child td { border-bottom: none; }

.rdr-cta-inline { margin-top: 8px; }

/* ── General vs inert ───────────────────────────────────────────────── */
.rdr-split-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.rdr-split-card {
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 24px;
    background: #fff;
}

.rdr-split-card h3 { margin: 0 0 10px; }
.rdr-split-card p { margin: 0 0 18px; }

/* Styled like the site's accepted / not-allowed material boxes (materials-accept.css):
   tinted panel, 1px tinted border, large radius, centred title in the accent colour.
   Green palette because this box is a saving, not a prohibition. */
.rdr-worked-example {
    background: #E1EFDE;
    border: 1px solid #67AD5B;
    border-radius: 24px;
    padding: 36px 40px 32px;
    max-width: 960px;
    margin: 0 auto;
}

.rdr-worked-example h3 {
    margin: 0 0 20px;
    text-align: center;
    color: #2E8B3D;
}

.rdr-worked-example p { margin: 0 0 14px; }
.rdr-worked-example p:last-child { margin-bottom: 0; }

.rdr-list {
    list-style: none;
    margin: 16px 0 20px;
    padding: 0;
}

.rdr-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.rdr-list li:before {
    content: "\2022";
    position: absolute;
    left: 6px;
    font-weight: 700;
}

/* ── Phases ─────────────────────────────────────────────────────────── */
.rdr-phase-grid,
.rdr-logistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.rdr-phase-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 24px;
}

.rdr-phase-card h3 { margin: 0 0 10px; }
.rdr-phase-card p { margin: 0 0 10px; }

.rdr-logistics-grid h3 { margin: 0 0 10px; }

@media (max-width: 767px) {
    .rdr-cost-section,
    .rdr-city-section,
    .rdr-split-section,
    .rdr-phase-section,
    .rdr-logistics-section {
        padding: 40px 0;
    }

    .rdr-table { min-width: 420px; }
    .rdr-worked-example { padding: 24px 20px 22px; border-radius: 16px; }
}

/* ── Alignment ───────────────────────────────────────────────────────────
   The shared .main-container centres its children, which is right for a short
   section intro and wrong for a five-line paragraph of pricing detail. Headings
   stay centred to match the rest of the site; running prose, cards, list items
   and table captions read left. */
.rdr-cost-section .rdr-lede,
.rdr-city-section .rdr-lede,
.rdr-split-section .rdr-lede,
.rdr-phase-section .rdr-lede,
.rdr-cost-section .rdr-note,
.rdr-city-section .rdr-note {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

.rdr-split-card,
.rdr-phase-card,
.rdr-worked-example,
.rdr-logistics-grid > div {
    text-align: left;
}

.rdr-table caption { text-align: left; }
.rdr-list { text-align: left; }

/* ── Product cards in the cost section ─────────────────────────────────
   The shared .dumpster-sizes-section carries its own vertical padding for use
   as a standalone section; nested inside the cost section that doubles up. */
.rdr-cost-section .rdr-cards { padding: 0; background: transparent; }
.rdr-cost-section .rdr-cards .dumpster-sizes-header { text-align: left; }
/* The shared header rules pad title and description by 96px each side, which is
   fine on a wide hub page and leaves a phone with a narrow indented column. */
.rdr-cost-section .rdr-cards .dumpster-sizes-title,
.rdr-cost-section .rdr-cards .dumpster-sizes-description { padding: 0; }
.rdr-cost-section .rdr-cards .dumpster-category-section { margin-bottom: 32px; }

/* ── Priced card (page-local partial _PricedDumpsterCard) ─────────────── */
.priced-card .dumpster-size-card {
    display: flex;
    flex-direction: column;
}
.priced-card .priced-card-title-link {
    color: inherit;
    text-decoration: none;
}
.priced-card .priced-card-title-link:hover { text-decoration: underline; }
.priced-card .priced-card-price {
    color: #DB2426;
    margin: 0 0 12px;
}
.priced-card .dumpster-ideal-for { flex: 1 1 auto; }
.priced-card .priced-card-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 24px 0;
    margin-top: auto;
}
.priced-card .priced-card-actions .btn-primary {
    width: 100%;
    max-width: 260px;
    text-align: center;
}
.priced-card .priced-card-details {
    color: #555;
    text-decoration: none;
}
.priced-card .priced-card-details:hover { text-decoration: underline; }
.priced-card:hover .dumpster-size-card { box-shadow: 0px 4px 40px 0px #00000033; }

/* ── By-city table: centred, framed, easier to scan ───────────────────── */
.rdr-city-section .rdr-table-wrap {
    display: flex;
    justify-content: center;
}
.rdr-city-section .rdr-table {
    width: auto;
    min-width: 0;
    max-width: 100%;
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.rdr-city-section .rdr-table thead th {
    background: #f2f2f2;
    border-bottom: 1px solid #d8d8d8;
    font-weight: 600;
    text-align: center;
    padding: 14px 22px;
}
.rdr-city-section .rdr-table thead th:first-child { text-align: left; }
.rdr-city-section .rdr-table td {
    padding: 14px 22px;
    text-align: center;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}
.rdr-city-section .rdr-table td:first-child {
    text-align: left;
    font-weight: 600;
}
.rdr-city-section .rdr-table tbody tr:nth-child(even) td { background: #fafafa; }
.rdr-city-section .rdr-table tbody tr:hover td { background: #f0f7f2; }
.rdr-city-section .rdr-table .pricing-table-size-link { color: inherit; }
.rdr-city-section .rdr-lede,
.rdr-city-section .rdr-note { text-align: center; }

@media (max-width: 767px) {
    .rdr-city-section .rdr-table-wrap { justify-content: flex-start; }
    .rdr-city-section .rdr-table th,
    .rdr-city-section .rdr-table td { padding: 12px 14px; }
}

/* ── Inert callout above the general cards ─────────────────────────────── */
.rdr-inert-callout {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 860px;
    margin: 0 auto 28px;
    padding: 14px 18px;
    border: 1px solid #cfe9d9;
    border-left: 4px solid var(--primary-green, #00B96B);
    border-radius: 10px;
    background: #f2faf5;
    text-align: left;
}
.rdr-inert-callout .material-symbols-outlined {
    color: var(--primary-green, #00B96B);
    font-size: 28px;
    flex: 0 0 auto;
}
.rdr-inert-callout-text { flex: 1 1 auto; min-width: 0; }
.rdr-inert-callout a {
    color: var(--primary-green, #00B96B);
    font-weight: 600;
    text-decoration: underline;
}
#inert-bins { scroll-margin-top: 110px; }

/* ── Logistics: icon cards ─────────────────────────────────────────────── */
.rdr-lede-centered { text-align: center; }
.rdr-logistics-section { background: #f7f7f7; }
.rdr-logistics-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.rdr-logistics-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 28px 24px 24px;
    text-align: left;
    transition: box-shadow 0.2s ease;
}
.rdr-logistics-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.rdr-logistics-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: #eaf7f0;
    color: var(--primary-green, #00B96B);
    font-size: 28px;
    font-weight: 300;
}
.rdr-logistics-card h3 { margin: 0 0 10px; }
.rdr-logistics-card p { margin: 0; }

@media (min-width: 1100px) {
    .rdr-logistics-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── Fees: three centred cards, amount first ───────────────────────────── */
.rdr-fees-section {
    padding: 64px 0;
    background: #fff;
}
.rdr-fees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1180px;
    margin: 32px auto 0;
}
.rdr-fee-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 24px;
    text-align: left;
    transition: box-shadow 0.2s ease;
}
.rdr-fee-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.rdr-fee-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    margin-bottom: 6px;
    border-bottom: 1px solid #ececec;
}
.rdr-fee-head h3 { margin: 0; }
.rdr-fee-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #eaf7f0;
    color: var(--primary-green, #00B96B);
    font-size: 24px;
    font-weight: 300;
}
.rdr-fee-list { margin: 0; padding: 0; flex: 1 1 auto; }
.rdr-fee-row {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 12px;
    padding: 14px 0;
    border-bottom: 1px dashed #e6e6e6;
}
.rdr-fee-row:last-child { border-bottom: none; }
.rdr-fee-row dt {
    font-weight: 600;
    margin: 0;
    align-self: center;
    text-align: left;
}
.rdr-fee-row dd.rdr-fee-amount {
    margin: 0;
    align-self: center;
    justify-self: end;
    text-align: right;
    color: #DB2426;
    white-space: nowrap;
}
.rdr-fee-amount .body-3 { color: #555; font-weight: 400; }
.rdr-fee-row dd.rdr-fee-note {
    grid-column: 1 / -1;
    margin: 6px 0 0;
    color: #555;
    text-align: left;
    line-height: 1.5;
}
.rdr-fee-link {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-top: 12px;
    color: var(--primary-green, #00B96B);
    font-weight: 600;
    text-decoration: none;
}
.rdr-fee-link:hover { text-decoration: underline; }
.rdr-fee-link .material-symbols-outlined { font-size: 18px; }

@media (max-width: 767px) {
    .rdr-fees-section { padding: 40px 0; }
}

@media (max-width: 767px) {
    .rdr-inert-callout {
        align-items: flex-start;
        padding: 12px 14px;
        gap: 10px;
    }
    .rdr-inert-callout .material-symbols-outlined { font-size: 24px; margin-top: 2px; }
}

/* ── Materials: three boxes in the site's accepted / not-allowed style ──── */
.rdr-materials-section { padding: 64px 0; background: #fff; }
.rdr-materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1180px;
    margin: 32px auto 0;
}
.rdr-materials-card {
    border-radius: 20px;
    padding: 28px 28px 24px;
    text-align: left;
}
.rdr-materials-card h3 { margin: 0 0 16px; text-align: center; }
.rdr-materials-ok  { background: #E1EFDE; border: 1px solid #67AD5B; }
.rdr-materials-ok h3  { color: #2E8B3D; }
.rdr-materials-fee { background: #FFF4DB; border: 1px solid #E5A93B; }
.rdr-materials-fee h3 { color: #B7791F; }
.rdr-materials-no  { background: #F9DCD9; border: 1px solid #E15241; }
.rdr-materials-no h3  { color: #F44336; }
.rdr-materials-list { list-style: none; margin: 0; padding: 0; }
.rdr-materials-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 1.6;
}
.rdr-materials-list li:before {
    content: "\2022";
    position: absolute;
    left: 4px;
    font-weight: 700;
}
.rdr-materials-note { margin: 12px 0 0; color: #555; }
.rdr-note-centered { text-align: center; margin-top: 20px; }
.rdr-phase-section .rdr-worked-example { margin-top: 32px; }

@media (max-width: 767px) {
    .rdr-materials-section { padding: 40px 0; }
    .rdr-materials-card { padding: 22px 18px 18px; border-radius: 16px; }
}
