/* ===== Navbar Css start ===== */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 0;
    min-height: 70px;
    border-bottom: 1px solid #f1f1f1;
    position: relative;
    z-index: 1030; /* زيادة z-index */
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #2c3e50 !important;
    padding: 20px 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand:hover {
    color: #3498db !important;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 1.8rem;
    color: #3498db;
}

.navbar-toggler {
    border: none;
    padding: 8px 10px;
    margin-right: 10px;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 2px;
    background-color: #2c3e50;
    position: relative;
    display: block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #2c3e50;
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -6px;
}

.navbar-toggler-icon::after {
    bottom: -6px;
}

.navbar-collapse {
    background: white;
}

.navbar-nav {
    padding: 10px 0;
}

.nav-item {
    margin: 0;
    border-bottom: 1px solid #f8f9fa;
}

.nav-item:last-child {
    border-bottom: none;
}

.nav-link {
    color: #2c3e50 !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 15px 20px !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3498db !important;
    background: #f8f9fa;
    padding-left: 25px !important;
}

.nav-link.active {
    color: #2c3e50 !important;
    font-weight: 600;
    background: #f8f9fa;
}

@media (min-width: 992px) {
    .navbar {
        min-height: 75px;
    }
    
    .navbar-collapse {
        background: transparent;
    }
    
    .navbar-nav {
        height: 100%;
        display: flex;
        align-items: center;
        padding: 0;
    }
    
    .nav-item {
        border-bottom: none;
        height: 100%;
        display: flex;
        align-items: center;
        margin: 0;
    }
    
    .nav-link {
        padding: 0 20px !important;
        height: 100%;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .nav-link:hover {
        color: #3498db !important;
        background: transparent;
        padding-left: 20px !important;
        transform: translateY(-2px);
    }
    
    .nav-link.active {
        color: #2c3e50 !important;
        background: transparent;
        font-weight: 600;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: #3498db;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }
    
    .nav-link:hover::after {
        width: 70%;
    }
    
    .nav-link.active::after {
        width: 70%;
        background: #2c3e50;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .navbar-brand {
        font-size: 1.3rem;
        padding: 18px 0;
    }
    
    .nav-link {
        padding: 12px 15px !important;
        font-size: 0.9rem;
    }
    
    .nav-link:hover {
        padding-left: 18px !important;
    }
}

@media (max-width: 767px) {
    .navbar {
        min-height: 60px;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
        padding: 15px 0;
    }
    
    .navbar-toggler {
        padding: 6px 8px;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1050; /* زيادة z-index */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #f1f1f1;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .nav-link {
        padding: 12px 20px !important;
        font-size: 0.9rem;
        border-left: 3px solid transparent;
    }
    
    .nav-link:hover {
        padding-left: 25px !important;
        border-left-color: #3498db;
        background: #f8f9fa;
    }
    
    .nav-link.active {
        border-left-color: #3498db;
        background: #f8f9fa;
        color: #2c3e50 !important;
    }
}

.navbar-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98) !important;
}

.nav-link:focus {
    outline: 2px solid rgba(52, 152, 219, 0.3);
    outline-offset: 2px;
    border-radius: 3px;
}

@media (min-width: 1200px) {
    .navbar-container {
        max-width: 1140px;
    }
    
    .nav-link {
        padding: 0 25px !important;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-collapse.show .nav-item {
    animation: slideIn 0.3s ease forwards;
}

.navbar-container {
    max-width: 100%;
    overflow-x: hidden;
}

.navbar-collapse.show .nav-item:nth-child(1) { animation-delay: 0.1s; }
.navbar-collapse.show .nav-item:nth-child(2) { animation-delay: 0.2s; }
.navbar-collapse.show .nav-item:nth-child(3) { animation-delay: 0.3s; }
.navbar-collapse.show .nav-item:nth-child(4) { animation-delay: 0.4s; }
.navbar-collapse.show .nav-item:nth-child(5) { animation-delay: 0.5s; }

/* =====  Navbar Css End  ===== */

/*=======  contact css start  =======*/
/* Contact Page Styles */

.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), 
                url(../images/car-header.webp);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s;
    min-width: 180px;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-item i {
    font-size: 1.6rem;
    color: #3498db;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.stat-item div {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #bdc3c7;
    margin-top: 5px;
    font-weight: 400;
}

        /* Breadcrumb */
        .breadcrumb-contact {
            position: absolute;
            top: 20px;
            left: 0;
            right: 0;
            z-index: 10;
            background: transparent;
            padding: 15px 0;
            margin-bottom: 0;
        }
        
        .breadcrumb-contact .container {
            padding: 0 20px;
        }
        
        .breadcrumb-contact a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
        }
        
        .breadcrumb-contact a:hover {
            color: #fff;
        }
        
        .breadcrumb-contact .active {
            color: #fff;
        }

