/* ====================================
   Title Header - Professional Design
   ==================================== */
.title-header {
    position: relative;
    min-height: 250px;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

/* Overlay أسود احترافي */
.title-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

/* تأثير حركي للخلفية */
.title-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    z-index: 2;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* محتوى العنوان */
.title-page-header {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 60px 20px;
    animation: fadeInUp 1s ease-out;
}

.title-page-header h2 {
    font-size: 48px;
    font-family: 'font_bold';
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    position: relative;
    display: block;
    padding: 0 30px;
}


/* زخرفة جانبية للعنوان */
.title-page-header h2::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-Primary1));
}

/* تصميم breadcrumb احترافي */
.breadcrumb-header {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
    transition: all 0.3s ease;
}

.breadcrumb-header:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.breadcrumb-header a {
    color: #ffffff;
    font-size: 16px;
    font-family: 'font_medium';
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumb-header a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-Primary1);
    transition: width 0.3s ease;
}

.breadcrumb-header a:hover {
    color: var(--color-Primary1);
}

.breadcrumb-header a:hover::after {
    width: 100%;
}

.breadcrumb-header i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: all 0.3s ease;
}

.breadcrumb-header:hover i {
    color: var(--color-Primary1);
    transform: translateX(-2px);
}

.breadcrumb-header span {
    color: var(--color-Primary1);
    font-size: 16px;
    font-family: 'font_bold';
    text-shadow: 0 2px 8px rgba(201, 32, 39, 0.5);
}

/* تأثيرات جزيئات متحركة في الخلفية */
.title-header .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.title-header .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .title-header {
        min-height: 350px;
    }
    
    .title-page-header h2 {
        font-size: 38px;
    }
    
    .title-page-header {
        padding: 50px 15px;
    }
}

@media (max-width: 767px) {
    .title-header {
        min-height: 300px;
        background-attachment: scroll;
    }
    
    .title-page-header h2 {
        font-size: 32px;
        padding: 0 15px;
    }
    
    .breadcrumb-header {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .breadcrumb-header a,
    .breadcrumb-header span {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .title-header {
        min-height: 250px;
    }
    
    .title-page-header h2 {
        font-size: 26px;
        letter-spacing: 1px;
    }
    
    .title-page-header h2::after {
        width: 60px;
        height: 3px;
    }
}

.hero {
    min-height: 620px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--color-white);
    text-align: center;
    z-index: 1;
    padding: 50px 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.content-hero h1 {
    font-size: 40px;
    font-family: "font_bold";
    margin-bottom: 20px;
}

.content-hero p {
    font-size: 18px;
    font-family: "font_medium";
    margin-bottom: 20px;
    width: 60%;
    color: var(--color-white);
    margin: 0 auto;
}

.content-hero .ctm-btn {
    margin-top: 20px;
}

.content-hero h1 span {
    color: var(--color-Primary1);
}

.title-start  ,.title-w ,.title-center {
    margin-bottom: 25px;
}

.title-start h2 ,.title-w h2 ,.title-center h2 {
    font-size: 26px;
    font-family: "font_bold";
    display: inline-block;
    color: var(--color-black);
    position: relative;
    padding: 10px 5px;
}

.title-start h2::after ,.title-w h2::after ,.title-center h2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 2px;
    background-color: var(--color-Primary1);
}

.title-start h2::before ,.title-w h2::before ,.title-center h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 2px;
    background-color: var(--color-Primary1);
}

.title-center p ,.title-w p {
    font-size: 18px;
    color: var(--color-gray);
    font-family: 'font_medium';
    margin-top: 15px;

    text-align: center;
}
.title-center  ,.title-w  {
    text-align: center;
}
.title-w h2{
    color: #fff;
    
}
.title-w p{
    color: #fff;
}
.title-w h2::after ,.title-w h2::before {
    background-color: #fff;
}
.text-aboutus-index p {
    font-size: 18px;
    color: var(--color-gray);
    font-family: 'font_medium';
    margin-top: 45px;
    margin-bottom: 50px;
}

.img-aboutus-index {
    display: flex;
    gap: 15px;
    width: 80%;
    margin-right: auto;
}

.img-start-aboutus {
    text-align: end;
    width: 50%;
}

.img-start-aboutus>img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.img-end-aboutus {
    width: 50%;
}

.img-end-aboutus>img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.num-about {
    padding: 20px 20px 20px 10%;
    background: var(--color-Primary1);
    color: var(--color-white);
    left: -10%;
    border-radius: 0px;
    position: absolute;
    width: 47%;
    bottom: 1px;
    height: 213px;
}

.num-about .counter {
    font-size: 40px;
    font-family: "font_bold";
    margin-bottom: 10px;
}

.num-about h4 {
    font-size: 18px;
    font-family: "font_medium";
    margin-bottom: 10px;
}




.text-counter-number h4 {
    font-size: 22px;
    font-family: "font_medium";
    margin-bottom: 10px;
    color: var(--color-white);
}

.text-counter-number h2 {
    font-size: 29px;
    font-family: 'font_main';
    margin-bottom: 10px;
    color: var(--color-white);
}

.counter-number {
    display: flex;
    align-items: end;
    gap: 10px;
}

.counter-number .counter {
    font-size: 80px;
    margin: 50px 0 0;
    font-family: "font_bold";
    color: var(--color-white);
}

.counter {
    text-align: justify;
    -webkit-text-fill-color: var(--color-Primary1);
    -webkit-text-stroke: 1px var(--color-white);
    position: relative;
    cursor: pointer;
    font-size: 108px;
    line-height: 63px;
    font-family: "font_semibold";
    display: flex;
    justify-content: center;
    margin: 0px 0px 6px;
    user-select: none;
}

/* تصميم بطاقة السيارة الاحترافي */
.card-service {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.img-service-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.img-service {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.img-service img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card-service:hover .img-service img {
    transform: scale(1.1);
}

.badge-new {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-Primary1) 0%, #d4af37 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-family: 'font_bold';
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.content-service {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content-service h3 {
    font-size: 22px;
    font-family: 'font_bold';
    color: var(--color-black);
    margin-bottom: 20px;
    text-align: right;
}

.features-service ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    padding: 0;
    list-style: none;
}

.features-service li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.features-service li:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    transform: translateY(-2px);
}

.feature-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-Primary1) 0%, #d4af37 100%);
    border-radius: 50%;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    text-align: right;
    flex: 1;
}

.feature-text h4 {
    font-size: 12px;
    font-family: 'font_medium';
    color: #6c757d;
    margin: 0;
}

.feature-text span {
    font-size: 14px;
    font-family: 'font_bold';
    color: var(--color-black);
    margin: 0;
}

