/* تصميم جديد وحديث لنظام تقارير السيارات */

:root {
    /* الألوان الأساسية - نفس الألوان السابقة */
    --primary-color: #0A4D68;
    --primary-dark: #083F56;
    --accent-color: #00A9A5;
    --accent-dark: #008A85;
    --secondary-color: #FFC107;
    --secondary-dark: #E0A800;
    --light-bg: #F8F9FA;
    --dark-text: #343A40;
    --muted-text: #6c757d;
    
    /* إضافات جديدة للتصميم */
    --card-shadow: 0 10px 30px rgba(10, 77, 104, 0.1);
    --hover-shadow: 0 15px 35px rgba(10, 77, 104, 0.2);
    --header-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --button-radius: 30px;
    --transition-speed: 0.4s;
}

/* إعادة تعيين CSS وإزالة الفراغات */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow-x: hidden;
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    background-color: var(--light-bg);
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.8;
}

/* تصميم الهيدر الجديد */
.header {
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 77, 104, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--header-shadow);
    border-bottom: 3px solid var(--secondary-color);
    transition: all var(--transition-speed) ease;
}

.header.scrolled {
    padding: 5px 0;
    background: rgba(10, 77, 104, 0.98);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    max-width: 1400px;
    margin: 0 auto;
    transition: all var(--transition-speed) ease;
}

/* تحسين اللوجو */
.logo {
    display: flex;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover {
    transform: scale(1.05) translateY(-2px);
}

.logo img {
    height: 60px;
    margin-left: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-speed) ease;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-speed) ease;
    position: relative;
}

.logo-text:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.logo:hover .logo-text:after {
    width: 100%;
}

/* تحسين المحتوى الرئيسي */
.main-content {
    flex: 1;
    padding: 0;
    margin: 0;
    padding-top: 90px; /* لتعويض الهيدر الثابت */
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

/* تصميم قسم البطل الجديد */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 100px 20px;
    text-align: center;
    margin: 0;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23F8F9FA" fill-opacity="1" d="M0,192L48,176C96,160,192,128,288,128C384,128,480,160,576,186.7C672,213,768,235,864,224C960,213,1056,171,1152,149.3C1248,128,1344,128,1392,128L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 1.2s ease;
}

/* تصميم بطاقات الخدمات الجديد */
.statistics-section {
    padding: 80px 0;
    background-color: #f0f4f8; /* خلفية أفتح قليلاً للقسم */
}

.statistics-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* زيادة المسافة بين البطاقات */
    justify-content: center;
}

.statistics-card {
    background-color: #ffffff;
    border-radius: var(--border-radius, 12px);
    box-shadow: var(--card-shadow, 0 10px 30px rgba(10, 77, 104, 0.1));
    padding: 30px;
    text-align: center;
    transition: transform var(--transition-speed, 0.4s) ease, box-shadow var(--transition-speed, 0.4s) ease;
    flex: 1 1 280px; /* مرونة مع حد أدنى للعرض */
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* محاذاة المحتوى للأعلى */
}

.statistics-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow, 0 15px 35px rgba(10, 77, 104, 0.2));
}

.statistics-icon {
    font-size: 3rem; /* تكبير الأيقونة قليلاً */
    color: var(--accent-color, #00A9A5);
    margin-bottom: 20px;
    background-color: rgba(0, 169, 165, 0.1); /* خلفية خفيفة للأيقونة */
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.statistics-number {
    font-size: 2.5rem; /* تكبير حجم الرقم */
    font-weight: 700;
    color: var(--primary-dark, #083F56);
    margin-bottom: 8px;
}

.statistics-title {
    font-size: 1.1rem;
    color: var(--muted-text, #6c757d);
    font-weight: 500;
}

/* --- تحسينات قسم الخدمات --- */
.services-section {
    padding: 80px 0;
    /* background: var(--light-bg); existing */
}

.service-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-speed) cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--hover-shadow);
}

.service-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(10, 77, 104, 0.3);
    transition: all var(--transition-speed) ease;
    position: relative;
    z-index: 1;
}

.service-icon-wrapper:before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    transition: all var(--transition-speed) ease;
}

