 /* =========================
   CUSTOMER STATS
========================= */

.customer-stats-section {
    position: relative;
    z-index: 10;
    margin-top: -35px;
    padding: 0 15px;
}

.customer-stats {
    max-width: 1100px;
    margin: 0 auto;
    background: #f8c23e;
    border-radius: 6px;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.stat-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(0, 0, 0, 0.15);
}

.stat-item h3 {
    margin: 0 0 4px;
    font-size: 26px;
    font-weight: 700;
    color: #172b4d;
    line-height: 1.1;
}

.stat-item p {
    margin: 0;
    font-size: 11px;
    font-weight: 600;
    color: #172b4d;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .customer-stats-section {
        margin-top: -25px;
        padding: 0 12px;
    }

    .customer-stats {
        padding: 15px 8px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 5px;
    }

    .stat-item {
        padding: 5px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-item h3 {
        font-size: 22px;
    }

    .stat-item p {
        font-size: 10px;
    }
}





/* =========================================
   EMERGENCY CTA SECTION
========================================= */

.emergency-cta {
    position: relative;
    margin-top: 70px;
    max-width: 1400px;
    min-height: 500px;
    
    overflow: hidden;

    background-image: url("../image/emergency_cta.jpeg");
    background-size: cover;
    background-position: center;
}

.emergency-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 22, 40, 0.78);
}

.emergency-container {
    position: relative;
    z-index: 2;

    max-width: 1200px;
    min-height: 500px;
    margin: auto;

    padding: 70px 50px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}


/* LEFT CONTENT */

.emergency-content {
    max-width: 720px;
    color: #fff;
}

.emergency-small-title {
    display: inline-block;
    margin-bottom: 15px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;

    color: red;
}

.emergency-content h2 {
    margin: 0 0 20px;

    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;

    color: #fff;
}

.emergency-content p {
    max-width: 680px;

    margin-bottom: 28px;

    font-size: 16px;
    line-height: 1.7;

    color: rgba(255,255,255,0.9);
}


/* BUTTONS */

.emergency-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.emergency-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;
    padding: 0 25px;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

.emergency-buttons i {
    margin-right: 9px;
    font-size: 17px;
}


/* Free Consultation */

.consultation-btn {
    background: #3e83c7;
    color: #fff !important;
}

.consultation-btn:hover {
    background: #f8c23e;
    color: #172b4d !important;
}


/* WhatsApp */

.whatsapp-btn {
    background: #25D366;
    color: #fff !important;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    color: #fff !important;
}


/* TRUST TEXT */

.emergency-trust {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 25px;

    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.emergency-trust i {
    color: red;
    margin-right: 5px;
}


/* =========================================
   RIGHT FEATURE BOX
========================================= */

.emergency-features {
    width: 330px;

    padding: 25px 28px;

    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 15px;

    background: rgba(10, 30, 50, 0.45);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.emergency-feature {
    display: flex;
    align-items: center;

    gap: 18px;

    padding: 17px 0;

    color: #fff;
}

.emergency-feature:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.emergency-feature > i {
    width: 35px;

    text-align: center;

    font-size: 30px;

    color: red;
}

.emergency-feature div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.emergency-feature strong {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.emergency-feature span {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .emergency-container {
        padding: 60px 35px;
        gap: 30px;
    }

    .emergency-content h2 {
        font-size: 38px;
    }

    .emergency-features {
        width: 290px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .emergency-cta {
        margin: 45px 15px;
        min-height: auto;

        border-radius: 10px;

        background-position: center;
    }

    .emergency-container {
        min-height: auto;

        padding: 45px 22px;

        display: flex;
        flex-direction: column;

        align-items: flex-start;

        gap: 35px;
    }

    .emergency-content {
        width: 100%;
    }

    .emergency-small-title {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .emergency-content h2 {
        font-size: 31px;
        line-height: 1.2;
    }

    .emergency-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .emergency-buttons {
        width: 100%;

        flex-direction: column;

        gap: 10px;
    }

    .emergency-buttons a {
        width: 100%;
    }

    .emergency-trust {
        flex-wrap: wrap;
        gap: 7px;

        font-size: 12px;
    }

    .emergency-features {
        width: 100%;

        padding: 15px 20px;
    }

    .emergency-feature {
        padding: 13px 0;
    }

    .emergency-feature > i {
        font-size: 25px;
    }

    .emergency-feature strong {
        font-size: 16px;
    }

    .emergency-feature span {
        font-size: 12px;
    }

}