/* تصميم خيارات الألوان */
.color-selection {
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.color-selection h4 {
    font-size: 16px;
    font-family: 'font_bold';
    color: var(--color-black);
    margin-bottom: 15px;
    text-align: right;
}

.color-options {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;

}


.color-option:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.color-option.active {
    border-color: var(--color-Primary1);
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.color-checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-size: 18px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.color-option.active .color-checkmark {
    transform: translate(-50%, -50%) scale(1);
}

/* وصف السيارة */
.car-description {
    font-size: 15px;
    line-height: 1.8;
    color: #6c757d;
    font-family: 'font_medium';
    margin-bottom: 25px;
    text-align: right;
    flex: 1;
}

/* تذييل البطاقة */


.price-section {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.price-label {
    font-size: 13px;
    color: #6c757d;
    font-family: 'font_medium';
    margin-bottom: 5px;
}

.price {
    font-size: 22px;
    font-family: 'font_bold';
    color: var(--color-Primary1);
    background: linear-gradient(135deg, var(--color-Primary1) 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    font-size: 15px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-quote i {
    transition: transform 0.3s ease;
}

.btn-quote:hover i {
    transform: translateX(-3px);
}

/* تأثير تغيير الصورة */
.car-image {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* استجابة للموبايل */
@media (max-width: 768px) {
  


    .price-section {
        text-align: center;
        width: 100%;
    }

    .btn-quote {
        width: 100%;
        justify-content: center;
    }

    .color-options {
        justify-content: center;
    }
}


.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}





.sub-test-drive {
    position: relative;
    padding-bottom: 50px;
}

.img-test-drive {
    position: relative;
    z-index: 1;
}

.img-test-drive::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 25px;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
}

.img-test-drive {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 25px;

}

.img-test-drive img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.text-test-drive {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    min-height: 100px;
    object-fit: cover;
    border-radius: 25px;
    z-index: 1;
    left: 0;
    transition: all 0.3s linear;
    right: 0;
    margin: 0 auto;
    padding: 25px;
    background-color: #F2F2F2;
    box-shadow: 0px 5px 15.4px 0px rgba(0, 0, 0, 0.15);
}

.text-test-drive {
    gap: 10px;
    display: flex;
    align-items: center;
}

.title-test-drive {
    width: calc(100% - 65px);
}

.title-test-drive h3 {
    color: var(--color-Primary1);
    font-size: 25px;
    font-family: font_bold;
    margin-bottom: 10px;
}

.title-test-drive p {
    font-size: 15px;
    font-family: "font_medium";
    color: var(--color-gray);
    line-height: 1.5;
    margin: 0;
}


.ctm-rt {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-Primary1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all 0.3s linear;
    font-size: 25px;
    font-family: "font_semibold";
    margin-left: auto;
}

.sub-test-drive:hover .img-test-drive img {
    transform: scale(1.2) rotate(5deg);
}

.sub-test-drive:hover .text-test-drive {
    transform: translateY(-10px);
}

.sub-test-drive:hover .text-test-drive .title-test-drive h3 {
    color: var(--color-Primary1);
}

.ctm-rt:hover {
    background-color: var(--color-Primary3);
}

/* ====================================
   Driving Experience Details Page
   ==================================== */

.driving-experience-details-page {
    padding-bottom: 60px;
}

.experience-details-content {
    margin-top: 40px;
}

/* صورة التجربة */
.experience-detail-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.experience-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.experience-detail-img:hover img {
    transform: scale(1.05);
}

.experience-detail-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-Primary1);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-family: "font_bold";
    display: flex;
    align-items: center;
    gap: 8px;
}

/* تفاصيل التجربة */
.experience-detail-info {
    padding: 20px 0;
}

.experience-detail-tag {
    display: inline-block;
    background: rgba(149, 11, 18, 0.1);
    color: var(--color-Primary1);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-family: "font_bold";
    margin-bottom: 15px;
}

.experience-detail-title {
    font-size: 32px;
    font-family: "font_bold";
    color: var(--color-black);
    margin-bottom: 20px;
    line-height: 1.4;
}

.experience-detail-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 15px;
    font-family: "font_medium";
}

.experience-detail-features {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.experience-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--color-black);
    font-family: "font_medium";
}

.experience-feature-item i {
    color: var(--color-Primary1);
    font-size: 18px;
}

.experience-request-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    font-size: 17px;
    font-family: "font_bold";
    border: none;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.experience-request-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(149, 11, 18, 0.3);
}

/* معلومات إضافية */
.experience-extra-info {
    margin-top: 60px;
}

.experience-info-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.experience-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--color-Primary1);
}

.experience-info-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(149, 11, 18, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.experience-info-icon i {
    font-size: 28px;
    color: var(--color-Primary1);
}

.experience-info-card:hover .experience-info-icon {
    background: var(--color-Primary1);
}

.experience-info-card:hover .experience-info-icon i {
    color: #fff;
}

.experience-info-card h4 {
    font-size: 20px;
    font-family: "font_bold";
    color: var(--color-black);
    margin-bottom: 12px;
}

.experience-info-card p {
    font-size: 15px;
    color: var(--color-gray);
    line-height: 1.7;
    font-family: "font_medium";
    margin: 0;
}

/* مودال طلب تجربة القيادة */
.experience-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.experience-modal-overlay.active {
    display: flex;
}

.experience-modal {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideUp 0.4s ease;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.experience-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.experience-modal-header h3 {
    font-size: 22px;
    font-family: "font_bold";
    color: var(--color-black);
    margin: 0;
}

.experience-modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(149, 11, 18, 0.1);
    color: var(--color-Primary1);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.experience-modal-close:hover {
    background: var(--color-Primary1);
    color: #fff;
    transform: rotate(90deg);
}

.experience-modal-body {
    padding: 30px;
}

.form-group-exp {
    margin-bottom: 20px;
}

.form-group-exp label {
    display: block;
    font-size: 14px;
    font-family: "font_bold";
    color: var(--color-black);
    margin-bottom: 8px;
}

.form-group-exp .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    font-size: 15px;
    font-family: "font_medium";
    color: var(--color-black);
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group-exp .form-control:focus {
    border-color: var(--color-Primary1);
    box-shadow: 0 0 0 3px rgba(149, 11, 18, 0.1);
    background: #fff;
}

.form-group-exp select.form-control {
    cursor: pointer;
}

.form-group-exp textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.experience-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    font-size: 17px;
    font-family: "font_bold";
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.experience-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(149, 11, 18, 0.3);
}

/* Responsive - Driving Experience Details */
@media (max-width: 991px) {
    .experience-detail-img {
        height: 350px;
        margin-bottom: 30px;
    }

    .experience-detail-title {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .experience-detail-img {
        height: 280px;
    }

    .experience-detail-title {
        font-size: 22px;
    }

    .experience-detail-desc {
        font-size: 14px;
    }

    .experience-modal {
        border-radius: 15px;
    }

    .experience-modal-header {
        padding: 20px;
    }

    .experience-modal-body {
        padding: 20px;
    }

    .experience-info-card {
        padding: 25px 20px;
    }
}

/* ====================================
   End Driving Experience Details
   ==================================== */

.ctm-rt img {
    width: 40%;
    object-fit: contain;
    height: 35%;
}


.sub-partner {
    background-color: var(--color-white);
    box-shadow: 0px 5px 15.4px 0px rgba(0, 0, 0, 0.15);
    align-items: center;
    padding: 25px;
    border-radius: 25px;
    height: 160px;
    justify-content: center;
    display: flex;
}

.sub-partner img {
    width: 75%;
    max-height: 75%;
    object-fit: contain;
    filter: grayscale(1) brightness(0) !important;
    transition: all 0.3s linear;
    fill: gray;
    opacity: .5;
}

.sub-partner:hover img {
    filter: grayscale(1) brightness(0) !important;
    opacity: 1;
}


/* تصميم قسم الأخبار */
.news-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.news-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.15) rotate(2deg);
}

