/* سيكشن ازرار الاتصال في الهيرو */
.qtnrctadbe {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

/* الزر */
.qtnrctadbebtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background-color: var(--primary);
   
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 3px solid rgba(0, 0, 0, 0.55);
    border-radius: 999px;
    box-shadow:
        inset 0 7px 14px rgba(0, 0, 0, 0.55),
        inset 0 -5px 12px rgba(255, 255, 255, 0.12),
        0 16px 28px -10px rgba(0, 0, 0, 0.6);
}

/* حاوية النص */
.qtnrctadbeplate {
    display: inline-flex;
    align-items: center;
    padding: 11px;
    color: var(--primary);
    background-color: var(--secondary);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 999px;
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.9),
        0 6px 0 rgba(0, 0, 0, 0.35),
        0 15px 22px -6px rgba(0, 0, 0, 0.55);
    transition: color 0.25s ease, background-color 0.25s ease;
}

/* حاوية الايقونة */
.qtnrctadbeorb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    color: var(--primary);
    background-color: var(--secondary);
    border-radius: 50%;
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.9),
        0 6px 0 rgba(0, 0, 0, 0.35),
        0 15px 22px -6px rgba(0, 0, 0, 0.55);
    transition: color 0.25s ease, background-color 0.25s ease;
}

/* ايقونة الزر */
.qtnrctadbeicon {
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

/* حالة المرور */
.qtnrctadbebtn:hover .qtnrctadbeplate,
.qtnrctadbebtn:hover .qtnrctadbeorb {
    color: var(--secondary);
    background-color: var(--primary);
}
