/* سيكشن الفوتر */
.qtnrftrbbd {
    position: relative;
    container-type: inline-size;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 46px 22px 0;
    background-color: var(--secondary);
    border-top: 1px solid rgba(111, 66, 193, 0.18);
    border-radius: 30px 30px 0 0;
    box-shadow: 0 -14px 40px -16px rgba(0, 0, 0, 0.16);
}

/* الحاوية الداخلية */
.qtnrftrbbdinner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    width: 85%;
    max-width: 1120px;
    margin-top: 10px;
    padding: 10px;
    background-color: var(--secondary);
     border-top: 1px solid rgba(111, 66, 193, 0.18);
    border-radius: 30px;
    box-shadow: 0 14px 40px 16px rgba(0, 0, 0, 0.16);

}

/* كتلة العلامة */
.qtnrftrbbdbrand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    flex: 1 1 300px;
    max-width: 430px;
}

/* اللوجو */
.qtnrftrbbdlogo {
    width: 190px;
    height: auto;
}

/* نص العلامة */
.qtnrftrbbdabout {
    font-size: 15px;
    color: var(--helper);
}

/* ازرار التواصل */
.qtnrftrbbdactions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

/* زر */
.qtnrftrbbdbtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--primary);
    border-radius: 12px;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.qtnrftrbbdbtn i {
    font-size: 15px;
}

/* زر الاتصال */
.qtnrftrbbdcall {
    color: var(--secondary);
    background-color: var(--primary);
}

.qtnrftrbbdcall:hover {
    color: var(--primary);
    background-color: var(--secondary);
}

/* زر الواتساب */
.qtnrftrbbdwhats {
    color: var(--primary);
    background-color: var(--secondary);
}

.qtnrftrbbdwhats:hover {
    color: var(--secondary);
    background-color: var(--primary);
}

/* كتلة الروابط */
.qtnrftrbbdnav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1 1 340px;
}

/* عنوان الروابط */
.qtnrftrbbdheading {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

/* قائمة الروابط */
.qtnrftrbbdlinks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
}

/* رابط */
.qtnrftrbbdlink {
    position: relative;
    width: fit-content;
    font-size: 14px;
    color: var(--helper);
    transition: color 0.25s ease;
}

.qtnrftrbbdlink::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.25s ease;
}

.qtnrftrbbdlink:hover {
    color: var(--primary);
}

.qtnrftrbbdlink:hover::after {
    width: 100%;
}

/* الشريط السفلي */
.qtnrftrbbdbottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    width: 80%;
    max-width: 1120px;
    margin-top: 34px;
    padding: 20px 0 44px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    text-align: center;
}

/* حقوق النشر */
.qtnrftrbbdcopy {
    font-size: 13px;
    color: var(--helper);
}

/* العلامة المائية */
.qtnrftrbbdwatermark {
    position: absolute;
    left: 50%;
    bottom: -0.14em;
    transform: translateX(-50%);
    z-index: 0;
    font-size: 26cqw;
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: -0.02em;
    white-space: nowrap;
    color: transparent;
    -webkit-text-stroke: 2px rgba(111, 66, 193, 0.16);
    pointer-events: none;
    user-select: none;
}

/* استجابة الشاشات */
@media (max-width: 720px) {

    .qtnrftrbbdinner,
    .qtnrftrbbdbottom {
        width: 92%;
    }

    .qtnrftrbbdlinks {
        grid-template-columns: 1fr;
    }

    .qtnrftrbbdwatermark {
        font-size: 30cqw;
    }

}