.news-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-Primary1) 0%, #d4af37 100%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.news-date .day {
    font-size: 26px;
    font-family: 'font_bold';
    line-height: 1;
    margin-bottom: 5px;
}

.news-date .month {
    font-size: 13px;
    font-family: 'font_medium';
}

.news-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.news-meta span {
    font-size: 13px;
    color: #6c757d;
    font-family: 'font_medium';
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-meta i {
    color: var(--color-Primary1);
    font-size: 14px;
}

.news-content h3 {
    font-size: 20px;
    font-family: 'font_bold';
    color: var(--color-black);
    margin-bottom: 15px;
    line-height: 1.5;
    transition: color 0.3s ease;
    min-height: 60px;
}

.news-card:hover .news-content h3 {
    color: var(--color-Primary1);
}

.news-content p {
    font-size: 15px;
    color: #6c757d;
    font-family: 'font_medium';
    line-height: 1.8;
    margin-bottom: 20px;
    flex: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-Primary1);
    font-size: 15px;
    font-family: 'font_bold';
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--color-Primary1) 0%, #d4af37 100%);
    transition: width 0.3s ease;
}

.read-more:hover::after {
    width: 100%;
}

.read-more i {
    transition: transform 0.3s ease;
    font-size: 13px;
}

.read-more:hover i {
    transform: translateX(-5px);
}

/* استجابة للموبايل */
@media (max-width: 768px) {
    .news-image {
        height: 220px;
    }

    .news-content h3 {
        font-size: 18px;
        min-height: auto;
    }

    .news-content {
        padding: 20px;
    }

    .news-date {
        width: 60px;
        height: 60px;
    }

    .news-date .day {
        font-size: 22px;
    }

    .news-date .month {
        font-size: 12px;
    }
}

/* تصميم بطاقات استشاريي المبيعات */
.contact-team-index {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.consultant-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    border: 2px solid transparent;
}

.consultant-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(201, 32, 39, 0.2);
}

/* الخلفية الحمراء العلوية */
.card-header-bg {
    background: linear-gradient(135deg, #C92027 0%, #8B1419 100%);
    height: 120px;
    width: 100%;
    position: relative;
}

/* صورة الاستشاري */
.consultant-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: all 0.4s ease;
}

.consultant-card:hover .consultant-image {
    transform: translateX(-50%) scale(1.1);
}

.consultant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* محتوى البطاقة */
.consultant-card .card-body {
    padding: 70px 25px 25px;
    text-align: center;
}

/* شارة استشاري مبيعات */
.consultant-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4A90E2;
    font-size: 14px;
    font-family: 'font_medium';
    margin-bottom: 10px;
}

.consultant-badge i {
    font-size: 16px;
}

/* اسم الاستشاري */
.consultant-name {
    font-size: 24px;
    font-family: 'font_bold';
    color: var(--color-black);
    margin-bottom: 15px;
}

/* التقييم بالنجوم */
.rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.rating i {
    color: #FFC107;
    font-size: 18px;
}

/* نسبة رضا العملاء */
.satisfaction {
    font-size: 15px;
    color: var(--color-gray);
    font-family: 'font_medium';
    margin-bottom: 20px;
}

/* معلومات الاستشاري */
.consultant-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.info-item {
    font-size: 13px;
    color: #6c757d;
    font-family: 'font_medium';
    padding: 8px 15px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.info-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.info-item.location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #4A90E2;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
}

.info-item.location:hover {
    background: linear-gradient(135deg, #BBDEFB 0%, #90CAF9 100%);
}

.info-item.location i {
    font-size: 12px;
}

/* أزرار الاتصال */
.card-actions {
    display: flex;
    gap: 10px;
}

.btn-whatsapp,
.btn-call {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-family: 'font_bold';
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-call {
    background: linear-gradient(135deg, #C92027 0%, #8B1419 100%);
    color: white;
}

.btn-call:hover {
    background: linear-gradient(135deg, #8B1419 0%, #6B0F13 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 32, 39, 0.4);
}

.btn-whatsapp i,
.btn-call i {
    font-size: 18px;
}

/* تصميم السلايدر */
.contact-team-form {
    position: relative;
}

/* أزرار التنقل في السلايدر */
#slider-contact-team .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 20px;
}

#slider-contact-team .owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

#slider-contact-team .owl-nav button:hover {
    background: var(--color-Primary1);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(201, 32, 39, 0.3);
}

#slider-contact-team .owl-nav button i {
    font-size: 18px;
    color: var(--color-Primary1);
}

#slider-contact-team .owl-nav button:hover i {
    color: white;
}

#slider-contact-team .owl-nav .owl-prev {
    margin-right: 10px;
}

#slider-contact-team .owl-nav .owl-next {
    margin-left: 10px;
}

/* النقاط في السلايدر */
#slider-contact-team .owl-dots {
    text-align: center;
    margin-top: 30px;
}

#slider-contact-team .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    display: inline-block;
    margin: 0 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

#slider-contact-team .owl-dot.active {
    background: var(--color-Primary1);
    width: 30px;
    border-radius: 10px;
}

#slider-contact-team .owl-dot:hover {
    background: #bbb;
}

/* استجابة للموبايل */
@media (max-width: 768px) {
    .consultant-card {
        max-width: 100%;
    }
    
    .card-actions {
        flex-direction: column;
    }
    
    .btn-whatsapp,
    .btn-call {
        width: 100%;
    }
    
    #slider-contact-team .owl-nav {
        padding: 0 10px;
    }
    
    #slider-contact-team .owl-nav button {
        width: 40px;
        height: 40px;
    }
    
    #slider-contact-team .owl-nav button i {
        font-size: 14px;
    }
}

