.content-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.box {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    width: 300px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.box h2 {
    font-family: 'Tajawal', sans-serif;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.button {
    text-decoration: none;
    color: white;
    padding: 12px;
    font-size: 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.5s;
}

.button:hover::before {
    left: 100%;
}

/* ألوان الأزرار */
.button-telegram { background: #0088CC; }
.button-whatsapp { background: #25D366; }
.button-instagram { background: #E1306C; }
.button-facebook { background: #1877F2; }
.button-payment { background: var(--secondary-color); }

/* تنسيق الشعارات لتكون بجانب بعضها */
.partners-section {
    padding: 30px 0;
    background: white;
    margin-top: 40px;
    border-top: 2px solid #eee;
}

.partners-grid {
    display: flex;
    flex-wrap: nowrap; /* يجعل جميع الشعارات في خط واحد */
    justify-content: center;
    align-items: center;
    gap: 40px; /* يحدد المسافة بين الشعارات */
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto; /* يسمح بالتمرير الأفقي إذا لم تتسع الشاشة */
}

.partner-logo {
    flex: 0 1 auto; /* يجعل كل شعار يأخذ حجمه الطبيعي */
    max-width: 150px;
    padding: 10px;
    text-align: center;
}

.partner-logo img {
    width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo:hover img {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* تحسينات الفوتر */
.footer-bottom {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    font-size: 14px;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
}

/* ضبط ترتيب الشعارات ليكون بجانب بعض بدون أي فراغات غير مرغوبة */
@media (max-width: 1024px) {
    .partners-grid {
        flex-wrap: wrap; /* في الشاشات الأصغر ستتوزع الشعارات في عدة أسطر */
        gap: 25px;
    }

    .partner-logo {
        max-width: 140px;
    }
}

/* إضافة تنسيق واضح لتحسين ريسبونسف الشعارات بشكل احترافي */
@media (max-width: 768px) {
    .partner-logo {
        flex: 0 0 100px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        gap: 15px;
        padding: 10px;
    }
    
    .partner-logo {
        flex: 0 0 90px;
    }
}
/* تعديل إظهار tooltip بشكل جزئي فقط */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%; /* يظهر فوق المربع */
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 13px;
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    width: 220px;
    max-width: 90vw;
    margin-bottom: 10px;
    z-index: 100; /* لضمان ظهوره فوق جميع العناصر */
}

[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
}

