/* ==========================================================================
   RUBBISH REMOVAL SYDNEY — PAGE-SPECIFIC STYLES
   Scope: .rubbish-removal-page ONLY.
   Does not touch header, navbar, footer, breadcrumb, maps, Bootstrap,
   or any shared component CSS.
   ========================================================================== */

.rubbish-removal-page p {
    text-align: justify;
}

.tj-breadcrumb-title {
    text-align: center !important;
}

.tj-breadcrumb-area p {
    text-align: center !important;
}

/* ---------- Section rhythm ---------- */
.rubbish-removal-page .rubbish-section {
    padding: 90px 0;
}

.rubbish-removal-page .rubbish-section--tint {
    background-color: #ddeffe;
}

.rubbish-removal-page .rubbish-section--white {
    background-color: #ffffff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rubbish-removal-page .rubbish-section {
        padding: 70px 0;
    }
}

@media only screen and (max-width: 767px) {
    .rubbish-removal-page .rubbish-section {
        padding: 55px 0;
    }
}

/* ---------- Section header ---------- */
.rubbish-removal-page .rubbish-section-header {
    max-width: 780px;
    margin: 0 auto 45px;
    text-align: center;
}

.rubbish-removal-page .rubbish-section-header--left {
    margin: 0 0 35px;
    text-align: left;
}

.rubbish-removal-page .rubbish-section-tag {
    display: inline-block;
    color: #077cea;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(7, 124, 234, 0.1);
}

.rubbish-removal-page .rubbish-section-title {
    color: #0a2540;
    font-weight: 700;
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 16px;
}

.rubbish-removal-page .rubbish-section-desc {
    color: #55697d;
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .rubbish-removal-page .rubbish-section-title {
        font-size: 26px;
    }
    .rubbish-removal-page .rubbish-section-desc {
        font-size: 16px;
    }
}

/* ---------- Body copy ---------- */
.rubbish-removal-page .rubbish-copy p {
    color: #4d5f70;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.rubbish-removal-page .rubbish-copy p:last-child {
    margin-bottom: 0;
}

.rubbish-removal-page .rubbish-copy strong {
    color: #0a2540;
}

/* ---------- Hero ---------- */
.rubbish-removal-page .rubbish-hero {
    padding: 70px 0 90px;
}

.rubbish-removal-page .rubbish-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.rubbish-removal-page .rubbish-hero-content-order {
    order: 2;
}

.rubbish-removal-page .rubbish-hero-image-order {
    order: 1;
}

.rubbish-removal-page .rubbish-hero-title {
    color: #0a2540;
    font-weight: 800;
    font-size: 42px;
    line-height: 1.2;
    margin: 14px 0 18px;
}

.rubbish-removal-page .rubbish-hero-cta-row {
    margin-top: 28px;
}

.rubbish-removal-page .rubbish-page-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(10, 37, 64, 0.14);
    aspect-ratio: 4 / 3;
}

.rubbish-removal-page .rubbish-page-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rubbish-removal-page .rubbish-page-image:hover img {
    transform: scale(1.04);
}

@media only screen and (max-width: 991px) {
    .rubbish-removal-page .rubbish-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .rubbish-removal-page .rubbish-hero-content-order,
    .rubbish-removal-page .rubbish-hero-image-order {
        order: initial;
    }
    .rubbish-removal-page .rubbish-hero-title {
        font-size: 30px;
    }
}

/* ---------- Two-column content + image sections ---------- */
.rubbish-removal-page .rubbish-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 55px;
    align-items: center;
}

.rubbish-removal-page .rubbish-split--reverse .rubbish-split-image {
    order: 1;
}

.rubbish-removal-page .rubbish-split--reverse .rubbish-split-content {
    order: 2;
}

@media only screen and (max-width: 991px) {
    .rubbish-removal-page .rubbish-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .rubbish-removal-page .rubbish-split--reverse .rubbish-split-image,
    .rubbish-removal-page .rubbish-split--reverse .rubbish-split-content {
        order: initial;
    }
}