/* تأثيرات الحركة */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.consultant-card {
    animation: fadeInUp 0.6s ease-out;
}

/* تأثير الموجة على الأزرار */
.btn-whatsapp,
.btn-call {
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before,
.btn-call::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-whatsapp:active::before,
.btn-call:active::before {
    width: 300px;
    height: 300px;
}

/* تأثير النبض على التقييم */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.rating i {
    animation: pulse 2s ease-in-out infinite;
}

.rating i:nth-child(1) {
    animation-delay: 0s;
}

.rating i:nth-child(2) {
    animation-delay: 0.2s;
}

.rating i:nth-child(3) {
    animation-delay: 0.4s;
}

.rating i:nth-child(4) {
    animation-delay: 0.6s;
}

.rating i:nth-child(5) {
    animation-delay: 0.8s;
}

/* إيقاف التأثير عند hover على البطاقة */
.consultant-card:hover .rating i {
    animation: none;
}



#map {
    width: 50%;
    height: 100%;
    height: 650px;
}

.main-contactus-index {
    display: flex;
}

.form-contactus-index {
    width: 50%;
    padding: 50px 35px;
    background-color: var(--color-Primary1);
}

.title-start.title-w {
    margin-bottom: 20px;
}

.btn-contactus-index {
    text-align: center;
    margin-top: 20px;

}

.btn-contactus-index .ctm-btn {
    background-color: var(--color-Primary3) !important;
    border: none !important;

}


/* ====================================
   Footer Styles - Professional Design
   ==================================== */

.footer {
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-top {
    padding: 80px 0 60px;
    position: relative;
}

/* Footer Content Section */
.footer-content {
    padding-left: 20px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(1.2);
}

.footer-desc {
    color: #b8b8b8;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 350px;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-Primary1), var(--color-Primary3));
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link i {
    position: relative;
    z-index: 1;
}

.social-link:hover {
    transform: translateY(-5px);
    border-color: var(--color-Primary1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Footer Links Section */
.footer-links {
    padding-right: 20px;
}

.footer-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-Primary1), var(--color-Primary3));
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b8b8b8;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.footer-links a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-Primary1);
    padding-right: 5px;
}

.footer-links a:hover i {
    transform: translateX(-3px);
}

/* Newsletter Section */
.footer-newsletter {
    padding-right: 20px;
}

.newsletter-desc {
    color: #b8b8b8;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.newsletter-form {
    margin-bottom: 30px;
}

.newsletter-input-wrapper {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.newsletter-input-wrapper:focus-within {
    border-color: var(--color-Primary1);
    box-shadow: 0 0 0 3px rgba(var(--color-Primary1-rgb), 0.1);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 25px;
    color: #ffffff;
    font-size: 15px;
    outline: none;
}

.newsletter-input::placeholder {
    color: #808080;
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--color-Primary1), var(--color-Primary3));
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2px;
}

.newsletter-btn:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Footer Contact Info */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b8b8b8;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-item i {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-Primary1);
    font-size: 14px;
    flex-shrink: 0;
}

.contact-item:hover {
    color: #ffffff;
    padding-right: 5px;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: #b8b8b8;
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #b8b8b8;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--color-Primary1);
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.2);
}

/* Decorative Elements */
.footer::after {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--color-Primary1-rgb), 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-top {
        padding: 60px 0 40px;
    }
    
    .footer-content,
    .footer-links,
    .footer-newsletter {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .main-contactus-index {
        display: flex;
        flex-wrap: wrap;
    }
    .form-contactus-index {
        width: 100%;
        padding: 50px 35px;
    }
    
    .footer-links a {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .footer-top {
        padding: 50px 0 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .footer-desc,
    .newsletter-desc {
        max-width: 100%;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .footer-title {
        font-size: 18px;
    }
    
    .footer-logo img {
        max-width: 150px;
    }
    
    .newsletter-input {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .newsletter-btn {
        width: 45px;
        height: 45px;
    }
}

/* Animation for footer elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-content,
.footer-links,
.footer-newsletter {
    animation: fadeInUp 0.8s ease-out;
}

.footer-links {
    animation-delay: 0.2s;
}

.footer-newsletter {
    animation-delay: 0.4s;
}  .logo-route {
    width: 120px;
}

/* ====================================
   Info About Us Page Section
   ==================================== */
.info-aboutus-Page {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.info-aboutus-Page::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 32, 39, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.info-aboutus-Page::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 32, 39, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.info-aboutus-Page-item {
    background: #ffffff;
    border-radius: 25px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.info-aboutus-Page-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--color-Primary1) 0%, #d4af37 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.info-aboutus-Page-item:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.info-aboutus-Page-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(201, 32, 39, 0.2);
}

.icon-box {
    text-align: center;
    margin-bottom: 30px;
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--color-Primary1) 0%, #d4af37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(201, 32, 39, 0.3);
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed var(--color-Primary1);
    opacity: 0;
    transition: all 0.4s ease;
    animation: rotate 10s linear infinite;
}

.info-aboutus-Page-item:hover .icon-wrapper::before {
    opacity: 0.6;
}

.info-aboutus-Page-item:hover .icon-wrapper {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 15px 40px rgba(201, 32, 39, 0.4);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.icon-wrapper i {
    font-size: 45px;
    color: #ffffff;
    transition: all 0.4s ease;
}

.info-aboutus-Page-item:hover .icon-wrapper i {
    transform: scale(1.2);
}

.content-info-aboutus {
    text-align: center;
}

.content-info-aboutus h3 {
    font-size: 28px;
    font-family: 'font_bold';
    color: var(--color-black);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.content-info-aboutus h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-Primary1) 0%, #d4af37 100%);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.info-aboutus-Page-item:hover .content-info-aboutus h3::after {
    width: 80%;
}

.info-aboutus-Page-item:hover .content-info-aboutus h3 {
    color: var(--color-Primary1);
}

.content-info-aboutus p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--color-gray);
    font-family: 'font_medium';
    margin: 0;
    text-align: center;
}

/* Decorative corner elements */
.info-aboutus-Page-item::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, transparent 50%, rgba(201, 32, 39, 0.05) 50%);
    border-radius: 5px;
    opacity: 0;
    transition: all 0.3s ease;
}

