/* Soil Weather Section styles */
.soil-weather-section {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden
}

.soil-weather-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 5% 0 8% 0;
}

.soil-weather-left {
    flex: 1 1 45%;
    max-width: 560px
}

.soil-weather-right {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.soil-weather-image {
    width: 520px;
    height: auto;
    display: block;
    filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.7))
}

.soil-weather-kicker {
    font-family: aldrich, sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    color: #00E5A3;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.2em;
}

.soil-weather-heading {
    font-family: "Aldrich", Sans-serif !important;
    font-size: 68px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff !important;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.soil-weather-desc {
    font-family: "Aldrich", Sans-serif !important;
    font-size: 22px;
    line-height: 1.6;
    color: #cccccc;
    margin: 0 0 32px 0;
    letter-spacing: 0.10em;
    font-weight: 400;
}


.soil-weather-badge {
    font-family: "Aldrich", Sans-serif !important;
    display: inline-block;
    padding: 18px 22px;
    border: 2px solid rgba(0, 255, 190, 0.12);
    border-radius: 6px;
    color: #00e5a3;
    margin-top: 12px;
    max-width: 300px;
}

.soil-weather-badge strong {
    font-size: 60px;
    font-weight: 600;
    color: #ffffff;
    font-family: "Aldrich", Sans-serif !important;
}

.soil-weather-badge-sub {
    font-size: 18px;
    color: #00E5A3;
    margin-top: 6px;
    font-family: "Aldrich", Sans-serif;
    width: 70%;
    text-transform: uppercase;
}

.soil-weather-section.align-right .soil-weather-inner {
    flex-direction: row-reverse
}

.soil-weather-section.align-center .soil-weather-inner {
    flex-direction: column;
    align-items: center;
    text-align: center
}

@media(max-width:900px) {
    .soil-weather-inner {
        flex-direction: column;
        padding: 5%;
    }

    .soil-weather-right {
        order: -1;
        margin-bottom: 20px
    }

    /* Diagonal green highlight and badge glow */
    .soil-weather-section::before {
        content: '';
        position: absolute;
        right: -10%;
        top: -30%;
        width: 60%;
        height: 210%;
        transform: rotate(-18deg);
        background: linear-gradient(180deg, rgba(0, 200, 150, 0), rgba(0, 140, 110, 0.22), rgba(0, 60, 40, 0.6));
        mix-blend-mode: screen;
        z-index: 1;
        pointer-events: none;
    }
.soil-weather-heading {
    font-family: "Aldrich", Sans-serif !important;
    font-size: 35px !important;
}
.soil-weather-desc {
    font-family: "Aldrich", Sans-serif;
    font-size: 16px !important;
}
    .soil-weather-badge {
        box-shadow: 0 10px 40px rgba(0, 220, 170, 0.06);
        backdrop-filter: blur(4px);
    }

    .soil-weather-image {
        transition: transform .5s ease;
    }

    .soil-weather-image:hover {
        transform: translateY(-8px) scale(1.02);
        filter: drop-shadow(0 40px 120px rgba(0, 200, 150, 0.18));
    }

    .soil-weather-heading {
        font-size: 34px
    }
}