.alert-page-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* محاذاة للأعلى للسماح بالاسكرول إذا طالت البطاقة */
    min-height: 100vh;
    padding: 30px 15px;
}

.alert-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-card);
    box-shadow: var(--card-shadow);
    max-width: 700px; /* عرض البطاقة */
    width: 100%;
    padding: 30px 35px;
    animation: fadeInCard 0.6s ease-out;
}

@keyframes fadeInCard {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.alert-header .logo {
    max-width: 120px; /* اضبط حجم الشعار */
    margin-bottom: 15px;
}

.alert-header h1 {
    font-size: 1.8rem;
    color: var(--adel-primary-teal);
    font-weight: 800;
    margin-bottom: 5px;
}

.alert-header .tagline {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.alert-section {
    margin-bottom: 30px;
}

.alert-section h2 {
    font-size: 1.5rem;
    color: var(--adel-secondary-blue); /* استخدام الأزرق الداكن للعناوين */
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--adel-primary-teal);
    display: inline-block; /* لجعل الخط السفلي يمتد فقط تحت النص */
}

.alert-section p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1em;
}
.alert-section p a {
    color: var(--adel-primary-teal);
    font-weight: 500;
    text-decoration: underline;
}
.alert-section p a:hover {
    color: var(--adel-secondary-blue);
}

.alert-section ul {
    list-style: none; /* إزالة النمط الافتراضي */
    padding-right: 0; /* إزالة الـ padding الافتراضي */
    margin-bottom: 1em;
}

.alert-section ul li {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.6em;
    padding-right: 25px; /* مسافة للنقطة المخصصة */
    position: relative;
}

.alert-section ul li::before {
    /* إنشاء نقطة مخصصة */
    content: "•";
    color: var(--adel-primary-teal);
    font-weight: bold;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
}

.highlight {
    background-color: var(--highlight-bg);
    color: var(--highlight-text);
    padding: 0.1em 0.4em;
    border-radius: 3px;
    font-weight: bold;
}

.price-range {
    font-weight: bold;
    color: var(--adel-primary-teal);
}

.official-contact ul li i {
    margin-left: 8px; /* مسافة بين الأيقونة والنص في RTL */
    color: var(--adel-primary-teal);
    width: 20px; /* لتوحيد عرض الأيقونات */
}
.whatsapp-icon-inline {
    color: #25d366 !important; /* لون الواتساب */
    margin-right: -2px; /* لتقريب أيقونة الواتساب من أيقونة الهاتف */
    margin-left: 6px;
}

.whatsapp-action {
    text-align: center;
    margin-top: 25px;
}

.btn-whatsapp-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25d366; /* لون الواتساب */
    color: white;
    padding: 12px 25px;
    border-radius: var(--border-radius-card);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-whatsapp-contact i {
    font-size: 1.3em;
}
.btn-whatsapp-contact:hover {
    background-color: #1da851; /* لون أغمق للواتساب عند المرور */
    transform: translateY(-2px);
}

.alert-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.95rem;
}
.alert-footer a {
    color: var(--adel-primary-teal);
    text-decoration: none;
    margin: 0 10px;
    font-weight: 500;
}
.alert-footer a:hover {
    text-decoration: underline;
    color: var(--adel-secondary-blue);
}
.footer-separator {
    color: var(--border-color);
}
.alert-footer .copyright {
    margin-top: 10px;
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .alert-card {
        padding: 25px;
    }
    .alert-header h1 {
        font-size: 1.6rem;
    }
    .alert-section h2 {
        font-size: 1.3rem;
    }
    .alert-section p,
    .alert-section ul li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .alert-page-wrapper {
        padding: 20px 10px;
    }
    .alert-card {
        padding: 20px 15px;
    }
    .alert-header h1 {
        font-size: 1.4rem;
    }
    .alert-header .tagline {
        font-size: 0.85rem;
    }
    .btn-whatsapp-contact {
        font-size: 1rem;
        padding: 10px 20px;
    }
}
