/* =====================================================
   WHY ASK PROPERTY PRO
===================================================== */

.why-ask-property-pro {
    padding: 120px 0;
    background: #ffffff;
}

.why-heading {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.why-heading h2 {
    margin: 0 0 25px;
    font-size: 58px;
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
}

.why-heading p {
    margin: 0 auto;
    max-width: 760px;
    font-size: 20px;
    line-height: 1.9;
    color: #64748b;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    position: relative;
    overflow: hidden;
    padding: 40px 35px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.10);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(199, 167, 91, 0.12);
    border: 2px solid rgba(199, 167, 91, 0.30);
    transition: transform 0.35s ease,
                background 0.35s ease,
                border-color 0.35s ease,
                box-shadow 0.35s ease;
}

.why-icon i {
    font-size: 40px;
    line-height: 1;
    color: #c7a75b;
    transition: color 0.35s ease;
}

.why-card:hover .why-icon {
    transform: translateY(-5px) scale(1.06);
    background: #c7a75b;
    border-color: #c7a75b;
    box-shadow: 0 15px 30px rgba(199, 167, 91, 0.28);
}

.why-card:hover .why-icon i {
    color: #ffffff;
}

.why-card h3 {
    margin: 0 0 35px;
    font-size: 24px;
    line-height: 1.4;
    color: #0f172a;
}

.why-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: #475569;
}

/* ===========================
   RTL
=========================== */

html[dir="rtl"] .why-heading {
    text-align: center;
}

html[dir="rtl"] .why-card {
    text-align: right;
}

html[dir="rtl"] .why-icon {
    margin-right: 0;
    margin-left: auto;
}

/* ===========================
   TABLET
=========================== */

@media (max-width: 991px) {

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-heading h2 {
        font-size: 40px;
    }

    .why-heading p {
        font-size: 18px;
    }

}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 767px) {

    .why-ask-property-pro {
        padding: 70px 0;
    }

    .why-heading {
        margin-bottom: 40px;
    }

    .why-heading h2 {
        font-size: 32px;
    }

    .why-heading p {
        font-size: 16px;
        line-height: 1.8;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 30px;
    }

    .why-icon {
        width: 68px;
        height: 68px;
    }

    .why-icon i {
        font-size: 28px;
    }

}