 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

        

        .specials-section {
            background-color: #2c2f33;
            padding: 60px 20px;
            color: #f5f5f5;
            
        }

        .section-top-text-1 {
            color: #fff !important;
        }

        .text-white {
            color: #fff !important;
        } 

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            margin: 0;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background-color: #ff9900;
            margin-top: 5px;
        }

        .all-specials-link {
            text-decoration: none;
            color: #8a8e91;
            font-size: 14px;
            font-weight: 500;
            padding: 8px 15px;
            border: 1px solid #4a4d50;
            border-radius: 20px;
            transition: color 0.3s, border-color 0.3s;
        }

        .all-specials-link:hover {
            color: #fff;
            border-color: #fff;
        }

        .cards-container {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }

        .special-card {
            background-color: #383b3f;
            border-radius: 8px;
            overflow: hidden;
            width: 100%;
            max-width: 360px;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .card-image-container {
            position: relative;
            overflow: hidden;
            height: 200px;
        }

        .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .special-card:hover .card-image {
            transform: scale(1.05);
        }

        .special-ribbon {
            position: absolute;
            top: 15px;
            left: -30px;
            background-color: #ff5100;
            color: #fff;
            padding: 5px 30px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            transform: rotate(-45deg);
            z-index: 10;
        }

        .card-content {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .card-title-price {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .card-title {
            font-size: 18px;
            font-weight: 600;
            color: #fff;
            margin: 0;
            flex-grow: 1;
            margin-right: 10px;
        }

        .price-container {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            line-height: 1;
        }

        .original-price {
            text-decoration: line-through;
            font-size: 14px;
            color: #8a8e91;
        }

        .sale-price {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
        }

        .limited-offer {
            font-size: 12px;
            color: #ff9900;
            font-weight: 500;
            margin-top: -10px;
            margin-bottom: 15px;
        }

        .specs-row {
            display: flex;
            gap: 15px;
            justify-content: space-between;
            border-top: 1px solid #4a4d50;
            padding-top: 15px;
            margin-top: auto;
        }

        .spec-item {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
            color: #8a8e91;
        }

        .spec-icon {
            
            display: flex;
            align-items: center;
            justify-content: center;
            width: 18px;
            height: 18px;
        }

        .spec-icon img {
            width: 100%;
            height: 100%;
        }
        
        .spec-item:nth-child(2) {
            margin-left: auto;
        }
        
        .spec-item.mileage {
            margin-right: 15px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            .cards-container {
                flex-direction: column;
                align-items: center;
            }
        }

        #footer-7-darkbg {
            background-color: var(--footer-dark-bg-color);
            color: var(--secondary-text-light);
            padding: 60px 0 0 0;
            font-size: 15px;
        

          .logo {
            text-align: center;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

          .footer-logo {
            max-width: 200px;
            width: 100%;
            margin-bottom: 25px;
        }

          .footer-logo img {
            width: 100%;
            height: auto;
            transition: all 0.3s ease;
        }

          .footer-logo img:hover,
          .footer-logo img:focus {
            opacity: 0.8;
            transform: scale(105%);
        }

          .logo-section {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

          .footer-section {
            margin-bottom: 20px;
        }

          .footer-section h3 {
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 700;
            color: var(--text-color-light);
        }

          .footer-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

          .footer-section li {
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }

          .footer-section li:hover,
          .footer-section li:focus {
            color: var(--secondary-color);
            
            transform: translateY(-2px);
            
            outline: none;
        }

          .footer-section li a {
            color: var(--text-color-light);
            text-decoration: none;
            transition: all 0.3s ease;
        }

          .footer-section li a:hover,
          .footer-section li a:focus {
            
            text-decoration: underline;
            transform: translateY(-2px);
            color: var(--secondary-color);
            outline: none;
        }

          .lists {
            display: flex;
            justify-content: space-around;
        }

          .lists i {
            font-size: 10px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

          .footer-section li a:hover i,
          .footer-section li a:focus i {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

          .bottom {
            display: flex;
            margin-top: 5px;
            padding: 10px 0;
            justify-content: space-between;
            border-top: 1px solid white;
            align-items: center;
        }

          .contact {
            display: flex;
            margin-bottom: 10px;
            align-items: center;
            font-size: 15px;
            transition:  all 0.3s ease;
        }

          .contact:hover {
            
            transform: translateY(-3px);
        }

          .contact a {
            text-decoration: none;
            color: var(--text-color-light);
            font-size: 15px;
            transition: all 0.3s ease;
        }

          .contact p {
            margin: 0;
            color: var(--text-color-light);
            width: 80%;
            font-size: 15px;
        }

          .contacts i {
            background-color: var(--secondary-color);
            margin-right: 10px;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 14px;
            transition: all 0.3s ease;
            color: #fff;
        }

          .contact a:hover i,
          .contact a:focus i {
            transform: translateY(-2px);
            
        }

          .contact a:hover,
          .contact a:focus {
            color: #f8f9fa;
            transform: translateY(-2px);
            
            text-decoration: none;
            outline: none;
        }

          .contact a:hover p,
          .contact a:focus p {
            text-decoration: underline;
        }

          .social-icons {
            text-align: center;
            display: flex;
            gap: 10px;
        }

          .social-icons a {
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

          .social-icons a i {
            color: #fff;
            background-color: #ffffff17;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 14px;
            transition: all 0.3s ease;
        }

          .social-icons a:hover i,
          .social-icons a:focus i {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

          .social-icons a:hover,
          .social-icons a:focus {
            transform: translateY(-2px);
            
            outline: none;
        }

          .copyright {
            text-align: center;
            font-size: 13px;
        }

        @media (max-width: 991px) {
              .col-lg-4 {
                margin-bottom: 0;
            }

              .col-lg-4 p, h3 {
                margin: 0 auto;
                text-align: center;
            }

              .social-icons {
                display: flex;
                justify-content: center;
            }

              .lists {
                justify-content: space-around;
            }

              .contact {
                flex-direction: column;
                gap: 10px;
                justify-content: center;
            }

              .bottom {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

              .footer-bottom {
                padding-top: 20px;
                margin-top: 20px;
            }
        }

        @media (max-width: 576px) {
              .col-lg-4 {
                margin-bottom: 15px;
            }

              .footer-logo {
                max-width: 150px;
                margin: 0 auto 20px;
            }

              .footer-section h3 {
                margin-bottom: 15px;
                font-size: 18px;
            }

              .footer-section li {
                margin-bottom: 8px;
            }

              .copyright {
                font-size: 11px;
            }

              .social-icons a i,
              .contacts i {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }

              .lists {
                gap: 15px;
            }
        }

        /* Accessibility for reduced motion */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        }