/* ---------- Service Grid ---------- */
.rubbish-removal-page .rubbish-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.rubbish-removal-page .rubbish-service-item {
    background: #ffffff;
    border: 1px solid #e3edf6;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 8px 25px rgba(10, 37, 64, 0.06);
}

.rubbish-removal-page .rubbish-service-item:hover {
    transform: translateY(-7px);
    border-color: rgba(7, 124, 234, 0.25);
    box-shadow: 0 18px 40px rgba(10, 37, 64, 0.11);
}

.rubbish-removal-page .rubbish-service-item .service-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(7, 124, 234, 0.10);
    color: #077cea;
    font-size: 22px;
    transition: background 0.3s ease, color 0.3s ease;
}

.rubbish-removal-page .rubbish-service-item:hover .service-icon {
    background: #077cea;
    color: #ffffff;
}

.rubbish-removal-page .rubbish-service-item h3 {
    color: #0a2540;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.rubbish-removal-page .rubbish-service-item p {
    color: #55697d;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .rubbish-removal-page .rubbish-service-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (min-width: 576px) and (max-width: 991px) {
    .rubbish-removal-page .rubbish-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 575px) {
    .rubbish-removal-page .rubbish-service-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .rubbish-removal-page .rubbish-service-item {
        padding: 24px 18px;
    }
}

/* ---------- Type Grid ---------- */
.rubbish-removal-page .rubbish-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.rubbish-removal-page .rubbish-type-card {
    background: #ffffff;
    border: 1.5px solid #b3b3b3;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 8px 25px rgba(10, 37, 64, 0.06);
}

.rubbish-removal-page .rubbish-type-card:hover {
    transform: translateY(-7px);
    border-color: rgba(7, 124, 234, 0.25);
    box-shadow: 0 18px 40px rgba(10, 37, 64, 0.11);
}

.rubbish-removal-page .rubbish-type-card .type-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(7, 124, 234, 0.10);
    color: #077cea;
    font-size: 20px;
    transition: background 0.3s ease, color 0.3s ease;
}

.rubbish-removal-page .rubbish-type-card:hover .type-icon {
    background: #077cea;
    color: #ffffff;
}

.rubbish-removal-page .rubbish-type-card h3 {
    color: #0a2540;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.rubbish-removal-page .rubbish-type-card p {
    color: #55697d;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .rubbish-removal-page .rubbish-type-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 991px) {
    .rubbish-removal-page .rubbish-type-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media only screen and (max-width: 575px) {
    .rubbish-removal-page .rubbish-type-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .rubbish-removal-page .rubbish-type-card {
        padding: 22px 18px;
    }
}

/* ---------- Commercial Grid ---------- */
.rubbish-removal-page .rubbish-commercial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.rubbish-removal-page .rubbish-commercial-card {
    background: #ffffff;
    border: 1px solid #e3edf6;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 8px 25px rgba(10, 37, 64, 0.06);
}

.rubbish-removal-page .rubbish-commercial-card:hover {
    transform: translateY(-7px);
    border-color: rgba(7, 124, 234, 0.25);
    box-shadow: 0 18px 40px rgba(10, 37, 64, 0.11);
}

.rubbish-removal-page .rubbish-commercial-card .commercial-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(7, 124, 234, 0.10);
    color: #077cea;
    font-size: 20px;
    transition: background 0.3s ease, color 0.3s ease;
}

.rubbish-removal-page .rubbish-commercial-card:hover .commercial-icon {
    background: #077cea;
    color: #ffffff;
}

.rubbish-removal-page .rubbish-commercial-card h3 {
    color: #0a2540;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.rubbish-removal-page .rubbish-commercial-card p {
    color: #55697d;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .rubbish-removal-page .rubbish-commercial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 991px) {
    .rubbish-removal-page .rubbish-commercial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media only screen and (max-width: 575px) {
    .rubbish-removal-page .rubbish-commercial-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .rubbish-removal-page .rubbish-commercial-card {
        padding: 22px 18px;
    }
}

/* ---------- Office List ---------- */
.rubbish-removal-page .rubbish-office-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 30px;
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.rubbish-removal-page .rubbish-office-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4d5f70;
    font-size: 15px;
    line-height: 1.6;
    padding: 6px 0;
}

