﻿ 
/* ==============================
       MAIN COLORS
    ============================== */
:root {
    --primary: #0b1f33;
    --primary2: #123653;
    --orange: #ff6b1a;
    --orange-dark: #e95408;
    --light: #f5f7fa;
    --white: #ffffff;
    --text: #263746;
    --muted: #718096;
    --border: #e5eaf0;
    --shadow: 0 10px 35px rgba(11,31,51,.10);
}

body {
    background: #f7f9fc;
    color: var(--text);
}

/* ==============================
       HERO
    ============================== */

.emergency-hero {
    background: radial-gradient(circle at 85% 20%, rgba(255,107,26,.25), transparent 32%), linear-gradient(135deg, #071725 0%, #0b1f33 55%, #123653 100%);
    padding: 55px 20px;
    position: relative;
    overflow: hidden;
    direction: rtl;
}

    .emergency-hero:after {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        border: 70px solid rgba(255,255,255,.025);
        border-radius: 50%;
        left: -160px;
        top: -160px;
    }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: auto;
}

.hero-label {
    display: inline-block;
    background: rgba(255,107,26,.15);
    color: #ff9b67;
    border: 1px solid rgba(255,107,26,.35);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 18px;
}

.hero-title {
    color: #fff;
    font-size: 38px;
    line-height: 1.7;
    font-weight: 800;
    margin: 0 0 12px;
}

    .hero-title span {
        color: #ff7b32;
    }

.hero-description {
    color: #d6e0e9;
    font-size: 17px;
    line-height: 2;
    max-width: 760px;
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 14px 25px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none !important;
    transition: .25s;
}

    .hero-btn:hover {
        transform: translateY(-3px);
    }

.hero-btn-orange {
    background: var(--orange);
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(255,107,26,.30);
}

    .hero-btn-orange:hover {
        background: var(--orange-dark);
    }

.hero-btn-light {
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff !important;
}

/* ==============================
       QUICK SERVICES
    ============================== */

.quick-services {
    margin-top: -35px;
    position: relative;
    z-index: 5;
    direction: rtl;
}

.quick-box {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 25px;
}

.quick-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    border-left: 1px solid var(--border);
    min-height: 70px;
}

    .quick-item:last-child {
        border-left: none;
    }

.quick-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    background: #fff1e9;
    color: var(--orange);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.quick-item strong {
    display: block;
    color: var(--primary);
    font-size: 15px;
    margin-bottom: 4px;
}

.quick-item small {
    color: var(--muted);
}

/* ==============================
       SECTION
    ============================== */

.home-section {
    padding: 70px 0;
    direction: rtl;

}

.section-title {
    text-align: center;
    color: var(--primary);
    font-size: 29px;
    font-weight: 800;
    margin: 0 0 12px;
}

    .section-title span {
        color: var(--orange);
    }

.section-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 16px;
    margin: 0 auto 38px;
    max-width: 700px;
    line-height: 2;
}

/* ==============================
       SERVICE CARDS
    ============================== */

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 22px;
    margin-bottom: 25px;
    height: calc(100% - 25px);
    box-shadow: 0 5px 20px rgba(11,31,51,.05);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

    .service-card:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 3px;
        background: var(--orange);
        transform: scaleX(0);
        transform-origin: right;
        transition: .3s;
    }

    .service-card:hover {
        transform: translateY(-7px);
        box-shadow: var(--shadow);
        border-color: #ffd2bd;
    }

        .service-card:hover:before {
            transform: scaleX(1);
        }

.service-icon {
    width: 65px;
    height: 65px;
    background: #fff2eb;
    color: var(--orange);
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    margin-bottom: 20px;
    font-weight: bold;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 10px;
}

.service-card p {
    color: var(--muted);
    line-height: 1.9;
    margin: 0;
    font-size: 14px;
}

/* ==============================
       DISCOUNT
    ============================== */

