/* Drop & Dash Content Plugin – Additional Frontend Styles */

.dd-price-card { border-radius: 20px; }

/* ── ZIP checker – force input & button visibility inside hero ── */
.dd-hero #dd-zip-input,
.dd-hero #dd-zip-btn {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    clip: auto !important;
    clip-path: none !important;
    transform: none !important;
    pointer-events: auto !important;
}

/* Ensure shortcode containers have no extra margin */
.entry-content > .dd-hero:first-child,
.dd-main > .dd-hero:first-child { margin-top: 0; }

/* ═══════════════════════════════════════════════════════
   1. HERO – LEFT ALIGN
   ═══════════════════════════════════════════════════════ */
.dd-hero .dd-container {
    width: 100%;
    display: block !important;
    text-align: left !important;
}
.dd-hero__content {
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
    max-width: 600px;
}
/* Kill any WP block-editor centering inside hero */
.dd-hero p,
.dd-hero h1,
.dd-hero h2,
.dd-hero span,
.dd-hero div { text-align: inherit; }

/* ═══════════════════════════════════════════════════════
   2. HOW IT WORKS – SPLIT LAYOUT
   ═══════════════════════════════════════════════════════ */
.dd-hiw-section { background: #fff; overflow: hidden; }

.dd-hiw-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 60px;
}
.dd-hiw-left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 38%;
    flex: 0 0 38%;
    max-width: 38%;
}
.dd-hiw-right {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 24px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.dd-hiw-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.dd-hiw-dash {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--dd-primary);
    border-radius: 2px;
    flex-shrink: 0;
}
.dd-hiw-title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 900;
    line-height: 1.25;
    color: var(--dd-dark);
    margin-bottom: 18px;
}
.dd-hiw-intro {
    color: var(--dd-text-light);
    margin-bottom: 28px;
    line-height: 1.75;
    font-size: .95rem;
}

/* Individual step card */
.dd-hiw-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--dd-bg-light);
    border-radius: 16px;
    padding: 24px 16px 20px;
    position: relative;
}
.dd-hiw-step__num {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--dd-primary);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
}
.dd-hiw-step__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    flex-shrink: 0;
    overflow: hidden;
}
/* Colour variants per step */
.dd-hiw-step:nth-child(1) .dd-hiw-step__icon { background: #FFF3E0; }
.dd-hiw-step:nth-child(2) .dd-hiw-step__icon { background: #E3F2FD; }
.dd-hiw-step:nth-child(3) .dd-hiw-step__icon { background: #E8F5E9; }
.dd-hiw-step:nth-child(4) .dd-hiw-step__icon { background: #FFF8E1; }

.dd-hiw-step__icon svg {
    width: 36px;
    height: 36px;
    display: block;
}
.dd-hiw-step__title {
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--dd-dark);
    margin-bottom: 6px;
}
.dd-hiw-step__desc {
    font-size: .78rem;
    color: var(--dd-text-light);
    line-height: 1.6;
}

/* Dashed connector arrows overlay */
.dd-hiw-arrows {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: visible;
}

/* Responsive */
@media (max-width: 900px) {
    .dd-hiw-layout { flex-direction: column; gap: 40px; }
    .dd-hiw-left { flex: 1 1 auto; max-width: 100%; }
    .dd-hiw-arrows { display: none; }
}

/* ── HIW: desktop – track is a grid passthrough ── */
.dd-hiw-carousel-track { display: contents; }
.dd-hiw-carousel-dots,
.dd-hiw-carousel-nav { display: none; }

/* ─── dd-hiw-right desktop grid ─── */
.dd-hiw-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    position: relative;
}

/* ── HIW Mobile Carousel ── */
@media (max-width: 640px) {
    /* Clip ancestors so track doesn't bleed */
    .dd-hiw-section { overflow: hidden; }
    .dd-hiw-section .dd-container { overflow: hidden; }
    .dd-hiw-layout { overflow: hidden; }

    .dd-hiw-right {
        display: block !important;
        grid-template-columns: none !important;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
        position: static;
    }
    .dd-hiw-carousel-track {
        display: flex !important;
        width: 100%;
        transition: transform .38s cubic-bezier(.25,.46,.45,.94);
        will-change: transform;
    }
    .dd-hiw-step {
        flex: 0 0 100%;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
        padding: 28px 20px 24px;
    }
    /* Controls visible on mobile */
    .dd-hiw-carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 18px;
    }
    .dd-hiw-carousel-dot {
        width: 8px; height: 8px;
        border-radius: 50%;
        background: rgba(26,86,219,.25);
        border: none; cursor: pointer; padding: 0;
        transition: background .2s, width .2s;
        flex-shrink: 0;
    }
    .dd-hiw-carousel-dot.active {
        background: var(--dd-primary);
        width: 24px;
        border-radius: 4px;
    }
    .dd-hiw-carousel-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 12px;
    }
    .dd-hiw-carousel-btn {
        width: 40px; height: 40px;
        border-radius: 50%;
        border: 1.5px solid var(--dd-border);
        background: #fff;
        display: flex; align-items: center; justify-content: center;
        cursor: pointer; color: var(--dd-dark-2);
        transition: all .18s;
        flex-shrink: 0;
    }
    .dd-hiw-carousel-btn:hover { border-color: var(--dd-primary); color: var(--dd-primary); }
    .dd-hiw-carousel-btn:disabled { opacity: .3; cursor: default; }
    .dd-hiw-carousel-btn svg { width: 16px; height: 16px; }
}

/* ═══════════════════════════════════════════════════════
   3. WHY CHOOSE US – NEW LAYOUT
   ═══════════════════════════════════════════════════════ */
.dd-why-section { background: #deeaf8; }

.dd-why-layout {
    display: flex;
    align-items: flex-end;
    gap: 48px;
}
.dd-why-image-col {
    flex: 0 0 280px;
    max-width: 280px;
    align-self: flex-end;
}
.dd-why-person-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px 16px 0 0;
    object-fit: cover;
    max-height: 480px;
}
.dd-why-person-placeholder {
    width: 100%;
    height: 360px;
    background: rgba(26,86,219,.08);
    border-radius: 16px 16px 0 0;
}
.dd-why-content-col {
    flex: 1 1 auto;
    padding-bottom: 4px;
}
.dd-why-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.dd-why-header { margin-bottom: 28px; }

/* 3×2 feature grid with dividers */
.dd-why-new-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(26,86,219,.18);
    border-left: 1px solid rgba(26,86,219,.18);
}
.dd-why-new-card {
    padding: 26px 18px;
    border-bottom: 1px solid rgba(26,86,219,.18);
    border-right: 1px solid rgba(26,86,219,.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: background .2s;
}
.dd-why-new-card:hover { background: rgba(26,86,219,.04); }
.dd-why-new-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1.5px dashed var(--dd-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dd-primary);
    margin-bottom: 12px;
    background: rgba(26,86,219,.06);
    flex-shrink: 0;
}
.dd-why-new-card__icon svg { width: 26px; height: 26px; }
.dd-why-new-card__title {
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--dd-dark);
    margin-bottom: 7px;
}
.dd-why-new-card__desc {
    font-size: .78rem;
    color: var(--dd-text-light);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .dd-why-image-col { flex: 0 0 220px; max-width: 220px; }
}
@media (max-width: 768px) {
    .dd-why-layout { flex-direction: column; align-items: stretch; gap: 24px; }
    .dd-why-image-col { display: none; }
}

/* ── Why: desktop – track is a grid passthrough ── */
.dd-why-carousel-track { display: contents; }
.dd-why-carousel-dots,
.dd-why-carousel-nav { display: none; }