.service-card:hover .service-icon-wrapper:before {
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    opacity: 0.5;
}

.service-icon-wrapper i {
    font-size: 2.5rem;
    transition: all var(--transition-speed) ease;
}

.service-card:hover .service-icon-wrapper i {
    transform: scale(1.2);
}

.service-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all var(--transition-speed) ease;
}

.service-card:hover .service-title {
    color: var(--accent-color);
}

.service-description {
    color: var(--muted-text);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* تصميم الأزرار الجديد */
.btn {
    padding: 14px 35px;
    border-radius: var(--button-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition-speed) cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover:before {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 8px 25px rgba(10, 77, 104, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(10, 77, 104, 0.4);
    color: white;
    text-decoration: none;
}

.btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.btn-success:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(40, 167, 69, 0.4);
    color: white;
    text-decoration: none;
}

/* تصميم الفوتر الجديد */
footer {
    background: linear-gradient(135deg, #222c37, #2c3e50);
    color: white;
    padding: 80px 0 30px;
    margin-top: auto;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
    transition: all var(--transition-speed) ease;
}

.footer-links li:hover {
    transform: translateX(-5px);
}

.footer-links a {
    color: #dee2e6;
    text-decoration: none;
    transition: color var(--transition-speed) ease;
    display: block;
    position: relative;
    padding-right: 20px;
}

.footer-links a:before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: var(--secondary-color);
    opacity: 0;
    transition: all var(--transition-speed) ease;
}

.footer-links a:hover:before {
    opacity: 1;
    right: 5px;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #adb5bd;
}

/* تأثيرات حركية */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* تصميم النماذج والحقول */
.form-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
    margin: 30px auto;
    max-width: 800px;
}

.form-title {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.form-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
    background-color: #f8f9fa;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 169, 165, 0.2);
    outline: none;
    background-color: white;
}

/* تصميم الجداول */
.table-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--card-shadow);
    margin: 30px auto;
    overflow-x: auto;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 15px;
    text-align: right;
    font-weight: 600;
}

.custom-table th:first-child {
    border-radius: 0 var(--border-radius) 0 0;
}

.custom-table th:last-child {
    border-radius: var(--border-radius) 0 0 0;
}

.custom-table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    color: var(--dark-text);
}

.custom-table tr:last-child td {
    border-bottom: none;
}

.custom-table tr:hover td {
    background-color: rgba(0, 169, 165, 0.05);
}

/* تصميم البطاقات */
.card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: all var(--transition-speed) ease;
    overflow: hidden;
    border: none;
}

.card:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-5px);
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 20px;
    font-weight: 600;
    border-bottom: none;
}

.card-body {
    padding: 30px;
}

/* تصميم متجاوب */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 10px 20px;
        flex-direction: column;
        gap: 10px;
    }
    
    .logo {
        order: 1;
    }
    
    .social-links {
        order: 2;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 60px 15px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 8px 15px;
    }
    
    .logo img {
        height: 45px;
        margin-left: 10px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .hero {
        padding: 50px 10px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .service-title {
        font-size: 1.4rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* فئات المساعدة */
.text-primary {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.py-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.text-center {
    text-align: center;
}

/* تأثيرات حركية */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* تصميم النماذج والحقول */
.form-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
    margin: 30px auto;
    max-width: 800px;
}

.form-title {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.form-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
    background-color: #f8f9fa;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 169, 165, 0.2);
    outline: none;
    background-color: white;
}

/* تصميم الجداول */
.table-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--card-shadow);
    margin: 30px auto;
    overflow-x: auto;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 15px;
    text-align: right;
    font-weight: 600;
}

.custom-table th:first-child {
    border-radius: 0 var(--border-radius) 0 0;
}

.custom-table th:last-child {
    border-radius: var(--border-radius) 0 0 0;
}

.custom-table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    color: var(--dark-text);
}

.custom-table tr:last-child td {
    border-bottom: none;
}

.custom-table tr:hover td {
    background-color: rgba(0, 169, 165, 0.05);
}

/* تصميم البطاقات */
.card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: all var(--transition-speed) ease;
    overflow: hidden;
    border: none;
}