.info-aboutus-Page-item:hover::after {
    opacity: 1;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 991px) {
    .info-aboutus-Page-item {
        padding: 35px 25px;
        margin-bottom: 30px;
    }
    
    .icon-wrapper {
        width: 90px;
        height: 90px;
    }
    
    .icon-wrapper i {
        font-size: 40px;
    }
    
    .content-info-aboutus h3 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .info-aboutus-Page-item {
        padding: 30px 20px;
    }
    
    .icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .icon-wrapper i {
        font-size: 35px;
    }
    
    .content-info-aboutus h3 {
        font-size: 22px;
    }
    
    .content-info-aboutus p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .icon-wrapper i {
        font-size: 30px;
    }
    
    .content-info-aboutus h3 {
        font-size: 20px;
    }
}

/* ====================================
   Certificates Section - Professional Design
   ==================================== */
.certificate-aboutus-Page {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.certificate-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    cursor: pointer;
}

.certificate-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 32, 39, 0.9) 0%, rgba(139, 20, 25, 0.95) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.certificate-item:hover::before {
    opacity: 1;
}

.certificate-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.certificate-item a {
    display: block;
    position: relative;
    text-decoration: none;
}

.certificate-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.certificate-item:hover img {
    transform: scale(1.15);
    filter: blur(2px) brightness(0.8);
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    z-index: 2;
    pointer-events: none;
}

.certificate-content {
    text-align: center;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.certificate-item:hover .certificate-content {
    transform: translateY(0);
    opacity: 1;
}

.certificate-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    transform: scale(0);
}

.certificate-item:hover .certificate-icon {
    transform: scale(1) rotate(360deg);
    transition-delay: 0.1s;
}

.certificate-icon i {
    font-size: 32px;
    color: #ffffff;
}

.certificate-title {
    font-size: 22px;
    font-family: 'font_bold';
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 15px;
}

.certificate-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    transition: width 0.5s ease 0.2s;
}

.certificate-item:hover .certificate-title::after {
    width: 80%;
}

.certificate-date {
    font-size: 16px;
    font-family: 'font_medium';
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.certificate-date::before {
    content: '\f073';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 14px;
}

/* Corner decoration */
.certificate-item::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.15) 50%);
    border-radius: 0 20px 0 0;
    opacity: 0;
    z-index: 3;
    transition: opacity 0.4s ease;
}

.certificate-item:hover::after {
    opacity: 1;
}