/* Contact Main Section */
.contact-main {
    padding: 0px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

/* Contact Form Section */
.contact-form-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.section-header {
    margin-bottom: 30px;
    text-align: center;
}

.section-header h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-header h2 i {
    color: #3498db;
}

.section-header p {
    color: #333;
    font-size: 1rem;
}

.contact-form {
    margin-top: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group label i {
    color: #3498db;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #f8f9fa;
    color: #2c3e50;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.submit-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

.submit-btn i {
    font-size: 1.2rem;
}

.form-note {
    color: #333;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.form-note i {
    color: #27ae60;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.card-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 20px 30px;
}

.card-header h3 {
    font-size: 1.4rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-header h3 i {
    color: #3498db;
}

.card-header, .map-header {
    border-radius: 10px 10px 0 0 !important;
}

.card-body {
    padding: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item i {
    font-size: 1.2rem;
    color: #3498db;
    background: #f8f9fa;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.info-item div {
    flex: 1;
}

.info-item strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.info-item p {
    color: #333;
    margin: 0;
    line-height: 1.4;
    font-size: 1.1rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

/* Quick Actions - النسخة المحسنة */
.quick-actions {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #eaeaea;
}

.quick-actions h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-actions h3 i {
    color: #f39c12;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 10px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 90px;
}

.action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.action-btn.phone {
    background: linear-gradient(135deg, #27ae60, #219653);
}

.action-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.action-btn.email {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.action-btn i {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.action-subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 5px;
    font-weight: normal;
    word-break: break-all;
}

/* تصميم بدائل الاتصال */
.alternative-contacts {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #dee2e6;
}

.alternative-contacts h4 {
    color: #495057;
    font-size: 1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alt-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.alt-btn {
    padding: 10px 15px;
    border-radius: 8px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.alt-btn:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.alt-btn.sms {
    border-color: #27ae60;
    color: #27ae60;
}

.alt-btn.contact {
    border-color: #3498db;
    color: #3498db;
}

.alt-btn.copy {
    border-color: #9b59b6;
    color: #9b59b6;
}

/* Map Container - محسن */
.map-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-top: 30px;
    grid-column: 1 / -1;
}

.map-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 12px 20px;
}

.map-header h3 {
    font-size: 1.4rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-header h3 i {
    color: #e74c3c;
}

.map-wrapper {
    padding: 20px 10px;
}

.map-wrapper iframe {
    width: 100%;
    border-radius: 8px;
    border: none;
}

/* تحسين خريطة Google */
.map-actions {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    justify-content: center;
}

.map-link {
    padding: 12px 20px;
    background: #3498db;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.map-link:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: white;
    margin-top: 30px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: white;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-question i {
    font-size: 1.5rem;
    color: #3498db;
    background: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-question h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
}

.faq-answer p {
    color: #333;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
    padding-left: 10px;
}

    .hero-wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        line-height: 0;
    }

    .hero-wave svg {
        display: block;
        width: 100%;
        height: 100px;
    }


    .hero-wave path {
        fill: #f0f7fc;
    }

/* Responsive Design */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-item {
        min-width: 150px;
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .map-container {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 10px;
    }
    
    .stat-item {
        min-width: 100%;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-answer p {
        padding-left: 0;
        padding-top: 10px;
    }
    
    .action-buttons {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .action-btn {
        padding: 12px 10px;
        font-size: 0.85rem;
        min-height: 80px;
    }
    
    .map-actions {
        flex-direction: column;
    }
    
    .map-link {
        width: 100%;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 1rem;
        font-weight: 400;
    }

    .stat-item i {
        font-size: 1rem;
        width: 30px;
        height: 30px;
    }

    .stat-item {
        min-width: AUTO;
        justify-content: center;
        gap: 10px;
        padding: 10px;
    }

    .stat-label {
        display: block;
        font-size: 0.7rem;
        margin-top: 3px;
    }
}

@media (max-width: 576px) {
    .contact-form-section,
    .contact-card,
    .quick-actions,
    .map-container {
        padding: 20px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .card-body {
        padding: 20px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-question {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .faq-question h4 {
        font-size: 1.1rem;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .action-btn {
        padding: 15px;
        font-size: 0.9rem;
        min-height: 70px;
    }
    
    .alt-buttons {
        flex-wrap: wrap;
    }
    
    .alt-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .stat-number {
        font-size: 1rem;
        font-weight: 400;
    }

    .stat-item i {
        font-size: 1rem;
        width: 30px;
        height: 30px;
    }

    .stat-item {
        width: AUTO;
        justify-content: center;
        gap: 10px;
        padding: 10px;
    }

    .stat-label {
        display: block;
        font-size: 0.7rem;
        margin-top: 3px;
    }
}

.contact-info-section .info-item:first-child p {
    font-size: 1.1rem;
    line-height: 1.4;
}

/* تحسين عرض الخريطة على الهواتف */
@media (max-width: 480px) {
    .map-wrapper iframe {
        height: 250px;
    }
    
    .action-btn {
        padding: 12px;
        font-size: 0.85rem;
    }
    
    .submit-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .action-subtitle {
        font-size: 0.75rem;
    }
}

/* تحسين حجم وعرض الخريطة على الحواسيب */
@media (min-width: 992px) {
    .map-wrapper iframe {
        height: 400px;
    }
}

/* تعديل للتأكد من أن الخريطة تأخذ العرض الكامل */
.container .map-container {
    width: 100%;
}

/* تحسينات للجوال - إضافية */
@media (max-width: 480px) {
    .quick-actions {
        padding: 20px;
    }
    
    .action-subtitle {
        font-size: 0.7rem;
    }
}

/* تحسين حجم وعرض الخريطة على الحواسيب المتوسطة */
@media (min-width: 1200px) {
    .map-wrapper iframe {
        height: 450px;
    }
}

/* تحسين ظهور أزرار Quick Actions على الشاشات الصغيرة جداً */
@media (max-width: 360px) {
    .action-buttons {
        gap: 8px;
    }
    
    .action-btn {
        padding: 10px 8px;
        font-size: 0.8rem;
        min-height: 65px;
    }
    
    .action-btn i {
        font-size: 1.2rem;
    }
}
/*========  contact css end  ========*/

/* breadcrumbs css start */
.breadcrumb-nav {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb-nav a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.breadcrumb-nav span {
    color: #7f8c8d;
    font-weight: 500;
}

.breadcrumb-nav i {
    color: #95a5a6;
    font-size: 0.8rem;
}

.breadcrumb-nav a.active {
    color: #2c3e50;
    font-weight: 600;
}

/* تحسينات إضافية لتكامل أفضل */
.breadcrumb-nav {
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
}

.breadcrumb-nav span:last-child {
    color: #2c3e50;
    font-weight: 600;
}

/* تحسينات للجوّال */
@media (max-width: 768px) {
    .breadcrumb-nav {
        padding: 12px 15px;
        margin-bottom: 20px;
        gap: 8px;
    }
    
    .breadcrumb-nav a,
    .breadcrumb-nav span {
        font-size: 0.9rem;
    }
    
    .breadcrumb-nav i {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .breadcrumb-nav {
        padding: 10px 12px;
        margin-bottom: 15px;
    }
    
    .breadcrumb-nav a,
    .breadcrumb-nav span {
        font-size: 0.85rem;
    }
}
/* breadcrumbs css end*/

/*================================*/

/* ===== footer css start ===== */
.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.site-footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d4ff, #007bff);
}

.site-footer-inner {
    position: relative;
    z-index: 1;
}

.top-footer {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wrap-footer-sidebar {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-widget-wrap {
    padding: 0 20px;
}

.footer-widget-item {
    margin-bottom: 40px;
}

.widget {
    padding: 0 15px;
}

.widget_block h3.wp-block-heading,
.widget_nav_menu h2.widget-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.widget_block h3.wp-block-heading:after,
.widget_nav_menu h2.widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #007bff;
    border-radius: 2px;
}

.widget_block p {
    color: #b0b7c3;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.widget_block p br {
    margin-bottom: 8px;
    display: block;
}

/* تنسيق معلومات الاتصال */
.widget_block p strong {
    color: #fff;
    font-weight: 600;
}

.widget_block p a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget_block p a:hover {
    color: #fff;
    text-decoration: underline;
}

/* تنسيق قائمة الروابط */
.widget_nav_menu ul.menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_nav_menu ul.menu li {
    margin-bottom: 12px;
    padding-left: 0;
    position: relative;
    transition: transform 0.3s ease;
}

.widget_nav_menu ul.menu li:hover {
    transform: translateX(5px);
}

.widget_nav_menu ul.menu li:before {
    content: "→";
    color: #007bff;
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.widget_nav_menu ul.menu li:hover:before {
    left: -15px;
    opacity: 1;
}

.widget_nav_menu ul.menu li a {
    color: #b0b7c3;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
}

.widget_nav_menu ul.menu li a:hover {
    color: #fff;
    padding-left: 5px;
}

.bottom-footer {
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.2);
}

.site-info {
    color: #b0b7c3;
    font-size: 0.9rem;
    text-align: center;
}

.site-info:before {
    content: "© ";
    color: #007bff;
    font-weight: bold;
}

/* تأثيرات إضافية */
.site-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* أيقونات وسائل التواصل الاجتماعي */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: #007bff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    border-color: #007bff;
}

/* شعار الفوتر */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 40px;
    width: auto;
}

/* تنسيق للأجهزة المحمولة */
@media (max-width: 768px) {
    .top-footer {
        padding: 40px 0 30px;
    }
    
    .footer-widget-item {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .widget_block h3.wp-block-heading:after,
    .widget_nav_menu h2.widget-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .widget_nav_menu ul.menu li {
        text-align: center;
    }
    
    .widget_nav_menu ul.menu li:before {
        display: none;
    }
    
    .widget_nav_menu ul.menu li a:hover {
        padding-left: 0;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .bottom-footer {
        padding: 25px 0;
    }
}

/* تنسيق للأجهزة اللوحية */
@media (min-width: 769px) and (max-width: 991px) {
    .footer-widget-item {
        margin-bottom: 40px;
    }
}

/* تأثيرات عند التمرير */
.site-footer {
    transition: all 0.3s ease;
}

/* تخصيص البوتستراب */
.container {
    max-width: 1200px !important;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

/* تحسينات إضافية */
.widget_block p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.widget_nav_menu ul.menu li a {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
}

/* تأثيرات للاتصال */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-icon {
    margin-right: 12px;
    color: #007bff;
    font-size: 1.2rem;
    min-width: 25px;
}

.contact-text {
    flex: 1;
    color: #b0b7c3;
}

/* ترويسة الفوتر */
.footer-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.footer-header h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #007bff, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.footer-header p {
    color: #b0b7c3;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* نصوص النسخ */
.copyright-text {
    font-size: 0.85rem;
    color: #8a94a6;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

/* إضافة إلى HTML (اختياري) */
.newsletter-form {
    margin-top: 20px;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 10px;
}

.newsletter-input::placeholder {
    color: #8a94a6;
}

.newsletter-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: #0056b3;
}
/* =====  footer css end  ===== */