.rubbish-removal-page .rubbish-office-list li i {
    color: #077cea;
    font-size: 16px;
    flex-shrink: 0;
}

@media only screen and (max-width: 575px) {
    .rubbish-removal-page .rubbish-office-list {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

/* ---------- Construction Grid ---------- */
.rubbish-removal-page .rubbish-construction-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 30px;
}

.rubbish-removal-page .rubbish-construction-card {
    background: #ffffff;
    border: 1px solid #e3edf6;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 8px 25px rgba(10, 37, 64, 0.06);
}

.rubbish-removal-page .rubbish-construction-card:hover {
    transform: translateY(-7px);
    border-color: rgba(7, 124, 234, 0.25);
    box-shadow: 0 18px 40px rgba(10, 37, 64, 0.11);
}

.rubbish-removal-page .rubbish-construction-card .construction-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(7, 124, 234, 0.10);
    color: #077cea;
    font-size: 20px;
    transition: background 0.3s ease, color 0.3s ease;
}

.rubbish-removal-page .rubbish-construction-card:hover .construction-icon {
    background: #077cea;
    color: #ffffff;
}

.rubbish-removal-page .rubbish-construction-card h3 {
    color: #0a2540;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.rubbish-removal-page .rubbish-construction-card p {
    color: #55697d;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .rubbish-removal-page .rubbish-construction-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 991px) {
    .rubbish-removal-page .rubbish-construction-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media only screen and (max-width: 575px) {
    .rubbish-removal-page .rubbish-construction-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .rubbish-removal-page .rubbish-construction-card {
        padding: 22px 18px;
    }
}

/* ---------- Construction Benefits ---------- */
.rubbish-removal-page .rubbish-construction-benefits {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 35px;
    background: #ffffff;
    border: 1px solid #e3edf6;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(10, 37, 64, 0.06);
}

.rubbish-removal-page .rubbish-construction-benefits h3 {
    color: #0a2540;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.rubbish-removal-page .rubbish-construction-benefits p {
    color: #55697d;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.rubbish-removal-page .rubbish-construction-benefits ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
}

.rubbish-removal-page .rubbish-construction-benefits ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4d5f70;
    font-size: 15px;
    line-height: 1.6;
    padding: 4px 0;
}

.rubbish-removal-page .rubbish-construction-benefits ul li i {
    color: #077cea;
    font-size: 16px;
    flex-shrink: 0;
}

