﻿/*=================================
            Services Section
==================================*/

.services {
    padding: 100px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .section-title h2 {
        font-size: 42px;
        color: #2d248d;
        margin-bottom: 15px;
    }

    .section-title p {
        color: #666;
        font-size: 18px;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.service-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: .35s;
    border: 1px solid #eee;
}

    .service-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(0,0,0,.12);
    }

    .service-card i {
        font-size: 55px;
        color: #2d248d;
        margin-bottom: 25px;
    }

    .service-card h3 {
        font-size: 28px;
        margin-bottom: 15px;
        color: #222;
    }

    .service-card p {
        color: #666;
        line-height: 2;
        font-size: 17px;
    }

/* زر الخدمة */

.service-btn {
    display: inline-block;
    margin-top: 20px;
    background: #2d248d;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

    .service-btn:hover {
        background: #1d1866;
        transform: translateY(-3px);
    }

/*=================================
            Why Us
==================================*/

.why-us {
    padding: 100px 0;
    background: #f5f7fb;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.why-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    transition: .3s;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

    .why-card:hover {
        transform: translateY(-10px);
    }

    .why-card i {
        font-size: 50px;
        color: #2d248d;
        margin-bottom: 20px;
    }

    .why-card h3 {
        margin-bottom: 15px;
        color: #222;
        font-size: 24px;
    }

    .why-card p {
        color: #666;
        line-height: 1.9;
    }

/*=================================
            Brands
==================================*/

.brands {
    padding: 120px 0;
    background: linear-gradient(to bottom,#ffffff,#f8f9fc);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(140px,1fr));
    gap: 35px;
    align-items: center;
}

.brand-card {
    height: 130px;
    background: #fff;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
    transition: .35s;
    padding: 20px;
}

    .brand-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 40px rgba(0,0,0,.15);
    }

    .brand-card img {
        max-width: 90px;
        max-height: 45px;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: .7;
        transition: .35s;
    }

    .brand-card:hover img {
        filter: none;
        opacity: 1;
        transform: scale(1.12);
    }

/*=================================
            Contact
==================================*/

.contact {
    padding: 100px 0;
    background: #f5f7fb;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info {
    background: #2d248d;
    color: #fff;
    padding: 40px;
    border-radius: 18px;
}

    .contact-info h3 {
        margin-bottom: 25px;
    }

    .contact-info p {
        margin-bottom: 20px;
        font-size: 18px;
    }

    .contact-info i {
        margin-inline-end: 10px;
    }

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 15px;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 10px;
        font-family: 'Cairo', sans-serif;
    }

    .contact-form textarea {
        height: 150px;
        resize: none;
    }

    .contact-form button {
        background: #2d248d;
        color: #fff;
        border: none;
        padding: 15px 30px;
        border-radius: 10px;
        cursor: pointer;
        font-size: 18px;
    }
