

/* أنماط تسجيل الدخول */
.login-body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #2c3e50, #3498db);
}

.login-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
    transform: translateY(0);
    animation: slideUp 0.5s ease;
}

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

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #3498db;
}

.login-form .input-group {
    margin-bottom: 25px;
}

.login-form label {
    display: block;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.login-form input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.login-form input:focus {
    border-color: #3498db;
    outline: none;
}

.login-btn {
    width: 100%;
    padding: 15px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.login-btn:hover {
    background: #2980b9;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-icon {
    font-size: 24px;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icon.whatsapp { background: #25D366; }
.social-icon.phone { background: #2ecc71; }
.social-icon.google-play { background: #0f9d58; }

.social-icon:hover {
    transform: translateY(-3px);
}

/* إضافة زر تسجيل الخروج */
.logout-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #e74c3c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logout-btn:hover {
    background: #c0392b;
}
















:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #27ae60;
    --text-color: #333;
    --bg-color: #FFFFFFFF;
    --note-bg: #fff3e0;
    --border-radius: 12px;
}

.dark-mode {
    --primary-color: #ecf0f1;
    --secondary-color: #2980b9;
    --accent-color: #2ecc71;
    --text-color: #ecf0f1;
    --bg-color: #2c3e50;
    --note-bg: #34495e;
}

* {
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
    transition: background 0.3s, color 0.3s;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 20px;
}

.dark-mode-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    font-size: 14px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
}

.service-section {
    background: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    padding: 25px;
    border: 1px solid rgba(0,0,0,0.1);
    position: relative;
}

.service-title {
    color: var(--primary-color);
    border-right: 4px solid var(--secondary-color);
    padding-right: 15px;
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.4em;
}

.service-title img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.pricing-table th {
    background: var(--secondary-color);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    border-radius: 8px 8px 0 0;
}

.pricing-table td {
    padding: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    text-align: center;
    font-size: 0.95em;
}

.pricing-table tr:hover {
    background: rgba(0,0,0,0.03);
}

.currency-symbol {
    color: var(--accent-color);
    font-size: 0.8em;
    margin-right: 3px;
}

.note {
    background: var(--note-bg);
    padding: 15px 20px;
    border-radius: 8px;
    margin: 18px 0;
    border-right: 4px solid var(--accent-color);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95em;
    position: relative;
}

.note:hover {
    transform: translateX(-5px);
    box-shadow: 2px 0 8px rgba(0,0,0,0.08);
}

.note::after {
    content: "✔";
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    color: var(--accent-color);
}

.note.copied::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .pricing-table td, .pricing-table th {
        padding: 10px;
        font-size: 14px;
    }
    
    .service-title {
        font-size: 1.2em;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .service-title img {
        width: 50px;
        height: 50px;
    }
    
    .dark-mode-toggle {
        padding: 8px 15px;
        font-size: 12px;
    }
}

.service-section:nth-child(odd) {
    border-right: 4px solid var(--secondary-color);
}

.service-section:nth-child(even) {
    border-right: 4px solid var(--accent-color);
}