/*** 
=============================================
    Junk Condition Section Style
=============================================
***/

.junk-condition-area {
    position: relative;
    display: block;
    background: #f8fafc;
    padding: 10px 0 10px;
    z-index: 2;
}

.junk-condition-main-title {
    color: #0f172a;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 800;
    font-family: var(--thm-font, 'Catamaran', sans-serif);
    margin-bottom: 40px;
    text-align: center;
}

/* Elevated White Card Container matching reference image */
.junk-condition-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 10px 10px 10px;
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.9);
    position: relative;
    z-index: 1;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.junk-condition-card:hover {
    box-shadow: 0 22px 55px rgba(0, 168, 89, 0.12);
}

.junk-condition-grid {
    margin-left: -15px;
    margin-right: -15px;
}

/* Individual Condition Item */
.junk-condition-item {
    text-align: center;
    padding: 5px;
    border-radius: 16px;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    margin-bottom: 15px;
}

.junk-condition-item:hover {
    transform: translateY(-8px);
    background: #f0fdf4;
}

/* Icon Box */
.junk-icon-box {
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: transform 0.35s ease;
}

.junk-icon-box svg {
    transition: all 0.35s ease;
}

.junk-condition-item:hover .junk-icon-box {
    transform: scale(1.15) rotate(-3deg);
}

.junk-condition-item:hover .junk-icon-box svg path[fill="#2d3748"] {
    fill: #00a859;
}

.junk-condition-item:hover .junk-icon-box svg stroke[stroke="#2d3748"] {
    stroke: #00a859;
}

/* Label Below Icon */
.junk-condition-label {
    display: block;
    color: #00a859;
    /* Green text matching site theme & design */
    font-size: 16px;
    font-weight: 700;
    font-family: var(--thm-font, 'Catamaran', sans-serif);
    line-height: 1.2;
    transition: color 0.3s ease;
}

.junk-condition-item:hover .junk-condition-label {
    color: #006940;
}

/* Responsiveness */
@media (max-width: 991px) {
    .junk-condition-area {
        padding: 60px 0 80px;
    }

    .junk-condition-card {
        padding: 40px 24px 30px;
    }

    .junk-condition-main-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .junk-condition-item {
        padding: 18px 10px;
    }

    .junk-condition-label {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .junk-condition-card {
        padding: 30px 15px 20px;
        border-radius: 16px;
    }

    .junk-condition-main-title {
        font-size: 24px;
    }

    .junk-icon-box {
        height: 44px;
    }

    .junk-icon-box svg {
        width: 44px;
        height: 34px;
    }

    .junk-condition-label {
        font-size: 13px;
    }
}