/* ===== 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;
    }

    .car-details-image {
        width: 100%;
        height: auto !important;
        object-fit: cover;
    }

    .quick-info-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr)!important;
        gap: 15px;
        margin: 20px 0;
    }
    
    .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;
    }

    .h4, h4 {
        font-size: calc(1.025rem + .3vw);
    }

    .calendar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        flex-direction: column;
    }

    .calendar-title {
        FONT-VARIANT: JIS83;
        font-size: 1.3rem;
        color: #333;
        margin-bottom: 15px !important;
    }

    .car-details-page {
        padding: 10px !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  ===== */
/* start about css*/

        /* About Page Specific Styles */
        :root {
            --primary-color: #3498db;
            --primary-dark: #2980b9;
            --secondary-color: #27ae60;
            --secondary-dark: #219653;
            --dark-color: #2c3e50;
            --light-color: #f8f9fa;
            --text-color: #555;
            --text-light: #333;
            --white: #ffffff;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 12px 25px rgba(0, 0, 0, 0.15);
            --radius: 12px;
            --radius-sm: 8px;
            --transition: all 0.3s ease;
        }
        
        /* Hero Section - مطابق للصفحة الرئيسية */
        .about-hero {
            position: relative;
            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: var(--white);
            padding: 90px 0 130px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        
        .about-hero-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            line-height: 0;
        }
        
        .about-hero-wave svg {
            display: block;
            width: 100%;
            height: 100px;
        }
        
        .about-hero-wave path {
            fill: #f0f7fc;
        }
        
        .about-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .about-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: fadeInUp 0.8s ease;
        }
        
        .about-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease;
            line-height: 1.6;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        
        /* Breadcrumb */
        .breadcrumb-about {
            position: absolute;
            top: 20px;
            left: 0;
            right: 0;
            z-index: 10;
            background: transparent;
            padding: 15px 0;
            margin-bottom: 0;
        }
        
        .breadcrumb-about .container {
            padding: 0 20px;
        }
        
        .breadcrumb-about a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
        }
        
        .breadcrumb-about a:hover {
            color: var(--white);
        }
        
        .breadcrumb-about .active {
            color: var(--white);
        }
        
        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: var(--white);
            padding: 50px 0;
            margin-top: -40px;
            position: relative;
            z-index: 2;
            border-radius: 20px;
            margin-left: 20px;
            margin-right: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }
        
        .stat-card {
            padding: 20px;
        }
        
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }
        
        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Story Section */
        .story-section {
            padding: 80px 0;
            background: var(--white);
        }
        
        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .story-image {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-hover);
        }
        
        .story-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s ease;
        }
        
        .story-image:hover img {
            transform: scale(1.05);
        }
        
        .story-content h2 {
            font-size: 2.2rem;
            color: var(--dark-color);
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .story-content h2 span {
            color: var(--primary-color);
        }
        
        .story-content p {
            color: var(--text-color);
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 1.05rem;
        }
        
        .mission-vision {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }
        
        .mission-card, .vision-card {
            padding: 20px 15px;
            background: var(--light-color);
            border-radius: var(--radius);
            transition: var(--transition);
        }
        
        .mission-card:hover, .vision-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        
        .mission-card i, .vision-card i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .mission-card h3, .vision-card h3 {
            font-size: 1.3rem;
            color: var(--dark-color);
            margin-bottom: 10px;
        }
        
        .mission-card p, .vision-card p {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 0;
        }
        
        /* Values Section */
        .values-section {
            padding: 80px 0;
            background: var(--light-color);
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 40px;
        }
        
        .value-card {
            background: var(--white);
            padding: 30px 15px;
            border-radius: var(--radius);
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        
        .value-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }
        
        .value-icon {
            width: 60px;
            height: 60px;
            background: #3498db;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.6rem;
            color: var(--white);
        }
        
        .value-card h3 {
            font-size: 1.4rem;
            color: var(--dark-color);
            margin-bottom: 15px;
        }
        
        .value-card p {
            color: var(--text-light);
            line-height: 1.6;
        }
        
        /* Team Section */
        .team-section {
            padding: 80px 0;
            background: var(--white);
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        
        .team-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
        }
        
        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }
        
        .team-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }
        
        .team-info {
            padding: 20px;
        }
        
        .team-info h3 {
            font-size: 1.3rem;
            color: var(--dark-color);
            margin-bottom: 5px;
        }
        
        .team-info .position {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }
        
        .team-info p {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .team-social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }
        
        .team-social a {
            width: 35px;
            height: 35px;
            background: var(--light-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            transition: var(--transition);
        }
        
        .team-social a:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: translateY(-3px);
        }
        
        /* Testimonials Section */
        .testimonials-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--dark-color) 0%, #34495e 100%);
            color: var(--white);
        }
        
        .testimonials-section .section-title {
            color: var(--white);
        }
        
        .testimonials-section .section-subtitle {
            color: rgba(255,255,255,0.8);
        }
        
        .testimonials-slider {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        
        .testimonial-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: var(--radius);
            transition: var(--transition);
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.15);
        }
        
        .testimonial-card .rating {
            margin-bottom: 15px;
        }
        
        .testimonial-card .rating i {
            color: #ffc107;
            font-size: 1rem;
        }
        
        .testimonial-card p {
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .testimonial-author {
            font-weight: 600;
            margin-top: 10px;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: var(--white);
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            flex-direction: row;
        }
        
        .btn-cta-primary, .btn-cta-secondary {
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.1rem;
        }
        
        .btn-cta-primary {
            background: var(--white);
            color: var(--primary-color);
        }
        
        .btn-cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        
        .btn-cta-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .btn-cta-secondary:hover {
            background: var(--white);
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        /* Section Title Styles (مطابق للصفحة الرئيسية) */
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--dark-color);
            margin-bottom: 15px;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .section-title-gradient {
            background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .section-subtitle {
            text-align: center;
            color: var(--text-light);
            font-size: 1.2rem;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .story-grid {
                grid-template-columns: 1fr;
            }
            
            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .testimonials-slider {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .about-hero {
                padding: 60px 0 100px;
            }
            
            .about-hero h1 {
                font-size: 2.5rem;
            }
            
            .about-hero p {
                font-size: 1rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .stats-section {
                margin-left: 15px;
                margin-right: 15px;
            }
            
            .values-grid {
                grid-template-columns: 1fr;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
            }
            
            .mission-vision {
                grid-template-columns: 1fr;
            }
            
            .cta-section h2 {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.9rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

/* end about css */
/* ===== 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  ===== */