.discount-box {
    background: linear-gradient(120deg, #ff6b1a, #f04c0b);
    border-radius: 22px;
    padding: 38px 35px;
    color: #fff;
    direction: rtl;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(255,107,26,.22);
}

    .discount-box:after {
        content: "%";
        position: absolute;
        left: 35px;
        top: -65px;
        font-size: 250px;
        font-weight: 900;
        color: rgba(255,255,255,.08);
        margin-bottom: 50px !important;
    }

    .discount-box h2 {
        font-size: 30px;
        font-weight: 900;
        margin: 0 0 10px;
    }

    .discount-box p {
        margin: 0;
        line-height: 2;
        color: rgba(255,255,255,.9);
    }

.discount-badge {
    display: inline-block;
    background: #fff;
    color: var(--orange);
    font-size: 30px;
    font-weight: 900;
    border-radius: 15px;
    padding: 10px 25px;
    margin-bottom: 15px;
}

/* ==============================
       WHY US
    ============================== */

.why-section {
    background: var(--primary);
    color: #fff;
    direction: rtl;
    padding: 70px 0;
}

    .why-section .section-title {
        color: #fff;
    }

    .why-section .section-subtitle {
        color: #b9c8d5;
    }

.why-item {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
}

.why-number {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 50%;
    background: rgba(255,107,26,.15);
    border: 1px solid rgba(255,107,26,.4);
    color: #ff7b32;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
}

.why-item h3 {
    margin: 0 0 7px;
    font-size: 17px;
    color: #fff;
}

.why-item p {
    margin: 0;
    color: #aebdca;
    line-height: 1.9;
    font-size: 14px;
}

/* ==============================
       STEPS
    ============================== */

.step-card {
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-circle {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #fff2eb;
    border: 5px solid #fff;
    box-shadow: 0 0 0 2px #ffd8c6;
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 900;
}

.step-card h3 {
    color: var(--primary);
    font-size: 17px;
    font-weight: 800;
}

.step-card p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 14px;
}

/* ==============================
       LOCATIONS
    ============================== */

.locations-box {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow);
    direction: rtl;
}

.location-tag {
    display: inline-block;
    background: #f4f7fa;
    color: var(--primary);
    border: 1px solid #e5eaf0;
    border-radius: 50px;
    padding: 9px 17px;
    margin: 5px;
    font-size: 14px;
    transition: .2s;
}

    .location-tag:hover {
        background: #fff0e8;
        color: var(--orange);
        border-color: #ffd1bd;
    }

/* ==============================
       CONTENT
    ============================== */

.seo-content {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(11,31,51,.05);
    direction: rtl;
    line-height: 2.1;
    text-align: justify;
}

    .seo-content h2 {
        color: var(--primary);
        font-size: 24px;
        font-weight: 800;
        margin: 35px 0 15px;
    }

    .seo-content p {
        color: #536473;
        font-size: 15px;
    }

    .seo-content strong {
        color: var(--primary);
    }

/* ==============================
       FAQ
    ============================== */

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 22px;
    margin-bottom: 15px;
    direction: rtl;
}

    .faq-item h3 {
        color: var(--primary);
        font-size: 17px;
        font-weight: 800;
        margin: 0 0 10px;
    }

    .faq-item p {
        margin: 0;
        color: var(--muted);
        line-height: 1.9;
        font-size: 14px;
    }

/* ==============================
       MOBILE
    ============================== */

@media(max-width:767px) {

    .emergency-hero {
        padding: 40px 18px;
    }

    .hero-title {
        font-size: 26px;
        line-height: 1.7;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        display: block;
    }

    .hero-btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .quick-services {
        margin-top: -20px;
        padding: 0 10px;
    }

    .quick-item {
        border-left: none;
        border-bottom: 1px solid var(--border);
    }

        .quick-item:last-child {
            border-bottom: none;
        }

    .home-section {
        padding: 45px 0;
    }

    .section-title {
        font-size: 23px;
    }

    .seo-content {
        padding: 22px;
    }

    .discount-box {
        padding: 28px 20px;
    }

        .discount-box h2 {
            font-size: 23px;
        }
}

/* =========================================================
   MAIN SLIDER - SMOOTH FADE
========================================================= */

#emdadMainSlider {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #ffffff !important;
    direction: ltr !important;
    line-height: 0 !important;
}


    /* اسلایدها */
    #emdadMainSlider .emdad-slider-item {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out !important;
        z-index: 1 !important;
    }


        /* اولین اسلاید */
        #emdadMainSlider .emdad-slider-item:first-child {
            position: relative !important;
        }


        /* اسلاید فعال */
        #emdadMainSlider .emdad-slider-item.emdad-active {
            opacity: 1 !important;
            visibility: visible !important;
            z-index: 2 !important;
        }


        /* تصویر */
        #emdadMainSlider .emdad-slider-item img {
            display: block !important;
            width: 100% !important;
            max-width: 100% !important;
            height: auto !important;
            margin: 0 !important;
            padding: 0 !important;
            border: 0 !important;
            border-radius: 0 !important;
            box-shadow: none !important;
            object-fit: cover !important;
        }


/* موبایل */
@media (max-width: 767px) {

    #emdadMainSlider .emdad-slider-item img {
        width: 100% !important;
        height: auto !important;
    }
}



 