.card:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-5px);
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 20px;
    font-weight: 600;
    border-bottom: none;
}

.card-body {
    padding: 30px;
}

/* تصميم متجاوب */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 10px 20px;
        flex-direction: column;
        gap: 10px;
    }
    
    .logo {
        order: 1;
    }
    
    .social-links {
        order: 2;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 60px 15px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 8px 15px;
    }
    
    .logo img {
        height: 45px;
        margin-left: 10px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .hero {
        padding: 50px 10px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .service-title {
        font-size: 1.4rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* فئات المساعدة */
.text-primary {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.py-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.text-center {
    text-align: center;
}

/* تأثيرات حركية */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* تصميم النماذج والحقول */
.form-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
    margin: 30px auto;
    max-width: 800px;
}

.form-title {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.form-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
    background-color: #f8f9fa;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 169, 165, 0.2);
    outline: none;
    background-color: white;
}

/* تصميم الجداول */
.table-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--card-shadow);
    margin: 30px auto;
    overflow-x: auto;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 15px;
    text-align: right;
    font-weight: 600;
}

.custom-table th:first-child {
    border-radius: 0 var(--border-radius) 0 0;
}

.custom-table th:last-child {
    border-radius: var(--border-radius) 0 0 0;
}

.custom-table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    color: var(--dark-text);
}

.custom-table tr:last-child td {
    border-bottom: none;
}

.custom-table tr:hover td {
    background-color: rgba(0, 169, 165, 0.05);
}

/* تصميم البطاقات */
.card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: all var(--transition-speed) ease;
    overflow: hidden;
    border: none;
}

.card:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-5px);
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 20px;
    font-weight: 600;
    border-bottom: none;
}

.card-body {
    padding: 30px;
}

/* تصميم متجاوب */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 10px 20px;
        flex-direction: column;
        gap: 10px;
    }
    
    .logo {
        order: 1;
    }
    
    .social-links {
        order: 2;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 60px 15px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 8px 15px;
    }
    
    .logo img {
        height: 45px;
        margin-left: 10px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .hero {
        padding: 50px 10px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .service-title {
        font-size: 1.4rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* فئات المساعدة */
.text-primary {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.py-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.text-center {
    text-align: center;
}

/* تأثيرات حركية */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* تصميم النماذج والحقول */
.form-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
    margin: 30px auto;
    max-width: 800px;
}

.form-title {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.form-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
    background-color: #f8f9fa;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 169, 165, 0.2);
    outline: none;
    background-color: white;
}

/* تصميم الجداول */
.table-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--card-shadow);
    margin: 30px auto;
    overflow-x: auto;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 15px;
    text-align: right;
    font-weight: 600;
}

.custom-table th:first-child {
    border-radius: 0 var(--border-radius) 0 0;
}

.custom-table th:last-child {
    border-radius: var(--border-radius) 0 0 0;
}

.custom-table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    color: var(--dark-text);
}

.custom-table tr:last-child td {
    border-bottom: none;
}

.custom-table tr:hover td {
    background-color: rgba(0, 169, 165, 0.05);
}

/* تصميم البطاقات */
.card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: all var(--transition-speed) ease;
    overflow: hidden;
    border: none;
}

.card:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-5px);
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 20px;
    font-weight: 600;
    border-bottom: none;
}

.card-body {
    padding: 30px;
}

/* تصميم متجاوب */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 10px 20px;
        flex-direction: column;
        gap: 10px;
    }
    
    .logo {
        order: 1;
    }
    
    .social-links {
        order: 2;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 60px 15px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 8px 15px;
    }
    
    .logo img {
        height: 45px;
        margin-left: 10px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .hero {
        padding: 50px 10px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .service-title {
        font-size: 1.4rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* فئات المساعدة */
.text-primary {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.py-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.text-center {
    text-align: center;
}

/* تأثيرات حركية */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* تصميم النماذج والحقول */
.form-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
    margin: 30px auto;
    max-width: 800px;
}

.form-title {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.form-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
    background-color: #f8f9fa;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 169, 165, 0.2);
    outline: none;
    background-color: white;
}

/* تصميم الجداول */
.table-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--card-shadow);
    margin: 30px auto;
    overflow-x: auto;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 15px;
    text-align: right;
    font-weight: 600;
}

.custom-table th:first-child {
    border-radius: 0 var(--border-radius) 0 0;
}

.custom-table th:last-child {
    border-radius: var(--border-radius) 0 0 0;
}

.custom-table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    color: var(--dark-text);
}