/* ── Why-Section: fully contained carousel on mobile ── */
@media (max-width: 768px) {
    /* Clip overflow at every ancestor level */
    .dd-why-section { overflow: hidden; }
    .dd-why-section .dd-container { overflow: hidden; }
    .dd-why-layout { overflow: hidden; width: 100%; }
    .dd-why-content-col {
        min-width: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    /* Grid wrapper = clipping viewport */
    .dd-why-new-grid {
        display: block !important;
        grid-template-columns: none !important;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border: none !important;
        padding: 0;
    }

    /* Flex strip — width must stay at 100% of grid, slides side-by-side */
    .dd-why-carousel-track {
        display: flex !important;
        width: 100%;
        transition: transform .38s cubic-bezier(.25,.46,.45,.94);
        will-change: transform;
    }

    /* Each card = exactly one slot */
    .dd-why-new-card {
        flex: 0 0 100%;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
        padding: 28px 20px;
        border: 1px solid rgba(26,86,219,.18) !important;
        border-radius: 14px;
        margin: 0;
    }

    /* Controls */
    .dd-why-carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 18px;
    }
    .dd-why-carousel-dot {
        width: 8px; height: 8px;
        border-radius: 50%;
        background: rgba(26,86,219,.25);
        border: none; cursor: pointer; padding: 0;
        transition: background .2s, width .2s;
        flex-shrink: 0;
    }
    .dd-why-carousel-dot.active {
        background: var(--dd-primary);
        width: 24px;
        border-radius: 4px;
    }
    .dd-why-carousel-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 12px;
    }
    .dd-why-carousel-btn {
        width: 40px; height: 40px;
        border-radius: 50%;
        border: 1.5px solid rgba(26,86,219,.3);
        background: rgba(26,86,219,.06);
        display: flex; align-items: center; justify-content: center;
        cursor: pointer; color: var(--dd-primary);
        transition: all .18s;
        flex-shrink: 0;
    }
    .dd-why-carousel-btn:hover { background: rgba(26,86,219,.12); }
    .dd-why-carousel-btn:disabled { opacity: .3; cursor: default; }
    .dd-why-carousel-btn svg { width: 16px; height: 16px; }
}

/* ═══════════════════════════════════════════════════════
   4. REVIEWS – FLEX CAROUSEL (4-up desktop / 1-up mobile)
   ═══════════════════════════════════════════════════════ */

/* Track: flat flex strip of cards */
.dd-reviews-track {
    display: flex !important;
    flex-wrap: nowrap;
}

/* Each card is exactly 25% wide on desktop → 4 visible */
.dd-reviews-card {
    flex: 0 0 25%;
    min-width: 25%;
    box-sizing: border-box;
    padding: 8px;
}

/* On mobile: each card fills the full width → 1 visible */
@media (max-width: 640px) {
    .dd-reviews-card {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 4px;
    }
}

/* ═══════════════════════════════════════════════════════
   5. COMMERCIAL BLOCK – ADMIN IMAGE IN RIGHT PANEL
   ═══════════════════════════════════════════════════════ */
.dd-commercial-block__right-inner--img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: transparent;
}
.dd-commercial-block__stat-img {
    display: block;
    object-fit: contain;
    border-radius: 8px;
}

/* ═══════════════════════════════════════════════════════
   6. DROP OFF PAGE – IMPROVED UI
   ═══════════════════════════════════════════════════════ */

/* Pricing banner */
.dd-dropoff-pricing-banner {
    background: var(--dd-primary);
    padding: 20px 0;
}
.dd-dropoff-pricing-banner__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.dd-dropoff-pricing-banner__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: #fff;
}
.dd-dropoff-pricing-banner__amount {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
}
.dd-dropoff-pricing-banner__per {
    font-size: 1rem;
    font-weight: 600;
    opacity: .8;
}
.dd-dropoff-pricing-banner__divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.3);
}
.dd-dropoff-pricing-banner__details {
    color: #fff;
    font-size: .95rem;
    opacity: .9;
}
@media (max-width: 520px) {
    .dd-dropoff-pricing-banner__divider { display: none; }
}

/* Horizontal step timeline */
.dd-dropoff-steps {
    display: flex;
    gap: 0;
    margin-top: 56px;
    position: relative;
}
.dd-dropoff-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}
.dd-dropoff-step__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--dd-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(26,86,219,.3);
}
.dd-dropoff-step__connector {
    position: absolute;
    top: 32px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--dd-primary), rgba(26,86,219,.25));
    z-index: 1;
}
.dd-dropoff-step__connector--last { display: none; }
.dd-dropoff-step__body {
    margin-top: 20px;
    padding: 0 12px;
}
.dd-dropoff-step__num {
    display: inline-block;
    font-size: .68rem;
    font-weight: 800;
    color: var(--dd-primary);
    letter-spacing: .08em;
    margin-bottom: 6px;
    background: rgba(26,86,219,.08);
    padding: 2px 10px;
    border-radius: 20px;
}
.dd-dropoff-step__title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dd-dark);
    margin-bottom: 8px;
}
.dd-dropoff-step__desc {
    font-size: .84rem;
    color: var(--dd-text-light);
    line-height: 1.65;
}
@media (max-width: 640px) {
    .dd-dropoff-steps {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        padding-left: 32px;
    }
    .dd-dropoff-step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
        padding-bottom: 32px;
    }
    .dd-dropoff-step__connector {
        top: 64px;
        left: 31px;
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, var(--dd-primary), rgba(26,86,219,.15));
    }
    .dd-dropoff-step__connector--last { display: none; }
    .dd-dropoff-step__body { margin-top: 0; padding: 0; }
}