/* Badge effect */
.certificate-item a::before {
    content: '\f0a3';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    z-index: 3;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    transform: rotate(0deg) scale(0);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.certificate-item:hover a::before {
    transform: rotate(360deg) scale(1);
}

/* Loading animation */
@keyframes pulse-border {
    0%, 100% {
        border-color: rgba(255, 255, 255, 0.5);
    }
    50% {
        border-color: rgba(255, 255, 255, 1);
    }
}

.certificate-item:hover .certificate-icon {
    animation: pulse-border 1.5s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .certificates-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .certificate-item img {
        height: 300px;
    }
    
    .certificate-title {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .certificate-item img {
        height: 280px;
    }
    
    .certificate-icon {
        width: 70px;
        height: 70px;
    }
    
    .certificate-icon i {
        font-size: 28px;
    }
    
    .certificate-title {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .certificate-item img {
        height: 300px;
    }
    
    .certificate-overlay {
        padding: 20px;
    }
    
    .certificate-title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .certificate-item img {
        height: 250px;
    }
    
    .certificate-icon {
        width: 60px;
        height: 60px;
    }
    
    .certificate-icon i {
        font-size: 24px;
    }
    
    .certificate-title {
        font-size: 18px;
    }
    
    .certificate-date {
        font-size: 14px;
    }
}

/* ====================================
   Lightbox Customization for Certificates
   ==================================== */
.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.95);
}

.lg-outer .lg-thumb-outer {
    background-color: rgba(0, 0, 0, 0.9);
}

.lg-outer .lg-thumb-item {
    border-radius: 10px;
    overflow: hidden;
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
    border-color: var(--color-Primary1);
}

.lg-toolbar {
    background-color: rgba(0, 0, 0, 0.8);
}

.lg-actions .lg-next,
.lg-actions .lg-prev {
    background-color: rgba(201, 32, 39, 0.9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
    background-color: var(--color-Primary1);
    transform: scale(1.1);
}

.lg-toolbar .lg-icon {
    color: #ffffff;
    transition: all 0.3s ease;
}

.lg-toolbar .lg-icon:hover {
    color: var(--color-Primary1);
}

/* Lightbox counter */
#lg-counter {
    color: #ffffff;
    font-size: 16px;
    padding: 10px 20px;
    background-color: rgba(201, 32, 39, 0.9);
    border-radius: 25px;
}

/* Smooth transitions */
.lg-css3.lg-fade .lg-item {
    opacity: 0;
}

.lg-css3.lg-fade .lg-item.lg-current {
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* Custom zoom controls */
.lg-outer .lg-toogle-thumb,
.lg-outer .lg-download,
.lg-outer .lg-fullscreen,
.lg-outer .lg-close {
    background-color: transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lg-outer .lg-toogle-thumb:hover,
.lg-outer .lg-download:hover,
.lg-outer .lg-fullscreen:hover,
.lg-outer .lg-close:hover {
    background-color: rgba(201, 32, 39, 0.3);
}

/* ====================================
   Custom Image Modal/Popup
   ==================================== */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { 
        transform: scale(0.8);
        opacity: 0;
    }
    to { 
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    left: 35px;
    color: #ffffff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 32, 39, 0.8);
    border-radius: 50%;
    line-height: 1;
}

.modal-close:hover,
.modal-close:focus {
    background: var(--color-Primary1);
    transform: rotate(90deg) scale(1.1);
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201, 32, 39, 0.8);
    color: white;
    border: none;
    padding: 20px;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-prev {
    right: 30px;
}

.modal-next {
    left: 30px;
}

.modal-prev:hover,
.modal-next:hover {
    background: var(--color-Primary1);
    transform: translateY(-50%) scale(1.15);
}

.modal-caption {
    text-align: center;
    color: #ffffff;
    padding: 20px;
    font-size: 20px;
    font-family: 'font_bold';
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    margin-top: 15px;
    backdrop-filter: blur(10px);
}

.modal-counter {
    position: absolute;
    top: 20px;
    color: #ffffff;
    font-size: 18px;
    font-family: 'font_bold';
    background: rgba(201, 32, 39, 0.9);
    padding: 10px 25px;
    border-radius: 25px;
    z-index: 10000;
}

.modal-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10000;
}

.modal-btn {
    background: rgba(201, 32, 39, 0.8);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.modal-controls {
    position: absolute;
    bottom: 14%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10000;
}

.modal-btn:hover {
    background: var(--color-Primary1);
    transform: scale(1.15);
}

/* Zoom states */
.modal-content.zoomed {
    cursor: move;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-close {
        top: 10px;
        left: 10px;
        font-size: 35px;
        width: 45px;
        height: 45px;
    }
    
    .modal-prev,
    .modal-next {
        width: 45px;
        height: 45px;
        font-size: 18px;
        padding: 10px;
    }
    
    .modal-prev {
        right: 10px;
    }
    
    .modal-next {
        left: 10px;
    }
    
    .modal-counter {
        right: 10px;
        font-size: 14px;
        padding: 8px 15px;
        top: 70px;
    }
    
    .modal-caption {
        font-size: 16px;
        padding: 15px;
    }
    
    .modal-controls {
        bottom: 20px;
        gap: 10px;
    }
    
    .modal-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .modal-content-wrapper {
        max-width: 95%;
    }
}

/* ====================================
   Cars Filter Section
   ==================================== */
.filter-cars {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 20px;
}

/* Search Box */
.search-box {
    position: relative;
    margin-bottom: 20px;
}

.search-input {
    width: 100%;
    padding: 12px 15px  12px 45px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    direction: rtl;
}

.search-input:focus {
    outline: none;
    border-color: var(--color-Primary1);
    box-shadow: 0 0 0 3px rgba(201, 32, 39, 0.1);
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 16px;
    pointer-events: none;
}

/* Filter Section */
.filter-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f3f5;
}

.filter-section:last-of-type {
    border-bottom: none;
}

.filter-title {
    font-size: 16px;
    font-family: 'font_medium';
    color: #212529;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-title i {
    color: var(--color-Primary1);
    font-size: 18px;
}

/* Filter Options */
.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 0;
    position: relative;
    user-select: none;
}

.filter-checkbox:hover {
    background-color: #f8f9fa;
}

.filter-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Custom Checkmark */
.checkmark {
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid #dee2e6;
    border-radius: 5px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.filter-checkbox input[type="checkbox"]:checked ~ .checkmark {
    background-color: var(--color-Primary1);
    border-color: var(--color-Primary1);
}

.filter-checkbox input[type="checkbox"]:checked ~ .checkmark::after {
    content: '';
    position: absolute;
    display: block;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.label-text {
    font-size: 19px;
    margin-bottom: 0;
    color: #495057;
    font-family: 'font_main';
}

.filter-checkbox input[type="checkbox"]:checked ~ .label-text {
    color: var(--color-Primary1);
    font-family: 'font_medium';
}

/* Colors Grid - Horizontal Layout */
.colors-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
}

/* Color Option Styling */
.color-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
}

.color-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.color-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.color-option:hover .color-circle {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Selected Color Circle */
.color-option input[type="checkbox"]:checked ~ .color-circle {
    box-shadow: 0 0 0 3px var(--color-Primary1);
    transform: scale(1.1);
}

.color-option input[type="checkbox"]:checked ~ .color-circle::after {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* ====================================
   Car Details Page - Professional Design
   ==================================== */
.car-details-page {
    padding-top: 0;
}

/* معرض الصور */
.car-gallery {
    position: sticky;
    top: 20px;
}

.gallery-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.gallery-main-img {
    position: relative;
    height: 450px;
    overflow: hidden;
    cursor: pointer;
    background: #e9ecef;
}

.gallery-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-main-img:hover img {
    transform: scale(1.03);
}

.gallery-zoom-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-zoom-btn:hover {
    background: var(--color-Primary1);
    transform: scale(1.1);
}

.gallery-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-Primary1) 0%, #d4af37 100%);
    color: #fff;
    padding: 8px 22px;
    border-radius: 25px;
    font-size: 14px;
    font-family: 'font_bold';
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* الصور المصغرة */
.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.gallery-thumb {
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-thumb:hover {
    border-color: rgba(149, 11, 18, 0.4);
    transform: translateY(-3px);
}

.gallery-thumb:hover img {
    transform: scale(1.1);
}

.gallery-thumb.active {
    border-color: var(--color-Primary1);
    box-shadow: 0 5px 20px rgba(149, 11, 18, 0.3);
}

.gallery-thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
    opacity: 1;
}

.gallery-thumb.active::after,
.gallery-thumb:hover::after {
    opacity: 0;
}

/* بطاقة معلومات السيارة */
.car-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.car-info-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
    flex-wrap: wrap;
}

.car-info-title {
    font-size: 28px;
    font-family: 'font_bold';
    color: var(--color-black);
    margin: 0;
    line-height: 1.4;
}

.car-info-price-tag {
    background: linear-gradient(135deg, var(--color-Primary1) 0%, #b91c22 100%);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(149, 11, 18, 0.3);
}

.price-amount {
    font-size: 22px;
    font-family: 'font_bold';
}

.price-currency {
    font-size: 14px;
    font-family: 'font_medium';
    opacity: 0.9;
}

.car-info-desc {
    font-size: 15px;
    line-height: 1.9;
    color: #6c757d;
    font-family: 'font_medium';
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

/* شبكة المواصفات */
.car-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.car-spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.car-spec-item:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.spec-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-Primary1) 0%, #d4af37 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

.spec-text {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 12px;
    color: #6c757d;
    font-family: 'font_medium';
}

.spec-value {
    font-size: 15px;
    color: var(--color-black);
    font-family: 'font_bold';
}

/* أزرار التفاعل */
.car-info-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.car-info-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    font-size: 16px;
    font-family: 'font_bold';
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s ease;
}

.car-info-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(149, 11, 18, 0.4);
}

.car-info-btn-outline {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    font-size: 16px;
    font-family: 'font_bold';
    border-radius: 50px;
    background: #fff;
    color: var(--color-Primary1);
    border: 2px solid var(--color-Primary1);
    text-align: center;
    transition: all 0.3s ease;
}

.car-info-btn-outline:hover {
    background: var(--color-Primary1);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(149, 11, 18, 0.3);
}

/* مشاركة */
.car-info-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
    margin-top: auto;
}

.car-info-share > span {
    font-size: 14px;
    color: #6c757d;
    font-family: 'font_medium';
}

.share-links {
    display: flex;
    gap: 10px;
}

.share-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.share-links a:hover {
    background: var(--color-Primary1);
    color: #fff;
    border-color: var(--color-Primary1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(149, 11, 18, 0.3);
}

/* ====================================
   Car Lightbox
   ==================================== */
.car-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.car-lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    left: 30px;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(149, 11, 18, 0.8);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
}

.lightbox-close:hover {
    background: var(--color-Primary1);
    transform: rotate(90deg) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    top: 25px;
    right: 30px;
    color: #fff;
    font-size: 16px;
    font-family: 'font_bold';
    background: rgba(149, 11, 18, 0.9);
    padding: 8px 22px;
    border-radius: 25px;
    z-index: 10;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(149, 11, 18, 0.8);
    color: #fff;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-nav:hover {
    background: var(--color-Primary1);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    right: 30px;
}

