* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

/* الهيدر */
header {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

header h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.tagline {
    font-size: 1.4rem;
    font-style: italic;
    margin-top: 5px;
}

/* القسم البطولي */
.hero {
    position: relative;
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    filter: brightness(0.7);
}

.hero-text {
    position: absolute;
    bottom: 40px;
    right: 40px;
    color: white;
    text-shadow: 2px 2px 8px black;
}

.hero-text h2 {
    font-size: 2.5rem;
}

/* أقسام المعلومات */
.info-section {
    background: white;
    margin: 30px 0 50px 0;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-section h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: #1a2a6c;
    border-bottom: 3px solid #fdbb2d;
    display: inline-block;
    padding-bottom: 5px;
}

.card-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background: #fafafa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    flex: 1 1 250px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    background: #fff5e6;
}

.card i {
    color: #b21f1f;
    margin-bottom: 15px;
}

.two-cols .card {
    flex: 1 1 400px;
}

/* أرقام الاتصال */
.contact-numbers p {
    font-size: 1.2rem;
    margin: 15px 0;
    text-align: center;
}

/* نموذج تسجيل الدخول */
.login-form {
    max-width: 400px;
    margin: 20px auto;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #888;
}

.input-group input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: #1a2a6c;
    outline: none;
}

.btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #1a2a6c, #b21f1f);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn:hover {
    opacity: 0.9;
}

.error-message {
    color: #e74c3c;
    background: #fce4e4;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 15px;
}

/* صفحة العميل */
.dashboard-header {
    background: #2c3e50;
    color: white;
}

.dashboard-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.dashboard-header h1 {
    font-size: 2rem;
}

.logout-btn {
    background: #e74c3c;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.logout-btn:hover {
    background: #c0392b;
}

/* شبكة السيارات */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.car-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 5px solid #b21f1f;
}

.car-icon {
    text-align: center;
    color: #1a2a6c;
    margin-bottom: 15px;
}

.car-card h3 {
    color: #b21f1f;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.4rem;
}

.car-details p {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.car-notes {
    font-style: italic;
    color: #555;
}

.no-cars {
    text-align: center;
    padding: 40px;
    color: #777;
    font-size: 1.3rem;
}

/* الفوتر */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    .hero-text h2 {
        font-size: 1.5rem;
    }
    .hero-text {
        bottom: 20px;
        right: 20px;
    }
    .dashboard-header .container {
        flex-direction: column;
        text-align: center;
    }
    .logout-btn {
        margin-top: 15px;
    }
}
/* سكشن التواصل الاجتماعي */
.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    color: white;
    font-size: 1.1rem;
    min-width: 100px;
}

.social-icon i {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.social-icon:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.facebook {
    background: #1877f2;
}

.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.tiktok {
    background: #000000;
}

/* للشاشات الصغيرة */
@media (max-width: 600px) {
    .social-links {
        gap: 15px;
    }
    .social-icon {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .social-icon i {
        font-size: 2rem;
    }
}
.whatsapp-note {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}
/* تنسيق قسم أيقونات الواتساب */
.whatsapp-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.whatsapp-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #25D366;
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 10px;
    font-size: 0.9rem;
    text-align: center;
}

.whatsapp-icon i {
    font-size: 2rem;
    margin-bottom: 5px;
}

.whatsapp-icon span {
    line-height: 1.2;
}

.whatsapp-icon small {
    font-size: 0.65rem;
    opacity: 0.9;
}

.whatsapp-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-note {
    text-align: center;
    color: #666;
    margin-bottom: 10px;
}

/* للشاشات الصغيرة */
@media (max-width: 600px) {
    .whatsapp-icon {
        width: 80px;
        height: 80px;
        font-size: 0.8rem;
    }
    .whatsapp-icon i {
        font-size: 1.6rem;
    }
}
<style>
    /* حاوية الفورم بالكامل */
    .update-grid-container {
        background: #fdfdfd;
        padding: 20px;
        border-radius: 15px;
        border: 1px solid #eef2f7;
        margin-top: 15px;
    }

    /* شبكة الحقول التقنية */
    .specs-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 أعمدة */
        gap: 20px;
        margin-bottom: 20px;
    }

    /* تنسيق كل مجموعة (عنوان + حقل) */
    .input-group {
        display: flex;
        flex-direction: column;
    }

    .input-group label {
        font-size: 0.85rem;
        color: #1a2a6c;
        margin-bottom: 8px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .input-group input {
        border: 1.5px solid #dcdfe6;
        padding: 10px;
        border-radius: 8px;
        transition: 0.3s;
        font-size: 0.9rem;
    }

    .input-group input:focus {
        border-color: #1a2a6c;
        box-shadow: 0 0 5px rgba(26, 42, 108, 0.1);
        outline: none;
    }

    /* سكشن الملاحظات */
    .notes-section {
        margin-bottom: 20px;
    }

    .notes-section label {
        display: block;
        font-weight: 600;
        color: #1a2a6c;
        margin-bottom: 8px;
    }

    .notes-section textarea {
        width: 100%;
        border: 1.5px solid #dcdfe6;
        border-radius: 8px;
        padding: 12px;
        resize: vertical;
    }

    /* زر الحفظ المودرن */
    .modern-save-btn {
        width: 100%;
        background: linear-gradient(135deg, #27ae60, #2ecc71);
        color: white;
        border: none;
        padding: 14px;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: bold;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: 0.3s;
    }

    .modern-save-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
    }

    /* استجابة للهواتف */
    @media (max-width: 768px) {
        .specs-grid {
            grid-template-columns: 1fr 1fr; /* عمودين في الموبايل */
        }
    }