@media only screen and (max-width: 575px) {
    .rubbish-removal-page .rubbish-construction-benefits {
        padding: 22px 18px;
    }
    .rubbish-removal-page .rubbish-construction-benefits ul {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

/* ---------- Junk Grid ---------- */
.rubbish-removal-page .rubbish-junk-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.rubbish-removal-page .rubbish-junk-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1.5px solid #adadad;
    border-radius: 10px;
    padding: 14px 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.rubbish-removal-page .rubbish-junk-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(7, 124, 234, 0.12);
    border-color: #077cea;
}

.rubbish-removal-page .rubbish-junk-item i {
    color: #077cea;
    font-size: 18px;
    flex-shrink: 0;
}

.rubbish-removal-page .rubbish-junk-item span {
    color: #23425c;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .rubbish-removal-page .rubbish-junk-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 991px) {
    .rubbish-removal-page .rubbish-junk-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 575px) {
    .rubbish-removal-page .rubbish-junk-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .rubbish-removal-page .rubbish-junk-item {
        padding: 12px 16px;
    }
}

/* ---------- Same-Day Grid ---------- */
.rubbish-removal-page .rubbish-sameday-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.rubbish-removal-page .rubbish-sameday-card {
    background: #ffffff;
    border: 1px solid #e3edf6;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 8px 25px rgba(10, 37, 64, 0.06);
}

.rubbish-removal-page .rubbish-sameday-card:hover {
    transform: translateY(-7px);
    border-color: rgba(7, 124, 234, 0.25);
    box-shadow: 0 18px 40px rgba(10, 37, 64, 0.11);
}

.rubbish-removal-page .rubbish-sameday-card i {
    color: #077cea;
    font-size: 30px;
    margin-bottom: 14px;
}

.rubbish-removal-page .rubbish-sameday-card h3 {
    color: #0a2540;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.rubbish-removal-page .rubbish-sameday-card p {
    color: #55697d;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .rubbish-removal-page .rubbish-sameday-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 991px) {
    .rubbish-removal-page .rubbish-sameday-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media only screen and (max-width: 575px) {
    .rubbish-removal-page .rubbish-sameday-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .rubbish-removal-page .rubbish-sameday-card {
        padding: 22px 18px;
    }
}

/* ---------- Cost Grid ---------- */
.rubbish-removal-page .rubbish-cost-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.rubbish-removal-page .rubbish-cost-card {
    background: #ffffff;
    border: 1px solid #e3edf6;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 8px 25px rgba(10, 37, 64, 0.06);
}

.rubbish-removal-page .rubbish-cost-card:hover {
    transform: translateY(-7px);
    border-color: rgba(7, 124, 234, 0.25);
    box-shadow: 0 18px 40px rgba(10, 37, 64, 0.11);
}

.rubbish-removal-page .rubbish-cost-card .cost-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(7, 124, 234, 0.10);
    color: #077cea;
    font-size: 20px;
    transition: background 0.3s ease, color 0.3s ease;
}

.rubbish-removal-page .rubbish-cost-card:hover .cost-icon {
    background: #077cea;
    color: #ffffff;
}

.rubbish-removal-page .rubbish-cost-card h3 {
    color: #0a2540;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.rubbish-removal-page .rubbish-cost-card p {
    color: #55697d;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .rubbish-removal-page .rubbish-cost-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 991px) {
    .rubbish-removal-page .rubbish-cost-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media only screen and (max-width: 575px) {
    .rubbish-removal-page .rubbish-cost-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .rubbish-removal-page .rubbish-cost-card {
        padding: 22px 18px;
    }
}

/* ---------- Quote Grid ---------- */
.rubbish-removal-page .rubbish-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.rubbish-removal-page .rubbish-quote-item {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 20px 24px;
    background: #ffffff;
    border: 1px solid #e3edf6;
    border-radius: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.rubbish-removal-page .rubbish-quote-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(10, 37, 64, 0.08);
    border-color: rgba(7, 124, 234, 0.25);
}

.rubbish-removal-page .rubbish-quote-item .quote-number {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #077cea;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
}

.rubbish-removal-page .rubbish-quote-item h3 {
    color: #0a2540;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.4;
}

.rubbish-removal-page .rubbish-quote-item p {
    color: #55697d;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

@media only screen and (max-width: 767px) {
    .rubbish-removal-page .rubbish-quote-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .rubbish-removal-page .rubbish-quote-item {
        padding: 16px 18px;
    }
}

/* ---------- Process Steps ---------- */
/* .rubbish-removal-page .rubbish-process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.rubbish-removal-page .rubbish-process-step {
    background: #077cea;
    border: 1px solid #077cea;
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.rubbish-removal-page .rubbish-process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 24px rgba(10, 37, 64, 0.22);
}

.rubbish-removal-page .rubbish-step-num {
    width: 44px;
    height: 44px;
    line-height: 44px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #ffffff;
    color: #077cea;
    font-weight: 700;
    font-size: 16px;
}

.rubbish-removal-page .rubbish-process-step h3 {
    color: #ffffff;
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 8px;
}

.rubbish-removal-page .rubbish-process-step p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
    .rubbish-removal-page .rubbish-process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media only screen and (max-width: 575px) {
    .rubbish-removal-page .rubbish-process-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .rubbish-removal-page .rubbish-process-step {
        padding: 22px 18px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
        text-align: left;
    }
    .rubbish-removal-page .rubbish-step-num {
        margin: 0;
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 15px;
    }
    .rubbish-removal-page .rubbish-process-step h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }
    .rubbish-removal-page .rubbish-process-step p {
        font-size: 13.5px;
    }
} */

/* ---------- Why Choose Grid ---------- */
.rubbish-removal-page .rubbish-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.rubbish-removal-page .rubbish-why-card {
    background: #ffffff;
    border: 1px solid #e3edf6;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 8px 25px rgba(10, 37, 64, 0.06);
}

.rubbish-removal-page .rubbish-why-card:hover {
    transform: translateY(-7px);
    border-color: rgba(7, 124, 234, 0.25);
    box-shadow: 0 18px 40px rgba(10, 37, 64, 0.11);
}

.rubbish-removal-page .rubbish-why-card .why-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(7, 124, 234, 0.10);
    color: #077cea;
    font-size: 20px;
    transition: background 0.3s ease, color 0.3s ease;
}

.rubbish-removal-page .rubbish-why-card:hover .why-icon {
    background: #077cea;
    color: #ffffff;
}

.rubbish-removal-page .rubbish-why-card .why-number {
    color: #077cea;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
}

.rubbish-removal-page .rubbish-why-card h3 {
    color: #0a2540;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.rubbish-removal-page .rubbish-why-card p {
    color: #55697d;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .rubbish-removal-page .rubbish-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 991px) {
    .rubbish-removal-page .rubbish-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media only screen and (max-width: 575px) {
    .rubbish-removal-page .rubbish-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .rubbish-removal-page .rubbish-why-card {
        padding: 24px 18px;
    }
    .rubbish-removal-page .rubbish-why-card .why-number {
        font-size: 28px;
    }
}

/* ---------- Why Choose Benefits ---------- */
.rubbish-removal-page .rubbish-why-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.rubbish-removal-page .rubbish-benefit-item {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 20px 24px;
    background: #ffffff;
    border: 1px solid #e3edf6;
    border-radius: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.rubbish-removal-page .rubbish-benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(10, 37, 64, 0.08);
    border-color: rgba(7, 124, 234, 0.25);
}

.rubbish-removal-page .rubbish-benefit-item i {
    color: #077cea;
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.rubbish-removal-page .rubbish-benefit-item h4 {
    color: #0a2540;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.4;
}

.rubbish-removal-page .rubbish-benefit-item p {
    color: #55697d;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

@media only screen and (max-width: 767px) {
    .rubbish-removal-page .rubbish-why-benefits {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .rubbish-removal-page .rubbish-benefit-item {
        padding: 18px 20px;
    }
}

/* ---------- Disposal Grid ---------- */
.rubbish-removal-page .rubbish-disposal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.rubbish-removal-page .rubbish-disposal-card {
    background: #ffffff;
    border: 1px solid #e3edf6;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 8px 25px rgba(10, 37, 64, 0.06);
}

.rubbish-removal-page .rubbish-disposal-card:hover {
    transform: translateY(-7px);
    border-color: rgba(7, 124, 234, 0.25);
    box-shadow: 0 18px 40px rgba(10, 37, 64, 0.11);
}

.rubbish-removal-page .rubbish-disposal-card i {
    color: #077cea;
    font-size: 30px;
    margin-bottom: 14px;
}

.rubbish-removal-page .rubbish-disposal-card h3 {
    color: #0a2540;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.rubbish-removal-page .rubbish-disposal-card p {
    color: #55697d;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .rubbish-removal-page .rubbish-disposal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 991px) {
    .rubbish-removal-page .rubbish-disposal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media only screen and (max-width: 575px) {
    .rubbish-removal-page .rubbish-disposal-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .rubbish-removal-page .rubbish-disposal-card {
        padding: 24px 18px;
    }
}

/* ---------- Comparison Grid ---------- */
.rubbish-removal-page .rubbish-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.rubbish-removal-page .rubbish-comparison-card {
    border-radius: 16px;
    padding: 30px 28px;
    box-shadow: 0 8px 25px rgba(10, 37, 64, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.rubbish-removal-page .rubbish-comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(10, 37, 64, 0.11);
}

.rubbish-removal-page .rubbish-comparison-regular {
    background: #f0f7ff;
    border: 1px solid #c5d9f0;
}

.rubbish-removal-page .rubbish-comparison-removal {
    background: #f0f9f0;
    border: 1px solid #b8e0b8;
}

.rubbish-removal-page .rubbish-comparison-card h3 {
    color: #0a2540;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.rubbish-removal-page .rubbish-comparison-card p {
    color: #55697d;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.rubbish-removal-page .rubbish-comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rubbish-removal-page .rubbish-comparison-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: #4d5f70;
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.rubbish-removal-page .rubbish-comparison-card ul li:last-child {
    border-bottom: 0;
}

.rubbish-removal-page .rubbish-comparison-card ul li i {
    color: #2e8b57;
    flex-shrink: 0;
}

@media only screen and (max-width: 767px) {
    .rubbish-removal-page .rubbish-comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .rubbish-removal-page .rubbish-comparison-card {
        padding: 24px 20px;
    }
}

/* ---------- Timing Grid ---------- */
.rubbish-removal-page .rubbish-timing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.rubbish-removal-page .rubbish-timing-card {
    background: #ffffff;
    border: 1px solid #e3edf6;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 8px 25px rgba(10, 37, 64, 0.06);
}

.rubbish-removal-page .rubbish-timing-card:hover {
    transform: translateY(-7px);
    border-color: rgba(7, 124, 234, 0.25);
    box-shadow: 0 18px 40px rgba(10, 37, 64, 0.11);
}

.rubbish-removal-page .rubbish-timing-card .timing-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(7, 124, 234, 0.10);
    color: #077cea;
    font-size: 20px;
    transition: background 0.3s ease, color 0.3s ease;
}

.rubbish-removal-page .rubbish-timing-card:hover .timing-icon {
    background: #077cea;
    color: #ffffff;
}

.rubbish-removal-page .rubbish-timing-card h3 {
    color: #0a2540;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.rubbish-removal-page .rubbish-timing-card p {
    color: #55697d;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .rubbish-removal-page .rubbish-timing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 991px) {
    .rubbish-removal-page .rubbish-timing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media only screen and (max-width: 575px) {
    .rubbish-removal-page .rubbish-timing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .rubbish-removal-page .rubbish-timing-card {
        padding: 22px 18px;
    }
}

/* ---------- Location Grid ---------- */
.rubbish-removal-page .rubbish-location-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.rubbish-removal-page .rubbish-location-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #e3edf6;
    border-radius: 10px;
    color: #23425c;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.rubbish-removal-page .rubbish-location-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(7, 124, 234, 0.12);
    border-color: #077cea;
}

.rubbish-removal-page .rubbish-location-item i {
    color: #077cea;
    font-size: 14px;
    flex-shrink: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .rubbish-removal-page .rubbish-location-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 991px) {
    .rubbish-removal-page .rubbish-location-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 575px) {
    .rubbish-removal-page .rubbish-location-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .rubbish-removal-page .rubbish-location-item {
        padding: 10px 14px;
        font-size: 13px;
    }
}

/* ---------- CTA ---------- */
.rubbish-removal-page .rubbish-cta-btn {
    margin-top: 6px;
}

.rubbish-removal-page .rubbish-cta-center {
    text-align: center;
}

/* ---------- Final CTA ---------- */
.rubbish-removal-page .rubbish-final-cta {
    padding: 80px 0;
    background: #f5f9fc;
}

.rubbish-removal-page .rubbish-cta-inner {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 65px 75px;
    background: #077cea;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
}

.rubbish-removal-page .rubbish-cta-inner::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    top: -120px;
    left: -100px;
    border-radius: 50%;
    background: rgba(7, 124, 234, 0.18);
}

.rubbish-removal-page .rubbish-cta-inner::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -150px;
    bottom: -170px;
    border-radius: 50%;
    background: rgba(7, 124, 234, 0.20);
}

.rubbish-removal-page .rubbish-cta-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.rubbish-removal-page .rubbish-cta-content .rubbish-section-tag {
    display: inline-block;
    margin-bottom: 16px;
    color: #ffffff;
}

.rubbish-removal-page .rubbish-cta-content h2 {
    margin: 0 auto 20px;
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
}

.rubbish-removal-page .rubbish-cta-content p {
    max-width: 760px;
    margin: 0 auto 12px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.75;
}

.rubbish-removal-page .rubbish-hero-cta-row {
    margin-top: 28px;
}

@media (max-width: 991px) {
    .rubbish-removal-page .rubbish-final-cta {
        padding: 65px 0;
    }
    .rubbish-removal-page .rubbish-cta-inner {
        padding: 50px 45px;
    }
    .rubbish-removal-page .rubbish-cta-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 650px) {
    .rubbish-removal-page .rubbish-final-cta {
        padding: 45px 0;
    }
    .rubbish-removal-page .rubbish-cta-inner {
        padding: 40px 22px;
        border-radius: 15px;
    }
    .rubbish-removal-page .rubbish-cta-content h2 {
        font-size: 27px;
        line-height: 1.25;
    }
    .rubbish-removal-page .rubbish-cta-content p {
        font-size: 14px;
        line-height: 1.7;
    }
    .rubbish-removal-page .rubbish-hero-cta-row {
        margin-top: 22px;
    }
}

@media (max-width: 767px) {
    .rubbish-removal-page .rubbish-hero-cta-row {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .rubbish-removal-page .rubbish-cta-btn {
        margin-left: auto;
        margin-right: auto;
    }
}

/* =========================================================
   RUBBISH REMOVAL FAQ
========================================================= */

.rubbish-faq-section {
    width: 100%;
    padding: 80px 20px;
    background: #ffffff;
}

.rubbish-faq-section .container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================================================
   FAQ HEADER
========================================================= */

.rubbish-faq-header {
    text-align: center;
    margin-bottom: 45px;
}

.rubbish-section-tag {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 16px;
    border-radius: 50px;
    background: #edf5ee;
    color: #2d6a35;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.rubbish-faq-header h2 {
    margin: 0 0 12px;
    color: #263b2b;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
}

.rubbish-faq-header p {
    max-width: 920px;
    margin: 0 auto;
    color: #66727a;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   FAQ LIST
========================================================= */

.rubbish-faq-list {
    width: 100%;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.rubbish-faq-list details {
    margin: 0 0 14px;
    border: 1px solid #e1e7e2;
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.rubbish-faq-list details:last-child {
    margin-bottom: 0;
}


/* =========================================================
   QUESTION
========================================================= */

.rubbish-faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 21px 24px;

    cursor: pointer;
    list-style: none;
    user-select: none;

    color: #293d2e;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 600;
}

.rubbish-faq-list summary::-webkit-details-marker {
    display: none;
}

.rubbish-faq-list summary::marker {
    display: none;
}


/* =========================================================
   PLUS / MINUS ICON
========================================================= */

.rubbish-faq-list summary span {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: #edf5ee;
    color: #34703d;

    font-size: 22px;
    font-weight: 400;
    line-height: 1;

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease;
}


/* =========================================================
   OPEN FAQ
========================================================= */

.rubbish-faq-list details[open] summary {
    color: #077cea;
    font-weight: 700;
}

.rubbish-faq-list details[open] summary span {
    background: #dfeee1;
    color: #077cea;
}


/* =========================================================
   ANSWER
========================================================= */

.rubbish-faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 400ms ease;
}


/* =========================================================
   ANSWER CONTENT
========================================================= */

.rubbish-faq-answer-inner {
    padding: 0 24px 23px;
}

.rubbish-faq-answer-inner:hover {
    cursor: pointer;
}

.rubbish-faq-answer-inner p {
    margin: 0;
    color: #68747b;
    font-size: 15.5px;
    line-height: 1.75;
}


/* =========================================================
   HOVER
========================================================= */

.rubbish-faq-list details:hover {
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}

.rubbish-faq-list summary:hover span {
    background: #e0f0e2;
}


/* =========================================================
   FOCUS
========================================================= */

.rubbish-faq-list summary:focus-visible {
    outline: 3px solid rgba(52, 112, 61, 0.22);
    outline-offset: -3px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .rubbish-faq-section {
        padding: 60px 16px;
    }

    .rubbish-faq-header {
        margin-bottom: 32px;
    }

    .rubbish-faq-header h2 {
        font-size: 28px;
    }

    .rubbish-faq-header p {
        font-size: 15px;
        line-height: 1.6;
    }

    .rubbish-faq-list details {
        margin-bottom: 10px;
        border-radius: 8px;
    }

    .rubbish-faq-list summary {
        padding: 18px 17px;
        gap: 12px;
        font-size: 16px;
    }

    .rubbish-faq-list summary span {
        width: 27px;
        height: 27px;
        font-size: 20px;
    }

    .rubbish-faq-answer-inner {
        padding: 0 17px 20px;
    }

    .rubbish-faq-answer-inner p {
        font-size: 15px;
        line-height: 1.7;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .rubbish-faq-section {
        padding: 50px 14px;
    }

    .rubbish-faq-header h2 {
        font-size: 25px;
    }

    .rubbish-faq-list summary {
        padding: 16px 14px;
        font-size: 15px;
    }

    .rubbish-faq-answer-inner {
        padding: 0 14px 18px;
    }
}



/* =========================================================
   RUBBISH REMOVAL PROCESS
========================================================= */

.rubbish-process-layout {
    display: grid;
    grid-template-columns: 65% 35%;
    align-items: stretch;
    gap: 45px;
    margin-top: 45px;
}


/* =========================================================
   LARGE LEFT IMAGE
========================================================= */

.rubbish-process-image {
    width: 100%;
    min-height: 700px;
    border-radius: 18px;
    overflow: hidden;
}

.rubbish-process-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 700px;
    object-fit: cover;
    object-position: center;
}


/* =========================================================
   PROCESS STEPS - RIGHT SIDE
========================================================= */

.rubbish-process-steps {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
}


/* =========================================================
   INDIVIDUAL PROCESS STEP
========================================================= */

.rubbish-process-step {
    position: relative;

    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 15px;

    padding: 0 0 25px;
    margin-bottom: 25px;

    border-bottom: 1px solid #e5e7e9;
}

.rubbish-process-step:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}


/* =========================================================
   STEP NUMBER
========================================================= */

.rubbish-step-num {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 50%;

    background: #edeef5;
    color: #077cea;

    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}


/* =========================================================
   STEP CONTENT
========================================================= */

.rubbish-process-step h3 {
    margin: 0 0 7px;

    color: #27263b;

    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
}

.rubbish-process-step p {
    margin: 0;

    color: #68747b;

    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   IMAGE HOVER
========================================================= */

.rubbish-process-image {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.rubbish-process-image img {
    transition: transform 0.5s ease;
}

.rubbish-process-image:hover img {
    transform: scale(1.03);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .rubbish-process-layout {
        grid-template-columns: 60% 40%;
        gap: 30px;
    }

    .rubbish-process-image,
    .rubbish-process-image img {
        min-height: 650px;
    }

    .rubbish-process-step {
        grid-template-columns: 40px 1fr;
        gap: 12px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .rubbish-step-num {
        width: 38px;
        height: 38px;
        font-size: 12px;
    }

    .rubbish-process-step h3 {
        font-size: 15px;
    }

    .rubbish-process-step p {
        font-size: 13px;
        line-height: 1.55;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .rubbish-process-layout {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 35px;
    }

    .rubbish-process-image {
        min-height: 350px;
        max-height: 450px;
        border-radius: 14px;
    }

    .rubbish-process-image img {
        min-height: 350px;
        max-height: 450px;
    }

    .rubbish-process-steps {
        gap: 0;
    }

    .rubbish-process-step {
        grid-template-columns: 44px 1fr;
        gap: 14px;
        padding-bottom: 22px;
        margin-bottom: 22px;
    }

    .rubbish-step-num {
        width: 40px;
        height: 40px;
    }

    .rubbish-process-step h3 {
        font-size: 16px;
    }

    .rubbish-process-step p {
        font-size: 14px;
        line-height: 1.65;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .rubbish-process-layout {
        gap: 28px;
    }

    .rubbish-process-image {
        min-height: 280px;
        max-height: 350px;
    }

    .rubbish-process-image img {
        min-height: 280px;
        max-height: 350px;
    }

    .rubbish-process-step {
        grid-template-columns: 38px 1fr;
        gap: 12px;
    }

    .rubbish-step-num {
        width: 36px;
        height: 36px;
        font-size: 11px;
    }

    .rubbish-process-step h3 {
        font-size: 15px;
    }

    .rubbish-process-step p {
        font-size: 13.5px;
    }
}