.custom-table tr:last-child td {
    border-bottom: none;
}

.custom-table tr:hover td {
    background-color: rgba(0, 169, 165, 0.05);
}

/* تصميم البطاقات */
.card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: all var(--transition-speed) ease;
    overflow: hidden;
    border: none;
}

.card:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-5px);
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 20px;
    font-weight: 600;
    border-bottom: none;
}

.card-body {
    padding: 30px;
}

/* تصميم متجاوب */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 10px 20px;
        flex-direction: column;
        gap: 10px;
    }
    
    .logo {
        order: 1;
    }
    
    .social-links {
        order: 2;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 60px 15px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 8px 15px;
    }
    
    .logo img {
        height: 45px;
        margin-left: 10px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .hero {
        padding: 50px 10px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .service-title {
        font-size: 1.4rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* فئات المساعدة */
.text-primary {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.py-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.text-center {
    text-align: center;
}

/* تأثيرات حركية */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* تصميم النماذج والحقول */
.form-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
    margin: 30px auto;
    max-width: 800px;
}

.form-title {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.form-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
    background-color: #f8f9fa;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 169, 165, 0.2);
    outline: none;
    background-color: white;
}

/* تصميم الجداول */
.table-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--card-shadow);
    margin: 30px auto;
    overflow-x: auto;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 15px;
    text-align: right;
    font-weight: 600;
}

.custom-table th:first-child {
    border-radius: 0 var(--border-radius) 0 0;
}

.custom-table th:last-child {
    border-radius: var(--border-radius) 0 0 0;
}

.custom-table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    color: var(--dark-text);
}

.custom-table tr:last-child td {
    border-bottom: none;
}

.custom-table tr:hover td {
    background-color: rgba(0, 169, 165, 0.05);
}

/* تصميم البطاقات */
.card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: all var(--transition-speed) ease;
    overflow: hidden;
    border: none;
}

.card:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-5px);
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 20px;
    font-weight: 600;
    border-bottom: none;
}

.card-body {
    padding: 30px;
}

/* تصميم متجاوب */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 10px 20px;
        flex-direction: column;
        gap: 10px;
    }
    
    .logo {
        order: 1;
    }
    
    .social-links {
        order: 2;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 60px 15px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 8px 15px;
    }
    
    .logo img {
        height: 45px;
        margin-left: 10px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .hero {
        padding: 50px 10px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .service-title {
        font-size: 1.4rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* فئات المساعدة */
.text-primary {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.py-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.text-center {
    text-align: center;
}

/* تأثيرات حركية */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* تصميم النماذج والحقول */
.form-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
    margin: 30px auto;
    max-width: 800px;
}

.form-title {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.form-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
    background-color: #f8f9fa;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 169, 165, 0.2);
    outline: none;
    background-color: white;
}

/* تصميم الجداول */
.table-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--card-shadow);
    margin: 30px auto;
    overflow-x: auto;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 15px;
    text-align: right;
    font-weight: 600;
}

.custom-table th:first-child {
    border-radius: 0 var(--border-radius) 0 0;
}

.custom-table th:last-child {
    border-radius: var(--border-radius) 0 0 0;
}

.custom-table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    color: var(--dark-text);
}

.custom-table tr:last-child td {
    border-bottom: none;
}

.custom-table tr:hover td {
    background-color: rgba(0, 169, 165, 0.05);
}

/* تصميم البطاقات */
.card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: all var(--transition-speed) ease;
    overflow: hidden;
    border: none;
}

.card:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-5px);
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 20px;
    font-weight: 600;
    border-bottom: none;
}

.card-body {
    padding: 30px;
}

/* تصميم متجاوب */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 10px 20px;
        flex-direction: column;
        gap: 10px;
    }
    
    .logo {
        order: 1;
    }
    
    .social-links {
        order: 2;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 60px 15px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 8px
