/* =========================================
STORM DAMAGE CLEANUP SECTION
========================================= */

.storm-cleanup-section{
    padding:80px 0;
}

/* MAIN GRID */

.storm-cleanup-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

/* CONTENT */

.storm-cleanup-content{
    display:flex;
    flex-direction:column;
    gap:25px;
}

/* SERVICE CARD */

.storm-service-card{
    background:#f8f8f8;

    padding:20px 22px;

    border-radius:26px;

    display:flex;
    gap:25px;

    transition:0.3s ease;
}

.storm-service-card:hover{
    transform:translateY(-6px);

    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.storm-number{
    min-width:40px;
    height:40px;
    background:var(--header-bg);
    color:#fff;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;
    font-weight:700;
}

.storm-text h3{
    color:var(--header-bg);
    margin-bottom:14px;
}

.storm-text p{
    line-height:1.7;
    color:#000;
    text-align: left;
}

/* INFO STRIP */

.storm-info-strip{
    margin-top:10px;
    margin-bottom:30px;

    background:var(--header-bg);
    color:#fff;

    padding:35px;

    border-radius:28px;
}

.storm-info-strip h4{
    margin-bottom:15px;
}

.storm-info-strip p{
    line-height:1.8;

    color:rgba(255,255,255,0.85);
}

.storm-hazards {
    padding-left: 25px;
    margin-bottom: 20px;
}

.storm-hazards li {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
}

/* IMAGE */

.storm-cleanup-image{
    position:relative;
}

.storm-cleanup-image img{
    width:100%;
    height:800px;
    object-fit:cover;
    border-radius:30px;
    display:block;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

/* FLOATING BOX */

.storm-floating-box{
    position:absolute;

    bottom:30px;
    left:30px;

    background:#fff;

    padding:30px;

    border-radius:24px;

    max-width:320px;

    box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.storm-floating-box h4{
    color:var(--header-bg);
    margin-bottom:15px;
}

.storm-floating-box p{
    line-height:1.7;
    color:#000;

    margin-bottom:20px;
}
/* =========================================
RESPONSIVE BREAKPOINTS
========================================= */

/* Large Tablets & Small Desktops (1200px and below) */
@media(max-width: 1200px){
    .storm-cleanup-grid{
        gap: 50px;
    }
    
    .storm-cleanup-image img{
        height: 680px;
    }
    
    .storm-service-card{
        padding: 25px;
        gap: 20px;
    }
    
    .storm-number{
        min-width: 65px;
        width: 65px;
        height: 65px;
        font-size: 20px;
        border-radius: 18px;
    }
    
    .storm-text h3{
    }
    
    .storm-text p{
        line-height: 1.7;
    }
    
    .storm-info-strip{
        padding: 30px;
    }
    
    .storm-info-strip h4{
    }
    
    .storm-floating-box{
        padding: 25px;
        max-width: 280px;
    }
}

/* Tablets & Medium Screens (992px and below) */
@media(max-width: 992px){
    .storm-cleanup-section{
        padding: 60px 0;
    }
    
    .storm-cleanup-grid{
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .storm-cleanup-content{
        order: 2;
    }
    
    .storm-cleanup-image{
        order: 1;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
    
    .storm-cleanup-image img{
        height: 520px;
        border-radius: 25px;
    }
    
    .storm-floating-box{
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 20px;
        padding: 22px;
        max-width: 100%;
        border-radius: 20px;
    }
    
    .storm-floating-box h4{
    }
    
    .storm-floating-box p{
    }
}

/* Small Tablets & Large Phones (768px and below) */
@media(max-width: 768px){
    .storm-cleanup-section{
        padding: 50px 0;
    }
    
    .storm-cleanup-grid{
        gap: 40px;
    }
    
    .storm-cleanup-content{
        gap: 20px;
    }
    
    .storm-service-card{
        flex-direction: column;
        padding: 22px;
        gap: 16px;
        border-radius: 22px;
    }
    
    .storm-service-card:hover{
        transform: translateY(-4px);
    }
    
    .storm-number{
        min-width: 55px;
        width: 55px;
        height: 55px;
        font-size: 18px;
        border-radius: 16px;
    }
    
    .storm-text h3{
        margin-bottom: 10px;
    }
    
    .storm-text p{
        line-height: 1.7;
    }
    
    .storm-info-strip{
        padding: 28px 25px;
        border-radius: 24px;
    }
    
    .storm-info-strip h4{
        margin-bottom: 12px;
    }
    
    .storm-info-strip p{
        line-height: 1.7;
    }
    
    .storm-cleanup-image img{
        height: 420px;
        border-radius: 22px;
    }
    
    .storm-floating-box{
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 20px;
        padding: 18px;
        max-width: 100%;
        border-radius: 18px;
    }
    
    .storm-floating-box h4{
        margin-bottom: 10px;
    }
    
    .storm-floating-box p{
        margin-bottom: 15px;
    }
}

/* Mobile Devices (576px and below) */
@media(max-width: 576px){
    .storm-cleanup-section{
        padding: 40px 0;
    }
    
    .storm-cleanup-grid{
        gap: 35px;
    }
    
    .storm-cleanup-header h2{
    }
    
    .storm-cleanup-header p{
    }
    
    .storm-cleanup-content{
        gap: 18px;
    }
    
    .storm-service-card{
        padding: 18px;
        gap: 14px;
        border-radius: 18px;
    }
    
    .storm-number{
        min-width: 50px;
        width: 50px;
        height: 50px;
        font-size: 16px;
        border-radius: 14px;
    }
    
    .storm-text h3{
        margin-bottom: 8px;
    }
    
    .storm-text p{
        line-height: 1.6;
    }
    
    .storm-info-strip{
        padding: 22px 20px;
        border-radius: 20px;
    }
    
    .storm-info-strip h4{
        margin-bottom: 10px;
    }
    
    .storm-info-strip p{
    }
    
    .storm-cleanup-image img{
        height: 360px;
        border-radius: 18px;
    }
    
    .storm-floating-box{
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
        max-width: 100%;
        padding: 18px;
        border-radius: 16px;
    }
    
    .storm-floating-box h4{
    }
    
    .storm-floating-box p{
    }
}

/* Small Mobile Devices (480px and below) */
@media(max-width: 480px){
    .storm-cleanup-section{
        padding: 35px 0;
    }
    
    .storm-cleanup-header h2{
    }
    
    .storm-cleanup-header p{
    }
    
    .storm-cleanup-grid{
        gap: 30px;
    }
    
    .storm-service-card{
        padding: 20px;
        gap: 12px;
        border-radius: 16px;
    }
    
    .storm-number{
        min-width: 45px;
        width: 45px;
        height: 45px;
        font-size: 16px;
        border-radius: 12px;
    }
    
    .storm-text h3{
    }
    
    .storm-text p{
        line-height: 1.6;
    }
    
    .storm-info-strip{
        padding: 20px;
        border-radius: 18px;
    }
    
    .storm-info-strip h4{
    }
    
    .storm-info-strip p{
    }
    
    .storm-cleanup-image img{
        height: 320px;
        border-radius: 16px;
    }
    
    .storm-floating-box{
        padding: 20px;
    }
    
    .storm-floating-box h4{
        margin-bottom: 8px;
    }
    
    .storm-floating-box p{
        margin-bottom: 12px;
    }
}

/* Very Small Mobile Devices (400px and below) */
@media(max-width: 400px){
    .storm-cleanup-section{
        padding: 30px 0;
    }
    
    .storm-cleanup-header h2{
    }
    
    .storm-cleanup-image img{
        height: 280px;
        border-radius: 14px;
    }
    
    .storm-service-card{
        padding: 20px;
        gap: 10px;
    }
    
    .storm-number{
        min-width: 40px;
        width: 40px;
        height: 40px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    .storm-text h3{
    }
    
    .storm-text p{
    }
    
    .storm-info-strip h4{
    }
    
    .storm-info-strip p{
    }
}

/* Landscape Mode for Mobile */
@media(max-width: 768px) and (orientation: landscape){
    .storm-cleanup-section{
        padding: 40px 0;
    }
    
    .storm-cleanup-grid{
        gap: 35px;
    }
    
    .storm-cleanup-image img{
        height: 380px;
    }
    
    .storm-service-card{
        flex-direction: row;
        padding: 18px;
    }
    
    .storm-number{
        min-width: 50px;
        width: 50px;
        height: 50px;
    }
    
    .storm-text h3{
    }
    
    .storm-floating-box{
        position: absolute;
        bottom: 15px;
        left: 15px;
        padding: 12px 15px;
        max-width: 220px;
    }
    
    .storm-floating-box h4{
    }
    
    .storm-floating-box p{
    }
}

/* Print Styles (Optional) */
@media print {
    .storm-cleanup-section{
        padding: 20px 0;
    }
    
    .storm-cleanup-grid{
        display: block;
    }
    
    .storm-service-card{
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
        background: #fff;
    }
    
    .storm-service-card:hover{
        transform: none;
    }
    
    .storm-number{
        background: #f0f0f0;
        color: #000;
        border: 1px solid #ddd;
    }
    
    .storm-info-strip{
        background: #f0f0f0;
        color: #000;
        border: 1px solid #ddd;
    }
    
    .storm-info-strip p{
        color: #000;
    }
    
    .storm-cleanup-image img{
        box-shadow: none;
        border: 1px solid #ddd;
        height: auto;
    }
    
    .storm-floating-box{
        position: relative;
        box-shadow: none;
        border: 1px solid #ddd;
        margin-top: 15px;
    }
}

/* =========================================
   TYPOGRAPHY STANDARDIZATION (USER REQUESTED)
   ========================================= */
/* Desktop */
.storm-cleanup-section h2, .section-title h2, .storm-cleanup-header h2 { font-size: 40px !important; }
.storm-cleanup-section h3, .storm-text h3, .storm-info-strip h4, .storm-floating-box h4, .section-title h3 { font-size: 22px !important; }
.storm-cleanup-section p, .storm-text p, .storm-info-strip p, .storm-floating-box p, .section-title p, .storm-cleanup-header p { font-size: 18px !important; line-height: 1.6 !important; }
.storm-cleanup-section li { font-size: 18px !important; line-height: 1.6 !important; }

/* Tablet and Mobile (<= 1024px) */
@media (max-width: 1024px) {
    .storm-cleanup-section h2, .section-title h2, .storm-cleanup-header h2 { font-size: 35px !important; }
    .storm-cleanup-section h3, .storm-text h3, .storm-info-strip h4, .storm-floating-box h4, .section-title h3 { font-size: 22px !important; }
    .storm-cleanup-section p, .storm-text p, .storm-info-strip p, .storm-floating-box p, .section-title p, .storm-cleanup-header p { font-size: 18px !important; line-height: 1.6 !important; }
    .storm-cleanup-section li { font-size: 18px !important; line-height: 1.6 !important; }
}