/* Trust badges */
.dd-dropoff-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.dd-dropoff-trust__item {
    background: #fff;
    border-radius: var(--dd-radius);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--dd-border);
    transition: box-shadow .2s, transform .2s;
}
.dd-dropoff-trust__item:hover {
    box-shadow: var(--dd-shadow);
    transform: translateY(-3px);
}
.dd-dropoff-trust__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--dd-bg-gray);
    margin: 0 auto 14px;
}
.dd-dropoff-trust__title {
    font-size: .9rem;
    font-weight: 800;
    color: var(--dd-dark);
    margin-bottom: 6px;
}
.dd-dropoff-trust__desc {
    font-size: .8rem;
    color: var(--dd-text-light);
    line-height: 1.55;
}
@media (max-width: 900px) {
    .dd-dropoff-trust { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .dd-dropoff-trust { grid-template-columns: 1fr; }
}

/* Location cards */
.dd-dropoff-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.dd-dropoff-location-card {
    background: #fff;
    border: 1px solid var(--dd-border);
    border-radius: var(--dd-radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow .2s, transform .2s;
}
.dd-dropoff-location-card:hover {
    box-shadow: var(--dd-shadow-lg);
    transform: translateY(-3px);
}
.dd-dropoff-location-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
}
.dd-dropoff-location-card__pin {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(26,86,219,.1);
    color: var(--dd-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dd-dropoff-location-card__name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dd-dark);
    margin: 0;
}
.dd-dropoff-location-card__details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.dd-dropoff-location-card__details p {
    font-size: .88rem;
    color: var(--dd-text-light);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
}
.dd-dropoff-location-card__details a {
    color: var(--dd-primary);
    font-weight: 600;
}
.dd-dropoff-location-card__icon-inline {
    flex-shrink: 0;
}
.dd-dropoff-location-card__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid var(--dd-border);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER — [elementals-laundry_footer]
   ═══════════════════════════════════════════════════════════ */
.dd-footer {
    background: var(--dd-dark, #0f172a);
    color: rgba(255,255,255,.75);
    font-size: .9rem;
}

/* ── Top section ── */
.dd-footer__top { padding: 64px 0 48px; }

.dd-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* ── Brand column ── */
.dd-footer__logo { margin-bottom: 16px; }
.dd-footer__logo-text {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: .04em;
    color: #fff;
}
.dd-footer__logo-text span { color: #f59e0b; }

.dd-footer__tagline {
    color: rgba(255,255,255,.65);
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 280px;
}
.dd-footer__address {
    font-style: normal;
    color: rgba(255,255,255,.55);
    font-size: .85rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.dd-footer__cta { margin-bottom: 24px; display: inline-block; }

/* Social icons */
.dd-footer__social { display: flex; gap: 10px; margin-top: 4px; }
.dd-footer__social-link {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7);
    transition: background .2s, color .2s, border-color .2s;
}
.dd-footer__social-link:hover {
    background: var(--dd-primary, #1a56db);
    border-color: var(--dd-primary, #1a56db);
    color: #fff;
}

/* ── App Download Badges ── */
.dd-footer__app-links {
    margin-top: 18px;
}
.dd-footer__app-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin: 0 0 10px 0;
}
.dd-footer__app-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.dd-footer__app-badge {
    display: inline-block;
    transition: opacity .18s, transform .18s;
    border-radius: 6px;
    overflow: hidden;
    line-height: 0;
}
.dd-footer__app-badge:hover {
    opacity: .85;
    transform: translateY(-1px);
}

/* ── Menu columns ── */
.dd-footer__menu-col {}

.dd-footer__menu-heading {
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.dd-footer__menu-list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dd-footer__menu-list li {
    color: rgba(255,255,255,.65);
    font-size: .875rem;
    line-height: 1.5;
}
.dd-footer__menu-list a {
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: color .18s;
}
.dd-footer__menu-list a:hover { color: #fff; }

/* "See all industries" link */
.dd-footer__see-all {
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.dd-footer__see-all a {
    color: var(--dd-primary, #1a56db) !important;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .02em;
}
.dd-footer__see-all a:hover { color: #fff !important; }

/* ── Bottom bar ── */
.dd-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px 0;
}
.dd-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.dd-footer__copyright, .dd-footer__credit {
    font-size: .8rem;
    color: rgba(255,255,255,.4);
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .dd-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .dd-footer__brand { grid-column: 1 / -1; max-width: 480px; }
}
@media (max-width: 640px) {
    .dd-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .dd-footer__brand { grid-column: 1 / -1; }
    .dd-footer__top { padding: 40px 0 32px; }
}
@media (max-width: 420px) {
    .dd-footer__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICE AREA — [elementals-laundry_service_area]
   ═══════════════════════════════════════════════════════════ */

/* ── Search bar ── */
.dd-sa-search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.dd-sa-search-bar input[type="text"] {
    flex: 1 1 220px;
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--dd-border, #e2e8f0);
    border-radius: 10px;
    font-size: .95rem;
    color: var(--dd-dark, #0f172a);
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}
.dd-sa-search-bar input[type="text"]:focus {
    border-color: var(--dd-primary, #1a56db);
    box-shadow: 0 0 0 3px rgba(26,86,219,.12);
}

/* ── Alpha nav — horizontally scrollable city-tab strip ── */
.dd-sa-alpha-nav {
    display: flex;
    flex-wrap: wrap;           /* wraps naturally on desktop */
    gap: 8px;
    margin-bottom: 32px;
    align-items: center;
}

/* On small screens switch to a single scrollable row */
@media (max-width: 768px) {
    .dd-sa-alpha-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        padding-bottom: 6px;  /* room for scrollbar */
        gap: 6px;
        /* hide scrollbar visually but keep it functional */
        scrollbar-width: thin;
        scrollbar-color: var(--dd-border, #e2e8f0) transparent;
    }
    .dd-sa-alpha-nav::-webkit-scrollbar { height: 4px; }
    .dd-sa-alpha-nav::-webkit-scrollbar-track { background: transparent; }
    .dd-sa-alpha-nav::-webkit-scrollbar-thumb {
        background: var(--dd-border, #e2e8f0);
        border-radius: 4px;
    }
}

/* ── Alpha buttons — city-name pills ── */
.dd-sa-alpha-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 16px;
    border: 1.5px solid var(--dd-border, #e2e8f0);
    border-radius: 100px;          /* pill shape fits multi-word names */
    background: #fff;
    color: var(--dd-text-light, #64748b);
    font-size: .825rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;           /* never break city names */
    flex-shrink: 0;                /* don't compress inside scroll row */
    line-height: 1;
    transition: background .18s, border-color .18s, color .18s, box-shadow .18s;
    scroll-snap-align: start;
}
.dd-sa-alpha-btn:hover {
    border-color: var(--dd-primary, #1a56db);
    color: var(--dd-primary, #1a56db);
    background: rgba(26,86,219,.05);
}
.dd-sa-alpha-btn.active {
    background: var(--dd-primary, #1a56db);
    border-color: var(--dd-primary, #1a56db);
    color: #fff;
    box-shadow: 0 2px 8px rgba(26,86,219,.25);
}

/* ── Area group ── */
.dd-area-group {
    margin-bottom: 40px;
}

/* ── Section header — full city name from data-letter ── */
.dd-area-group__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
/* City name badge rendered from data-letter attribute */
.dd-area-group__header::before {
    content: attr(data-letter);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    height: 34px;
    border-radius: 100px;
    background: var(--dd-primary, #1a56db);
    color: #fff;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .03em;
    white-space: nowrap;
    flex-shrink: 0;
}
/* Decorative rule */
.dd-area-group__header::after {
    content: '';
    flex: 1;
    height: 1.5px;
    background: var(--dd-border, #e2e8f0);
    border-radius: 2px;
}

/* ── Neighborhood chips ── */
.dd-area-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.dd-area-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1.5px solid var(--dd-border, #e2e8f0);
    border-radius: 100px;
    background: #fff;
    color: var(--dd-dark, #0f172a);
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background .18s, border-color .18s, color .18s, box-shadow .18s;
}
.dd-area-chip svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    opacity: .5;
    transition: opacity .18s, transform .18s;
}
.dd-area-chip:hover {
    background: var(--dd-primary, #1a56db);
    border-color: var(--dd-primary, #1a56db);
    color: #fff;
    box-shadow: 0 2px 8px rgba(26,86,219,.2);
}
.dd-area-chip:hover svg { opacity: 1; transform: translateX(2px); }

/* ── Mobile tweaks ── */
@media (max-width: 480px) {
    .dd-sa-search-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .dd-sa-search-bar .dd-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .dd-area-group__header::before {
        font-size: .75rem;
        padding: 0 10px;
        height: 30px;
    }
    .dd-area-chips { gap: 8px; }
    .dd-area-chip { padding: 7px 13px; font-size: .825rem; }
}

/* ── SA Hero: SVG deco containment (belt-and-braces) ── */
.dd-sa-hero {
    position: relative;
    overflow: hidden;
}
.dd-sa-hero__deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: .9;
}
.dd-sa-hero__deco--pin    { top: -10px;  left: -20px;  width: 160px; }
.dd-sa-hero__deco--circle { top: -20px; right: -30px;  width: 200px; }
.dd-sa-hero__deco--star   { bottom: 28px; left: 48px;  width: 32px;  }
.dd-sa-hero__deco svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ═══════════════════════════════════════════════════════
   BLOG HERO – light centred layout (mirrors SA hero)
   ═══════════════════════════════════════════════════════ */
.dd-blog-lhero {
    background: #f0f2ff;
    padding: 72px 0 64px;
    text-align: center;
}
.dd-sa-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.dd-sa-hero__title {
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.15;
    margin: 0 0 12px;
}
.dd-sa-hero__accent {
    display: inline-block;
    position: relative;
    color: #0f172a;
}
.dd-sa-hero__accent::after {
    content: '';
    display: block;
    height: 4px;
    background: #f59e0b;
    border-radius: 3px;
    margin-top: 4px;
}
.dd-sa-hero__sub {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 10px;
}
.dd-sa-hero__desc {
    font-size: .975rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.65;
}
.dd-sa-hero__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── chip as button reset ── */
/* ══════════════════════════════════════════════════════════════
   SERVICE AREA – expandable neighbourhood chips (no modal)
   ══════════════════════════════════════════════════════════════ */

.dd-area-chip-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

.dd-area-chip--expandable {
    border: none;
    cursor: pointer;
    font-family: inherit;
    background: #fff;
    border: 1.5px solid var(--dd-border, #e2e8f0);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background .18s, border-color .18s, color .18s, box-shadow .18s;
}
.dd-area-chip--expandable:hover,
.dd-area-chip--expandable[aria-expanded="true"] {
    background: var(--dd-primary, #1a56db);
    border-color: var(--dd-primary, #1a56db);
    color: #fff;
    box-shadow: 0 2px 8px rgba(26,86,219,.2);
}
.dd-chip-chevron {
    flex-shrink: 0;
    transition: transform .22s;
}
.dd-area-chip--expandable[aria-expanded="true"] .dd-chip-chevron {
    transform: rotate(180deg);
}

/* Dropdown panel of service links */
.dd-nbhd-svc-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 4px 4px;
    animation: ddLinksIn .18s ease both;
}
@keyframes ddLinksIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}
.dd-nbhd-svc-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid var(--svc-color, #1a56db);
    color: var(--svc-color, #1a56db);
    background: #fff;
    white-space: nowrap;
    transition: background .15s, color .15s, box-shadow .15s;
}
.dd-nbhd-svc-link:hover {
    background: var(--svc-color, #1a56db);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
    text-decoration: none;
}
.dd-nbhd-svc-link svg { flex-shrink: 0; transition: transform .15s; }
.dd-nbhd-svc-link:hover svg { transform: translateX(2px); }


/* ══════════════════════════════════════════════════════════════
   NEIGHBORHOOD PAGES
   ══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.dd-nbhd-hero { min-height: 420px; }
.dd-nbhd-hero__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #f59e0b;
    margin: 0 0 6px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: .02em;
}
.dd-nbhd-hero__sub {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: #fff;
    margin: 0 0 8px;
    text-transform: uppercase;
}
.dd-nbhd-hero__tagline {
    font-size: 1.05rem;
    color: rgba(255,255,255,.85);
    margin: 0 0 20px;
}
.dd-nbhd-hero__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 4px;
}
.dd-nbhd-hero__bullets li {
    color: rgba(255,255,255,.9);
    font-size: .92rem;
    padding: 4px 0 4px 20px;
    position: relative;
}
.dd-nbhd-hero__bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #f59e0b;
}
.dd-btn--outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid rgba(255,255,255,.6);
    border-radius: var(--dd-radius);
    color: #fff;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    transition: border-color .2s, background .2s;
}
.dd-btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ── Services + About layout ── */
.dd-nbhd-services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
@media (max-width: 860px) {
    .dd-nbhd-services-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Service bullet items ── */
.dd-nbhd-service-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
}
.dd-nbhd-service-item:last-child { margin-bottom: 0; }
.dd-nbhd-service-item__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dd-nbhd-service-item__icon--blue   { background: #eff6ff; color: #1d4ed8; }
.dd-nbhd-service-item__icon--green  { background: #f0fdf4; color: #15803d; }
.dd-nbhd-service-item__icon--orange { background: #fff7ed; color: #c2410c; }
.dd-nbhd-service-item__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dd-dark);
    margin: 0 0 6px;
}
.dd-nbhd-service-item__desc {
    font-size: .875rem;
    color: var(--dd-text-light);
    margin: 0;
    line-height: 1.6;
}

/* ── About card ── */
.dd-nbhd-about-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
    overflow: hidden;
}
.dd-nbhd-about-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
}
.dd-nbhd-about-card__header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    color: var(--dd-dark);
}
.dd-nbhd-about-toggle {
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6366f1;
    transition: background .2s;
}
.dd-nbhd-about-toggle:hover { background: #e0e7ff; }
.dd-nbhd-about-toggle svg { transition: transform .25s; }
.dd-nbhd-about-card__body {
    padding: 20px 24px;
}
.dd-nbhd-about-card__body p {
    font-size: .875rem;
    color: var(--dd-text-light);
    line-height: 1.7;
    margin: 0 0 14px;
}
.dd-nbhd-about-card__body p:last-child { margin-bottom: 0; }
.dd-nbhd-about-card__highlights {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
}
.dd-nbhd-about-card__highlights-label {
    font-size: .8rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--dd-dark) !important;
    margin-bottom: 10px !important;
}
.dd-nbhd-about-card__highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.dd-nbhd-about-card__highlights li {
    font-size: .85rem;
    color: var(--dd-text-light);
    padding: 4px 0 4px 18px;
    position: relative;
}
.dd-nbhd-about-card__highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: 700;
}

/* ── Nearby chips ── */
.dd-nbhd-nearby-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}
.dd-nbhd-nearby-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    font-size: .875rem;
    font-weight: 500;
    color: var(--dd-dark);
    text-decoration: none;
    transition: border-color .2s, color .2s, box-shadow .2s;
}
.dd-nbhd-nearby-chip:hover {
    border-color: #6366f1;
    color: #6366f1;
    box-shadow: 0 2px 8px rgba(99,102,241,.12);
}

/* ── App download layout ── */
.dd-nbhd-app-layout {
    display: flex;
    gap: 48px;
    align-items: center;
}
.dd-nbhd-app-phone {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dd-nbhd-app-phone__mockup {
    background: linear-gradient(135deg, #ede9fe 0%, #e0e7ff 100%);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(99,102,241,.15);
}
.dd-nbhd-app-content { flex: 1; }
@media (max-width: 640px) {
    .dd-nbhd-app-layout { flex-direction: column; gap: 24px; }
    .dd-nbhd-app-phone { display: none; }
}

/* ── Schedule / call layout ── */
.dd-nbhd-schedule-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
@media (max-width: 860px) {
    .dd-nbhd-schedule-layout { grid-template-columns: 1fr; }
}
.dd-nbhd-call-col {
    padding-top: 40px;
}
.dd-nbhd-phone-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dd-primary, #6366f1);
    text-decoration: none;
}
.dd-nbhd-phone-link:hover { text-decoration: underline; }

/* ── Shared text underline accent ── */
.dd-text-underline {
    position: relative;
    display: inline-block;
}
.dd-text-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 3px;
    background: #f59e0b;
    border-radius: 2px;
}

/* ── Other services links inside about card ── */
.dd-nbhd-other-svcs {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
}
.dd-nbhd-other-svcs__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}
.dd-nbhd-other-svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .875rem;
    font-weight: 600;
    color: #6366f1;
    text-decoration: none;
    transition: color .2s;
}
.dd-nbhd-other-svc-link:hover { color: #4f46e5; }

/* ── Underline accent for neighborhood pages ── */
.dd-nbhd-underline {
    position: relative;
    display: inline-block;
}
.dd-nbhd-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 3px;
    background: #f59e0b;
    border-radius: 2px;
}


/* ══════════════════════════════════════════════════════════════
   SINGLE BLOG POST
   ══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.dd-blog-single-hero {
    position: relative;
    background: #0f172a;
    padding: 64px 0 52px;
    overflow: hidden;
}
.dd-blog-single-hero__img-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.dd-blog-single-hero__img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    opacity: .35;
}
.dd-blog-single-hero__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,23,42,.55) 0%, rgba(15,23,42,.85) 100%);
}
.dd-blog-single-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

/* Breadcrumb */
.dd-blog-single-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: rgba(255,255,255,.55);
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.dd-blog-single-breadcrumb a {
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: color .15s;
}
.dd-blog-single-breadcrumb a:hover { color: #fff; }
.dd-blog-single-breadcrumb svg { opacity: .45; flex-shrink: 0; }
.dd-blog-single-breadcrumb span { color: rgba(255,255,255,.45); }

.dd-blog-single-cat {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #f59e0b;
    margin-bottom: 12px;
}
.dd-blog-single-hero__title {
    color: #fff;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px;
}

/* Meta bar */
.dd-blog-single-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(255,255,255,.65);
    font-size: .83rem;
}
.dd-blog-single-meta__item {
    display: flex;
    align-items: center;
    gap: 5px;
}
.dd-blog-single-meta__sep { opacity: .35; }

/* ── Layout: article + sidebar ── */
.dd-blog-single-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}
@media (max-width: 960px) {
    .dd-blog-single-layout { grid-template-columns: 1fr; }
    .dd-blog-single-sidebar { order: -1; }
}

/* ── Article body ── */
.dd-blog-single-lede {
    font-size: 1.15rem;
    color: #374151;
    line-height: 1.7;
    font-weight: 400;
    border-left: 4px solid #6366f1;
    padding: 14px 20px;
    background: #f5f3ff;
    border-radius: 0 8px 8px 0;
    margin: 0 0 32px;
}

.dd-blog-single-body {
    font-size: 1rem;
    line-height: 1.8;
    color: #1f2937;
}
.dd-blog-single-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 40px 0 16px;
    color: #111827;
}
.dd-blog-single-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 32px 0 12px;
    color: #1f2937;
}
.dd-blog-single-body h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 24px 0 8px;
}
.dd-blog-single-body p { margin: 0 0 20px; }
.dd-blog-single-body ul, .dd-blog-single-body ol {
    margin: 0 0 20px;
    padding-left: 24px;
}
.dd-blog-single-body li { margin-bottom: 8px; }
.dd-blog-single-body blockquote {
    border-left: 4px solid #6366f1;
    margin: 28px 0;
    padding: 16px 24px;
    background: #f8f7ff;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #4b5563;
}
.dd-blog-single-body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 24px 0;
    display: block;
}
.dd-blog-single-body a {
    color: #6366f1;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.dd-blog-single-body a:hover { color: #4f46e5; }
.dd-blog-single-body pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 20px;
    border-radius: 10px;
    overflow-x: auto;
    font-size: .875rem;
    margin: 24px 0;
}
.dd-blog-single-body code {
    background: #f1f5f9;
    color: #7c3aed;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: .875em;
}
.dd-blog-single-body pre code {
    background: none;
    color: inherit;
    padding: 0;
}
.dd-blog-single-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: .9rem;
}
.dd-blog-single-body th, .dd-blog-single-body td {
    border: 1px solid #e5e7eb;
    padding: 10px 14px;
    text-align: left;
}
.dd-blog-single-body th { background: #f9fafb; font-weight: 700; }
.dd-blog-single-body tr:nth-child(even) td { background: #f9fafb; }
.dd-blog-single-body figure { margin: 28px 0; }
.dd-blog-single-body figcaption {
    text-align: center;
    font-size: .8rem;
    color: #9ca3af;
    margin-top: 8px;
}
.dd-blog-single-body .wp-block-image img { border-radius: 10px; }
.dd-blog-single-body .wp-caption { max-width: 100%; }

/* Tags */
.dd-blog-single-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 36px 0 28px;
    padding-top: 28px;
    border-top: 1px solid #f1f5f9;
}
.dd-blog-single-tags__label {
    font-size: .8rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* Share bar */
.dd-blog-single-share {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.dd-blog-single-share__label {
    font-size: .8rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.dd-blog-single-share__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity .2s;
}
.dd-blog-single-share__btn:hover { opacity: .85; }
.dd-blog-single-share__btn--fb  { background: #1877f2; color: #fff; }
.dd-blog-single-share__btn--tw  { background: #000; color: #fff; }
.dd-blog-single-share__btn--copy { background: #f1f5f9; color: #374151; }

/* Author card */
.dd-blog-single-author {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: #f8faff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-bottom: 32px;
}
.dd-blog-single-author__avatar {
    width: 72px !important;
    height: 72px !important;
    border-radius: 50%;
    flex-shrink: 0;
}
.dd-blog-single-author__label {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #9ca3af;
    margin: 0 0 4px;
}
.dd-blog-single-author__name {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: #111827;
}
.dd-blog-single-author__bio {
    font-size: .85rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.55;
}

/* Prev / Next nav */
.dd-blog-single-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
}
@media (max-width: 500px) { .dd-blog-single-nav { grid-template-columns: 1fr; } }
.dd-blog-single-nav__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: border-color .2s, box-shadow .2s;
    background: #fff;
}
.dd-blog-single-nav__link:hover {
    border-color: #6366f1;
    box-shadow: 0 2px 12px rgba(99,102,241,.1);
}
.dd-blog-single-nav__link--next { text-align: right; justify-content: flex-end; }
.dd-blog-single-nav__dir {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #9ca3af;
    margin-bottom: 4px;
}
.dd-blog-single-nav__title {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.3;
}
.dd-blog-single-nav__link svg { flex-shrink: 0; color: #6366f1; }

/* ── Sidebar ── */
.dd-blog-single-sidebar {
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.dd-blog-single-sidebar__card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.dd-blog-single-sidebar__card--cta {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border-color: #c4b5fd;
}
.dd-blog-single-sidebar__cta-icon {
    width: 48px; height: 48px;
    background: #6366f1;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.dd-blog-single-sidebar__cta-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1f2937;
}
.dd-blog-single-sidebar__cta-desc {
    font-size: .85rem;
    color: #4b5563;
    margin: 0 0 16px;
    line-height: 1.55;
}
.dd-blog-single-sidebar__heading {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #9ca3af;
    margin: 0 0 14px;
}
.dd-blog-single-sidebar__cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.dd-blog-single-sidebar__cat-list li {
    border-bottom: 1px solid #f1f5f9;
}
.dd-blog-single-sidebar__cat-list li:last-child { border-bottom: none; }
.dd-blog-single-sidebar__cat-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    font-size: .875rem;
    color: #374151;
    text-decoration: none;
    transition: color .15s;
}
.dd-blog-single-sidebar__cat-list a:hover { color: #6366f1; }
.dd-blog-single-sidebar__cat-count {
    font-size: .75rem;
    background: #f1f5f9;
    color: #9ca3af;
    padding: 2px 7px;
    border-radius: 20px;
    font-weight: 600;
}
.dd-blog-single-sidebar__info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dd-blog-single-sidebar__info-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: #4b5563;
}
.dd-blog-single-sidebar__info-list svg { color: #6366f1; flex-shrink: 0; }

.dd-blog-single-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .875rem;
    font-weight: 600;
    color: #6366f1;
    text-decoration: none;
    padding: 10px 0;
    transition: color .15s;
}
.dd-blog-single-back-link:hover { color: #4f46e5; }

/* ═══════════════════════════════════════════════════════
   BLOG SINGLE – BUG FIXES
   ═══════════════════════════════════════════════════════ */

/* FIX 1: Missing .dd-blog-single-content rule.
   Without min-width:0, a grid child won't shrink below its
   content size, causing the article to blow out the layout. */
.dd-blog-single-content {
    min-width: 0;
    width: 100%;
}

/* FIX 2: Prevent wide content (tables, pre, iframes) from
   overflowing the article column. */
.dd-blog-single-body table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.dd-blog-single-body pre {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: pre;
    word-wrap: normal;
}
.dd-blog-single-body iframe,
.dd-blog-single-body video,
.dd-blog-single-body .wp-block-embed__wrapper {
    max-width: 100%;
}

/* FIX 3: Tag buttons — styled to match the site design */
.dd-blog-tag-btn {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border-radius: 20px;
    background: #f1f5f9;
    color: #374151;
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    transition: background .15s, color .15s, border-color .15s;
}
.dd-blog-tag-btn:hover {
    background: #6366f1;
    color: #fff;
    border-color: #6366f1;
}

/* FIX 4: Hero inner — ensure it doesn't clip on narrow screens */
.dd-blog-single-hero__inner {
    max-width: 780px;
    width: 100%;
}

/* FIX 5: On mobile, prevent sidebar sticky from getting
   stuck under a fixed header */
@media (max-width: 960px) {
    .dd-blog-single-sidebar {
        position: static;
    }
}

/* FIX 6: Ensure WP block-editor images inside article body
   don't overflow their container (full-width blocks, etc.) */
.dd-blog-single-body .wp-block-image,
.dd-blog-single-body .wp-block-cover,
.dd-blog-single-body .alignfull,
.dd-blog-single-body .alignwide {
    max-width: 100%;
    width: 100%;
}
.dd-blog-single-body .alignleft {
    float: left;
    margin: 0 24px 16px 0;
    max-width: 50%;
}
.dd-blog-single-body .alignright {
    float: right;
    margin: 0 0 16px 24px;
    max-width: 50%;
}
@media (max-width: 600px) {
    .dd-blog-single-body .alignleft,
    .dd-blog-single-body .alignright {
        float: none;
        max-width: 100%;
        margin: 16px 0;
    }
}

/* ═══════════════════════════════════════════════════════
   BLOG CARD & RELATED ARTICLES – full styles
   (dd-blog-card, dd-blog-grid, dd-blog-section-heading)
   ═══════════════════════════════════════════════════════ */

/* Section heading */
.dd-blog-section-heading {
    margin-bottom: 32px;
}
.dd-blog-section-heading__title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #111827;
    margin: 0;
}

/* Grid layout – 3 cols → 2 → 1 */
.dd-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 900px) {
    .dd-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .dd-blog-grid { grid-template-columns: 1fr; }
}

/* Card base — it's an <a> tag, so kill link colours first */
.dd-blog-card {
    display: flex !important;
    flex-direction: column !important;    /* main card stacks image over body */
    background: #fff !important;
    border-radius: 14px !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 2px 12px rgba(0,0,0,.06) !important;
    overflow: hidden !important;
    text-decoration: none !important;
    color: #1f2937 !important;
    transition: box-shadow .2s, transform .2s !important;
}

/* Side cards: image thumbnail left, body right — desktop only */
.dd-blog-card--side {
    flex-direction: row !important;
}

/* Mobile: ALL cards stack — image full width on top, body below */
@media (max-width: 600px) {
    .dd-blog-card,
    .dd-blog-card--side {
        flex-direction: column !important;
    }
    /* --small wrapper: drop the fixed min-width so it stretches full width */
    .dd-blog-card__img-wrap--small {
        min-width: 0 !important;
        width: 100% !important;
        min-height: 180px !important;
        align-self: stretch !important;
    }
}
.dd-blog-card:hover {
    box-shadow: 0 8px 28px rgba(99,102,241,.13) !important;
    transform: translateY(-3px) !important;
}

/* Image wrapper */
.dd-blog-card__img-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    flex-shrink: 0;
    background: #f1f5f9;
}
.dd-blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.dd-blog-card:hover .dd-blog-card__img {
    transform: scale(1.04);
}

/* Card body */
.dd-blog-card__body {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    padding: 20px 22px 22px !important;
    gap: 0 !important;
}

/* Category badge */
.dd-blog-card__cat {
    display: inline-block !important;
    font-size: .7rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: .08em !important;
    color: #6366f1 !important;
    margin-bottom: 10px !important;
    text-decoration: none !important;
}

/* Title */
.dd-blog-card__title {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #111827 !important;
    line-height: 1.35 !important;
    margin: 0 0 10px !important;
    text-decoration: none !important;
}
.dd-blog-card__title--grid {
    font-size: 1rem !important;
}

/* Excerpt */
.dd-blog-card__excerpt {
    font-size: .875rem !important;
    color: #6b7280 !important;
    line-height: 1.6 !important;
    margin: 0 0 14px !important;
    text-decoration: none !important;
}
.dd-blog-card__excerpt--short {
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

/* Meta (date etc.) */
.dd-blog-card__meta {
    font-size: .8rem !important;
    color: #9ca3af !important;
    margin-bottom: 14px !important;
    margin-top: auto !important;
    text-decoration: none !important;
}
.dd-blog-card__meta span {
    color: #9ca3af !important;
}

/* Read more link */
.dd-blog-card__read-more-link {
    display: inline-block !important;
    font-size: .82rem !important;
    font-weight: 600 !important;
    color: #6366f1 !important;
    text-decoration: none !important;
    transition: color .15s !important;
}
.dd-blog-card:hover .dd-blog-card__read-more-link {
    color: #4f46e5 !important;
}

/* ═══════════════════════════════════════════════════════
   META BAR – force flex (theme may override div children)
   ═══════════════════════════════════════════════════════ */
.dd-blog-single-meta {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 8px 10px !important;
}
.dd-blog-single-meta__item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    white-space: nowrap !important;
}
.dd-blog-single-meta__sep {
    display: inline !important;
    opacity: .35 !important;
}

/* ═══════════════════════════════════════════════════════
   SHARE BAR – force button/link styles
   ═══════════════════════════════════════════════════════ */
.dd-blog-single-share {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}
.dd-blog-single-share__btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    font-size: .82rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    line-height: 1 !important;
}
.dd-blog-single-share__btn--fb {
    background: #1877f2 !important;
    color: #fff !important;
    border: none !important;
}
.dd-blog-single-share__btn--tw {
    background: #000 !important;
    color: #fff !important;
    border: none !important;
}
.dd-blog-single-share__btn--copy {
    background: #f1f5f9 !important;
    color: #374151 !important;
    border: 1px solid #e5e7eb !important;
}

/* ═══════════════════════════════════════════════════════
   AUTHOR CARD – force card appearance
   ═══════════════════════════════════════════════════════ */
.dd-blog-single-author {
    display: flex !important;
    gap: 20px !important;
    align-items: flex-start !important;
    padding: 24px !important;
    background: #f8faff !important;
    border-radius: 12px !important;
    border: 1px solid #e5e7eb !important;
    margin-bottom: 32px !important;
}

/* ═══════════════════════════════════════════════════════
   SIDEBAR CARDS – force card appearance
   ═══════════════════════════════════════════════════════ */
.dd-blog-single-sidebar__card {
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 22px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,.05) !important;
}
.dd-blog-single-sidebar__card--cta {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%) !important;
    border-color: #c4b5fd !important;
}
.dd-blog-single-sidebar {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

/* ═══════════════════════════════════════════════════════
   BLOG CARD IMAGE – remove fixed aspect-ratio (causes gap)
   ═══════════════════════════════════════════════════════ */

/* Override the aspect-ratio added earlier — let the image
   dictate its own height so there's no empty placeholder gap */
.dd-blog-card__img-wrap {
    aspect-ratio: unset !important;
    height: auto !important;
    background: transparent !important;
}
.dd-blog-card__img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: unset !important;
    /* Keep the zoom-on-hover but remove cover constraints */
}

/* Small thumbnail variant (side cards in blog listing) */
.dd-blog-card__img-wrap--small {
    min-width: 110px !important;
    flex-shrink: 0 !important;
    align-self: stretch !important;
    position: relative !important;
    height: auto !important;
    min-height: 100px !important;
    overflow: hidden !important;
    border-radius: 0 !important;
}
.dd-blog-card__img-wrap--small .dd-blog-card__img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
}

/* ══════════════════════════════════════════════════════════════
   Neighbourhood Service Area Section
   ══════════════════════════════════════════════════════════════ */

.dd-nbhd-areas-section {
    padding: 64px 0;
}

.dd-nbhd-areas-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dd-nbhd-area-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    background: #fff;
    border: 1.5px solid #e0e7ff;
    border-radius: 40px;
    font-size: .875rem;
    font-weight: 500;
    color: var(--dd-primary, #1a3c34);
    text-decoration: none;
    transition: background .18s, border-color .18s, color .18s, box-shadow .18s;
    cursor: pointer;
    line-height: 1.3;
}

.dd-nbhd-area-chip svg {
    opacity: .55;
    transition: opacity .18s, transform .18s;
    flex-shrink: 0;
}

.dd-nbhd-area-chip:hover {
    background: var(--dd-primary, #1a3c34);
    border-color: var(--dd-primary, #1a3c34);
    color: #fff;
    box-shadow: 0 4px 14px rgba(26,60,52,.18);
    text-decoration: none;
}

.dd-nbhd-area-chip:hover svg {
    opacity: 1;
    transform: translateX(2px);
}

.dd-nbhd-areas-group {
    margin-bottom: 28px;
}

.dd-nbhd-areas-no-results {
    font-size: .9rem;
}

@media (max-width: 640px) {
    .dd-nbhd-area-chip {
        font-size: .82rem;
        padding: 8px 13px;
    }
}

/* ═══════════════════════════════════════════════════════════
   NEIGHBOURHOOD LISTING SECTION
   (shown at bottom of Laundry, Dry Cleaning, Pickup & Delivery,
    Commercial Laundry, Drop Off service pages)
═══════════════════════════════════════════════════════════ */

.dd-nbhd-listing-section {
    padding-top: 56px;
    padding-bottom: 64px;
}

.dd-nbhd-listing-group {
    margin-bottom: 28px;
}

.dd-nbhd-listing-city {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--dd-primary, #1a3c34);
    margin: 0 0 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--dd-primary, #1a3c34);
    display: inline-block;
}

.dd-nbhd-listing-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.dd-nbhd-listing-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    border: 1.5px solid #d1d5db;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: .875rem;
    font-weight: 500;
    color: var(--dd-text, #1a1a2e);
    text-decoration: none;
    transition: background .18s, border-color .18s, color .18s, box-shadow .18s;
}

.dd-nbhd-listing-chip svg {
    opacity: .5;
    transition: opacity .18s, transform .18s;
    flex-shrink: 0;
}

.dd-nbhd-listing-chip:hover {
    background: var(--dd-primary, #1a3c34);
    border-color: var(--dd-primary, #1a3c34);
    color: #fff;
    box-shadow: 0 3px 10px rgba(26,60,52,.15);
    text-decoration: none;
}

.dd-nbhd-listing-chip:hover svg {
    opacity: 1;
    transform: translateX(2px);
}

@media (max-width: 640px) {
    .dd-nbhd-listing-chip {
        font-size: .82rem;
        padding: 6px 12px;
    }
}

/* ═══════════════════════════════════════════════════════════
   INDUSTRIES GRID — dd-industry-card2 (screenshot style)
   3-col desktop → 2-col tablet → 1-col mobile
   ═══════════════════════════════════════════════════════════ */

.dd-industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.dd-industry-card2 {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}
.dd-industry-card2:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,.13);
    transform: translateY(-2px);
}

/* ── Image / icon area ── */
.dd-industry-card2__img-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #00c8e0;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dd-industry-card2__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.dd-industry-card2__img-placeholder {
    width: 100%;
    height: 100%;
    background: #00c8e0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dd-industry-card2__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2e4a;
}
.dd-industry-card2__icon svg {
    width: 72px;
    height: 72px;
    stroke: #1a2e4a;
    fill: none;
    stroke-width: 1.25;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Text body ── */
.dd-industry-card2__body {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.dd-industry-card2__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.3;
}

.dd-industry-card2__desc {
    font-size: .93rem;
    color: #444;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.dd-industry-card2__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .92rem;
    font-weight: 700;
    color: var(--dd-primary, #6b21e8);
    text-decoration: none;
    margin-top: auto;
    padding-top: 6px;
    transition: opacity .15s;
}
.dd-industry-card2__link:hover { opacity: .75; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .dd-industries-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 540px) {
    .dd-industries-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ── Commercial tagline/services + quote form layout ──────────────────── */
.dd-com-tagline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 860px) {
    .dd-com-tagline-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ═══════════════════════════════════════════════════════
   HOME PAGE BLOG SECTION  –  dd-home-blog-section
   Uses the existing .dd-blog-grid + .dd-blog-card base.
   Only adds: section bg, category pills, author meta.
   ═══════════════════════════════════════════════════════ */

/* Section background */
.dd-home-blog-section {
    background: #f9fafb;
}

/* ── Category pill badges ─────────────────────────────── */
.dd-home-blog__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}
.dd-home-blog__cat {
    display: inline-block;
    padding: 3px 11px;
    border-radius: 20px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}
/* First pill: amber */
.dd-home-blog__cat--a {
    background: #fef3c7;
    color: #92400e;
}
/* Second pill: violet */
.dd-home-blog__cat--b {
    background: #ede9fe;
    color: #5b21b6;
}

/* ── Author / date meta row ──────────────────────────── */
.dd-home-blog__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}
.dd-home-blog__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.dd-home-blog__meta-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.dd-home-blog__author {
    font-size: .82rem;
    font-weight: 600;
    color: #374151;
}
.dd-home-blog__date {
    font-size: .75rem;
    color: #9ca3af;
}

/* ══════════════════════════════════════════════════════════
   OUR SERVICES SECTION
   ══════════════════════════════════════════════════════════ */
.dd-our-services-section { background: #fff; }

.dd-our-services-section .dd-section-header {
    text-align: center;
    margin-bottom: 40px;
}
.dd-our-services-section .dd-section-title {
    max-width: 620px;
    margin: 8px auto 0;
}

/* ── Carousel: all breakpoints ─── */
.dd-svc-grid {
    position: relative;
    overflow: hidden;
}

.dd-svc-track {
    display: flex;
    gap: 0;
    transition: transform .35s ease;
    will-change: transform;
}

/* Desktop: show 4 cards */
.dd-svc-card {
    flex: 0 0 calc(25% - 20px);
    width: calc(25% - 20px);
    min-width: 0;
    margin: 0 10px;
}

/* ── Card ─── */
.dd-svc-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}
.dd-svc-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.09);
    transform: translateY(-3px);
}

.dd-svc-card__img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.dd-svc-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}
.dd-svc-card:hover .dd-svc-card__img { transform: scale(1.04); }

.dd-svc-card__body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.dd-svc-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
    line-height: 1.3;
}
.dd-svc-card__desc {
    font-size: .88rem;
    color: #6b7280;
    line-height: 1.55;
    margin: 0 0 16px;
    flex: 1;
}
.dd-svc-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .88rem;
    font-weight: 700;
    color: var(--dd-primary, #6d3fc7);
    text-decoration: none;
    margin-top: auto;
    transition: gap .2s;
}
.dd-svc-card__link:hover { gap: 10px; }
.dd-svc-card__link svg { flex-shrink: 0; }

/* ── Carousel controls: visible on all breakpoints ─── */
.dd-svc-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.dd-svc-carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}
.dd-svc-carousel-dot.active {
    background: var(--dd-primary, #6d3fc7);
    transform: scale(1.3);
}

.dd-svc-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}
.dd-svc-carousel-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1.5px solid #d1d5db;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #374151;
    transition: border-color .2s, color .2s, box-shadow .2s;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.dd-svc-carousel-btn:hover { border-color: var(--dd-primary,#6d3fc7); color: var(--dd-primary,#6d3fc7); }
.dd-svc-carousel-btn:disabled { opacity: .3; cursor: default; }
.dd-svc-carousel-btn svg { width: 18px; height: 18px; }

/* ══ TABLET: show 2 cards ══════════════════════════════════ */
@media (max-width: 1023px) {
    .dd-svc-card {
        flex: 0 0 calc(50% - 20px);
        width: calc(50% - 20px);
    }
}

/* ══ MOBILE: show 1 card ═══════════════════════════════════ */
@media (max-width: 767px) {
    .dd-svc-card {
        flex: 0 0 calc(100% - 24px);
        width: calc(100% - 24px);
        margin: 0 12px;
    }
}

/* ═══════════════════════════════════════════════════════════
   ALTERATIONS PAGE — Full Culligan-style layout
   ═══════════════════════════════════════════════════════════ */

/* ── Hero ── */
.dd-alt-hero .dd-hero__content { max-width: 680px; }

/* ── Product Grid ── */
.dd-alt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 22px;
}
.dd-alt-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.07), 0 6px 24px rgba(0,0,0,.05);
    transition: box-shadow .22s, transform .22s;
    position: relative;
}
.dd-alt-card:hover {
    box-shadow: 0 6px 28px rgba(0,0,0,.13);
    transform: translateY(-4px);
}
.dd-alt-card__link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.dd-alt-card__img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f3f4f6;
}
.dd-alt-card__img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .35s;
}
.dd-alt-card:hover .dd-alt-card__img-wrap img { transform: scale(1.05); }
.dd-alt-card__body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}
.dd-alt-card__title {
    font-size: .95rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px;
    line-height: 1.3;
}
.dd-alt-price {
    font-size: .88rem;
    font-weight: 600;
    color: var(--dd-primary, #1a56db);
    margin-top: auto;
}
.dd-alt-book-btn {
    display: inline-block;
    margin-top: auto;
    background: var(--dd-primary, #1a56db);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    padding: 7px 13px;
    border-radius: 6px;
    text-decoration: none;
}
.dd-alt-arrow {
    position: absolute;
    bottom: 16px;
    right: 14px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    transition: color .2s, transform .2s;
}
.dd-alt-card:hover .dd-alt-arrow { color: var(--dd-primary, #1a56db); transform: translateX(3px); }

/* ── Why Choose Us cards (dark bg) ── */
.dd-alt-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
}
.dd-alt-why-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 32px 28px;
    transition: background .22s, transform .22s;
}
.dd-alt-why-card:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-3px);
}
.dd-alt-why-card__icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--dd-primary, #1a56db);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    margin-bottom: 20px;
}
.dd-alt-why-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}
.dd-alt-why-card__desc {
    font-size: .9rem;
    color: rgba(255,255,255,.68);
    line-height: 1.65;
    margin: 0;
}

