/* ======== تصميم صفقة اليوم ======== */
.deal-of-the-day {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(rgba(13, 13, 26, 0.8), rgba(13, 13, 26, 1)), url('https://image.ibb.co/jGzGsd/account1.jpg') no-repeat center center/cover;
    color: #fff;
}
.deal-content h1 { font-size: 3.5rem; font-weight: 900; text-shadow: 0 0 15px var(--primary-color); }
.deal-content p { font-size: 1.2rem; color: var(--text-color-muted); margin: 15px 0 30px; }

/* ======== العداد التنازلي ======== */
.countdown-timer { display: flex; justify-content: center; gap: 20px; margin-bottom: 40px; }
.time-block { background: rgba(0,0,0,0.3); padding: 20px; border-radius: 10px; border: 1px solid var(--border-color); min-width: 100px; }
.time-block span { font-size: 2.5rem; font-weight: 700; display: block; }
.time-block small { font-size: 0.9rem; color: var(--text-color-muted); }

/* ======== قسم الحزم الخاصة ======== */
.special-bundles { padding: 80px 0; background-color: var(--surface-color); }
.section-title { text-align: center; font-size: 2.5rem; font-weight: 900; margin-bottom: 50px; }
.bundles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.bundle-card { background: var(--bg-color); padding: 30px; border-radius: 15px; text-align: center; border: 1px solid var(--border-color); transition: all 0.3s ease; }
.bundle-card.featured { transform: scale(1.05); border-color: var(--primary-color); box-shadow: 0 0 25px rgba(138, 43, 226, 0.3); }
.bundle-icon { font-size: 3rem; color: var(--primary-color); margin-bottom: 15px; }
.bundle-card h3 { font-size: 1.8rem; margin-bottom: 10px; }
.bundle-card p { color: var(--text-color-muted); line-height: 1.6; margin-bottom: 20px; }
.bundle-price { font-size: 1.5rem; font-weight: 700; color: #fff; }

/* ======== قسم العروض المحدودة (تصميم جديد ومتجاوب) ======== */
.limited-offers {
    padding: 80px 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.offer-card {
    background-color: var(--surface-color);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.offer-image {
    position: relative;
    height: 200px;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #e63946;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(230, 57, 70, 0.5);
}

.offer-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.offer-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.offer-price {
    margin-bottom: 20px;
    margin-top: auto;
}

.old-price {
    font-size: 1rem;
    color: var(--text-color-muted);
    text-decoration: line-through;
    margin-left: 10px;
}

.new-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.offer-info .btn {
    width: 100%;
    padding: 12px;
}

/* ======== قسم الدعوة للتواصل ======== */
.final-cta { padding: 80px 0; text-align: center; background-color: var(--surface-color); }
.final-cta h2 { font-size: 2.5rem; }
.final-cta p { color: var(--text-color-muted); max-width: 600px; margin: 15px auto 30px; }
.social-icons-large a { font-size: 2.5rem; color: var(--text-color-muted); margin: 0 15px; transition: all 0.3s; }
.social-icons-large a:hover { color: var(--primary-color); transform: translateY(-5px); }


/* ======== التجاوب مع الجوال (Mobile Responsiveness) ======== */
@media (max-width: 768px) {

    .section-title,
    .deal-content h1,
    .final-cta h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .deal-of-the-day {
        padding: 60px 20px;
    }
    .countdown-timer {
        gap: 10px;
        transform: scale(0.9);
    }
    .time-block {
        min-width: 70px;
        padding: 10px 5px;
    }
    .time-block span {
        font-size: 1.8rem;
    }

    .special-bundles, .limited-offers, .final-cta {
        padding: 60px 20px;
    }
    .bundles-grid {
        grid-template-columns: 1fr;
    }
    .bundle-card.featured {
        transform: scale(1);
    }
    
    .social-icons-large a {
        font-size: 2rem;
    }
}
