/* --- 1. حاوية الباقات (Mix & Match) --- */
.naf-mixed-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif; /* أو أي خط عربي تستخدمه */
}

/* --- 2. كرت الباقة --- */
.naf-bundle-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    width: 300px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* تأثير عند المرور بالماوس */
.naf-bundle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: #c5a45c;
}

/* الباقة المميزة (الوسطى) */
.naf-bundle-card.popular {
    border: 2px solid #c5a45c;
    transform: scale(1.05);
    z-index: 2;
}
.naf-bundle-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

/* شارة "الأفضل قيمة" */
.naf-badge {
    background: linear-gradient(45deg, #c5a45c, #e5c575);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 10px rgba(197, 164, 92, 0.4);
}

/* النصوص والأسعار */
.naf-bundle-card h3 {
    margin: 0 0 15px;
    font-size: 1.4rem;
    color: #0b1b3f; /* كحلي */
    font-weight: 700;
}

.naf-b-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b1b3f;
    margin-bottom: 10px;
}

.naf-b-price::after {
    content: ' AED';
    font-size: 1rem;
    font-weight: 500;
    color: #888;
}

.naf-bundle-card p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* الزر الرئيسي */
.naf-open-modal-btn {
    background: #0b1b3f;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.naf-open-modal-btn:hover {
    background: #c5a45c; /* ذهبي */
    color: #fff;
}

/* --- 3. تصميم المودال (Popup) --- */
.naf-modal {
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 27, 63, 0.8); /* خلفية كحلية شفافة */
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.naf-modal-content {
    background: #fff;
    width: 95%;
    max-width: 500px;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    animation: nafSlideUp 0.3s ease-out;
}

@keyframes nafSlideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.naf-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
}
.naf-close:hover { color: #000; }

.naf-modal h2 {
    margin-top: 0;
    color: #0b1b3f;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* حقول الإدخال في المودال */
.naf-link-row select, 
.naf-link-row input, 
.naf-full-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 14px;
    background: #fafafa;
    transition: border 0.3s;
}

.naf-link-row select:focus, 
.naf-link-row input:focus, 
.naf-full-input:focus {
    border-color: #0b1b3f;
    outline: none;
    background: #fff;
}

/* زر الدفع في المودال */
.naf-pay-btn {
    width: 100%;
    background: #28a745; /* أخضر للدفع */
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s;
}
.naf-pay-btn:hover { background: #218838; }

.naf-total-price {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: right;
    color: #0b1b3f;
    margin-bottom: 10px;
}

/* --- 4. فورم الاستفسار (Custom Design) --- */
.naf-inquiry-box {
    background: #f9f9f9;
    border: 2px dashed #ccc;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    margin: 40px auto;
}
.naf-inquiry-box input, .naf-inquiry-box textarea, .naf-inquiry-box select {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.naf-inquiry-box button {
    background: #0b1b3f;
    color: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}