.lightbox-next {
    left: 30px;
}

.lightbox-content {
    max-width: 85%;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
    animation: lightboxZoomIn 0.3s ease;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-thumbs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 600px;
}

.lightbox-thumb {
    width: 70px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-thumb:hover {
    opacity: 0.8;
    transform: translateY(-3px);
}

.lightbox-thumb.active {
    border-color: var(--color-Primary1);
    opacity: 1;
    box-shadow: 0 4px 15px rgba(149, 11, 18, 0.4);
}

/* ====================================
   Other Cars Section
   ==================================== */
.other-cars-section {
    background: #fff;
}

.other-car-card {
    display: block;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    text-decoration: none;
    border: 2px solid transparent;
}

.other-car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(149, 11, 18, 0.15);
}

.other-car-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.other-car-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.other-car-card:hover .other-car-img img {
    transform: scale(1.1);
}

.other-car-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--color-Primary1) 0%, #d4af37 100%);
    color: #fff;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-family: 'font_bold';
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.other-car-content {
    padding: 25px;
}

.other-car-content h3 {
    font-size: 20px;
    font-family: 'font_bold';
    color: var(--color-black);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.other-car-card:hover .other-car-content h3 {
    color: var(--color-Primary1);
}

.other-car-specs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.other-car-specs span {
    font-size: 13px;
    color: #6c757d;
    font-family: 'font_medium';
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 8px;
}

.other-car-specs span i {
    color: var(--color-Primary1);
    font-size: 12px;
}

.other-car-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.other-car-price {
    display: flex;
    flex-direction: column;
}

.other-price-label {
    font-size: 12px;
    color: #6c757d;
    font-family: 'font_medium';
}

.other-price-value {
    font-size: 20px;
    font-family: 'font_bold';
    color: var(--color-Primary1);
}

.other-car-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-Primary1);
    font-size: 14px;
    font-family: 'font_bold';
    transition: all 0.3s ease;
}