/* ── Trust callout ── */
.dd-alt-trust-col > div:first-child { flex: 1 1 50%; }
.dd-alt-trust-col > div:last-child  { flex: 1 1 45%; }
.dd-alt-trust-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--dd-primary, #1a56db);
    font-weight: 600;
    text-decoration: none;
    font-size: .95rem;
    transition: gap .2s;
}
.dd-alt-trust-link:hover { gap: 10px; }
.dd-alt-trust-img-wrap {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    margin-bottom: 24px;
}
.dd-alt-trust-img-wrap img { width: 100%; display: block; }
.dd-alt-checklist { display: flex; flex-direction: column; gap: 16px; }
.dd-alt-checklist-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: .95rem;
    font-weight: 500;
    color: #1f2937;
}
.dd-alt-checklist-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--dd-primary, #1a56db);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
}

/* ── Reviews ── */
.dd-alt-reviews-track-wrap {
    overflow: hidden;
    position: relative;
}
.dd-alt-reviews-track {
    display: flex;
    gap: 24px;
    transition: transform .45s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.dd-alt-review-card {
    flex: 0 0 calc(33.333% - 16px);
    background: #fff;
    border-radius: 14px;
    padding: 28px 26px;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}
.dd-alt-review-stars { display: flex; gap: 3px; }
.dd-alt-review-quote {
    font-size: .95rem;
    color: #374151;
    line-height: 1.65;
    font-style: italic;
    flex: 1;
    margin: 0;
}
.dd-alt-review-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: .88rem;
    color: #111827;
}
.dd-alt-review-loc { color: #9ca3af; font-size: .82rem; font-weight: 400; }

/* ── Stats bar ── */
.dd-alt-stats-bar {
    background: var(--dd-primary, #1a56db);
    padding: 48px 0;
}
.dd-alt-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 32px;
    text-align: center;
}
.dd-alt-stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.dd-alt-stat-label {
    font-size: .88rem;
    color: rgba(255,255,255,.78);
    font-weight: 500;
}

/* ── Final CTA ── */
.dd-alt-final-cta {
    background: #0d1b2a;
    padding: 72px 0;
    text-align: center;
}
.dd-alt-final-cta__title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
}
.dd-alt-final-cta__desc {
    color: rgba(255,255,255,.75);
    max-width: 560px;
    margin: 0 auto 32px;
    font-size: 1rem;
    line-height: 1.65;
}
.dd-alt-final-cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── Page description (grid subtitle) ── */
.dd-alt-page-description {
    font-size: 1rem;
    color: #6b7280;
    max-width: 640px;
    margin: 12px auto 0;
    line-height: 1.6;
}
.dd-alt-header-wrapper { text-align: center; }

/* ── Responsive ── */
@media (max-width: 1023px) {
    .dd-alt-review-card { flex: 0 0 calc(50% - 12px); }
    .dd-alt-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .dd-alt-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .dd-alt-review-card { flex: 0 0 calc(100% - 0px); }
    .dd-alt-why-grid { grid-template-columns: 1fr; }
    .dd-alt-trust-col { flex-direction: column !important; }
    .dd-alt-final-cta__title { font-size: 1.5rem; }
    .dd-alt-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
    .dd-alt-grid { grid-template-columns: 1fr; }
}