.other-car-link i {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.other-car-card:hover .other-car-link i {
    transform: translateX(-5px);
}

/* Filter Actions */
.filter-actions {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-apply-filter,
.btn-reset-filter {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'font_medium';
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-apply-filter {
    background: var(--color-Primary1);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(201, 32, 39, 0.3);
}

.btn-apply-filter:hover {
    background: #a61e24;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 32, 39, 0.4);
}

.btn-reset-filter {
    background: #ffffff;
    color: #6c757d;
    border: 2px solid #e9ecef;
}

.btn-reset-filter:hover {
    background: #f8f9fa;
    color: #495057;
    border-color: #dee2e6;
}

/* Our Cars Page Section */
.our-cars-page {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Responsive */
@media (max-width: 991px) {
    .filter-cars {
        margin-bottom: 30px;
        position: static;
    }
}

@media (max-width: 576px) {
    .filter-cars {
        padding: 20px;
    }
    
    .filter-title {
        font-size: 15px;
    }
    
    .label-text {
        font-size: 13px;
    }
    
    .btn-apply-filter,
    .btn-reset-filter {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* ====================================
   News Details Page - Professional Design
   ==================================== */

/* صورة الخبر الرئيسية */
.news-detail-main {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.news-detail-img {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.news-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-detail-img:hover img {
    transform: scale(1.05);
}

.news-detail-date-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, var(--color-Primary1) 0%, #d4af37 100%);
    color: #fff;
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    z-index: 2;
    min-width: 80px;
}

.news-detail-date-badge .day {
    font-size: 32px;
    font-family: 'font_bold';
    line-height: 1;
    margin-bottom: 3px;
}

.news-detail-date-badge .month {
    font-size: 14px;
    font-family: 'font_medium';
    margin-bottom: 2px;
}

.news-detail-date-badge .year {
    font-size: 12px;
    font-family: 'font_medium';
    opacity: 0.8;
}

/* معلومات الخبر (الكاتب - التاريخ - التعليقات) */
.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 2px solid #f0f0f0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6c757d;
    font-family: 'font_medium';
}

.meta-item i {
    color: var(--color-Primary1);
    font-size: 16px;
}

/* عنوان الخبر */
.news-detail-title {
    font-size: 30px;
    font-family: 'font_bold';
    color: var(--color-black);
    line-height: 1.6;
    padding: 25px 30px 15px;
    margin: 0;
    position: relative;
}

.news-detail-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 30px;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-Primary1) 0%, #d4af37 100%);
    border-radius: 2px;
}

/* محتوى الخبر */
.news-detail-body {
    padding: 25px 30px;
}

.news-detail-body p {
    font-size: 16px;
    line-height: 2;
    color: #4a4a4a;
    font-family: 'font_medium';
    margin-bottom: 20px;
    text-align: justify;
}

.news-detail-subtitle {
    font-size: 22px;
    font-family: 'font_bold';
    color: var(--color-black);
    margin: 30px 0 15px;
    padding-right: 15px;
    border-right: 4px solid var(--color-Primary1);
    line-height: 1.6;
}

/* صور داخل المقال */
.news-detail-inline-img {
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
}

.news-detail-inline-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.news-detail-inline-img img:hover {
    transform: scale(1.03);
}

/* اقتباس مميز */
.news-detail-quote {
    background: linear-gradient(135deg, rgba(149, 11, 18, 0.05) 0%, rgba(149, 11, 18, 0.02) 100%);
    border-right: 5px solid var(--color-Primary1);
    padding: 30px 35px;
    margin: 35px 0;
    border-radius: 0 15px 15px 0;
    position: relative;
}

.news-detail-quote i {
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 40px;
    color: var(--color-Primary1);
    opacity: 0.15;
}

.news-detail-quote p {
    font-size: 18px;
    font-style: italic;
    line-height: 1.9;
    color: #333;
    font-family: 'font_medium';
    margin: 0;
}

.quote-author {
    display: block;
    margin-top: 15px;
    font-size: 15px;
    color: var(--color-Primary1);
    font-family: 'font_bold';
}

/* الوسوم */
.news-detail-tags {
    padding: 20px 30px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.news-detail-tags h4 {
    font-size: 15px;
    font-family: 'font_bold';
    color: var(--color-black);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.news-detail-tags h4 i {
    color: var(--color-Primary1);
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags-list a {
    display: inline-block;
    padding: 6px 18px;
    background: #f8f9fa;
    color: #6c757d;
    font-size: 13px;
    font-family: 'font_medium';
    border-radius: 25px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.tags-list a:hover {
    background: var(--color-Primary1);
    color: #fff;
    border-color: var(--color-Primary1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(149, 11, 18, 0.3);
}

/* مشاركة الخبر */
.news-detail-share {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 2px solid #f0f0f0;
}

.news-detail-share h4 {
    font-size: 15px;
    font-family: 'font_bold';
    color: var(--color-black);
    margin: 0;
    white-space: nowrap;
}

.share-btns {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.share-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #1DA1F2; }
.share-btn.whatsapp { background: #25D366; }
.share-btn.linkedin { background: #0A66C2; }
.share-btn.copy-link { background: #6c757d; }

.share-btn.facebook:hover { background: #0d6efd; }
.share-btn.twitter:hover { background: #0c8de4; }
.share-btn.whatsapp:hover { background: #128C7E; }
.share-btn.linkedin:hover { background: #084e96; }
.share-btn.copy-link:hover { background: var(--color-Primary1); }

/* التنقل بين الأخبار */
.news-detail-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 30px;
    border-top: 2px solid #f0f0f0;
}

.news-detail-navigation a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    flex: 1;
    text-decoration: none;
    border: 1px solid transparent;
}

.news-detail-navigation a:hover {
    background: #fff;
    border-color: var(--color-Primary1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.news-detail-navigation a i {
    font-size: 20px;
    color: var(--color-Primary1);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.nav-prev:hover i { transform: translateX(5px); }
.nav-next:hover i { transform: translateX(-5px); }

.nav-next {
    justify-content: flex-end;
    text-align: left;
}

.nav-text span {
    font-size: 13px;
    color: #6c757d;
    font-family: 'font_medium';
    display: block;
    margin-bottom: 5px;
}

.nav-text h5 {
    font-size: 15px;
    font-family: 'font_bold';
    color: var(--color-black);
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.news-detail-navigation a:hover .nav-text h5 {
    color: var(--color-Primary1);
}

/* ====================================
   الشريط الجانبي - Sidebar
   ==================================== */
.news-sidebar {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
    font-size: 20px;
    font-family: 'font_bold';
    color: var(--color-black);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-Primary1) 0%, #d4af37 100%);
}

/* بحث الشريط الجانبي */
.sidebar-search {
    position: relative;
    display: flex;
}

.sidebar-search-input {
    width: 100%;
    padding: 14px 20px;
    padding-left: 55px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 14px;
    font-family: 'font_medium';
    transition: all 0.3s ease;
    background: #fafafa;
    direction: rtl;
}

.sidebar-search-input:focus {
    outline: none;
    border-color: var(--color-Primary1);
    box-shadow: 0 0 0 3px rgba(149, 11, 18, 0.1);
    background: #fff;
}

.sidebar-search-btn {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    background: linear-gradient(135deg, var(--color-Primary1) 0%, #b91c22 100%);
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sidebar-search-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 15px rgba(149, 11, 18, 0.3);
}

/* أحدث الأخبار في الشريط الجانبي */
.sidebar-recent-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-item {
    display: flex;
    gap: 15px;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    align-items: center;
    border: 1px solid transparent;
}

.recent-item:hover {
    background: #f8f9fa;
    border-color: rgba(149, 11, 18, 0.1);
    transform: translateX(-5px);
}

.recent-img {
    width: 85px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.recent-item:hover .recent-img img {
    transform: scale(1.1);
}

.recent-info {
    flex: 1;
}

.recent-info h4 {
    font-size: 14px;
    font-family: 'font_bold';
    color: var(--color-black);
    margin-bottom: 8px;
    line-height: 1.6;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-item:hover .recent-info h4 {
    color: var(--color-Primary1);
}

.recent-info span {
    font-size: 12px;
    color: #6c757d;
    font-family: 'font_medium';
    display: flex;
    align-items: center;
    gap: 5px;
}

.recent-info span i {
    color: var(--color-Primary1);
    font-size: 12px;
}

/* التصنيفات */
.sidebar-categories {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 15px;
    font-family: 'font_medium';
    color: #4a4a4a;
    border: 1px solid #f0f0f0;
}

.category-item:hover {
    background: rgba(149, 11, 18, 0.05);
    border-color: rgba(149, 11, 18, 0.15);
    color: var(--color-Primary1);
    padding-right: 20px;
}

.category-item .count {
    background: #f0f0f0;
    color: #6c757d;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-family: 'font_bold';
    transition: all 0.3s ease;
}

.category-item:hover .count {
    background: var(--color-Primary1);
    color: #fff;
}

/* وسوم الشريط الجانبي */
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-tags a {
    display: inline-block;
    padding: 8px 18px;
    background: #f8f9fa;
    color: #6c757d;
    font-size: 13px;
    font-family: 'font_medium';
    border-radius: 25px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.sidebar-tags a:hover {
    background: var(--color-Primary1);
    color: #fff;
    border-color: var(--color-Primary1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(149, 11, 18, 0.3);
}

/* ====================================
   News Details Responsive
   ==================================== */
@media (max-width: 991px) {
    .news-detail-img {
        height: 350px;
    }

    .news-detail-title {
        font-size: 24px;
        padding: 20px 25px 15px;
    }

    .news-detail-body {
        padding: 20px 25px;
    }

    .news-detail-meta {
        padding: 20px 25px;
    }

    .news-sidebar {
        position: static;
        margin-top: 30px;
    }

    .news-detail-navigation {
        flex-direction: column;
        padding: 20px 25px;
    }
}

@media (max-width: 767px) {
    .news-detail-img {
        height: 280px;
    }

    .news-detail-title {
        font-size: 20px;
        padding: 15px 20px 12px;
    }

    .news-detail-title::after {
        right: 20px;
        width: 60px;
    }

    .news-detail-body {
        padding: 15px 20px;
    }

    .news-detail-body p {
        font-size: 15px;
        line-height: 1.8;
    }

    .news-detail-subtitle {
        font-size: 18px;
        margin: 20px 0 10px;
    }

    .news-detail-meta {
        padding: 15px 20px;
        gap: 12px;
    }

    .news-detail-inline-img img {
        height: 200px;
    }

    .news-detail-quote {
        padding: 20px 25px;
        margin: 25px 0;
    }

    .news-detail-quote p {
        font-size: 16px;
    }

    .news-detail-tags,
    .news-detail-share {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .news-detail-navigation {
        padding: 15px 20px;
    }

    .news-detail-date-badge {
        top: 15px;
        right: 15px;
        padding: 10px 15px;
        min-width: 65px;
    }

    .news-detail-date-badge .day {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .news-detail-img {
        height: 220px;
    }

    .news-detail-title {
        font-size: 18px;
    }

    .news-detail-body p {
        font-size: 14px;
    }

    .news-detail-subtitle {
        font-size: 17px;
    }

    .sidebar-widget {
        padding: 20px;
    }
}

/* ====================================
   End News Details Page
   ==================================== */