
        * {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Performance optimizations */
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background-color: var(--card-bg);
        }

        /* Optimize animations */
        .btn, .card, .navbar, .modal {
            will-change: transform;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Skip link for accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 6px;
            background: var(--primary);
            color: white;
            padding: 8px;
            text-decoration: none;
            border-radius: 4px;
            z-index: 1000;
            transition: top 0.3s;
        }

        .skip-link:focus {
            top: 6px;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
        }

        /* Light Mode Variables */
        :root {
            --primary: #1a1a1a;
            --secondary: #e74c3c;
            --accent: #3498db;
            --light: #f5f5f5;
            --dark: #2d3436;
            --border: #e8e8e8;
            --card-bg: #ffffff;
            --text-primary: #1a1a1a;
            --text-secondary: #666;
            --footer-bg: #1a1a1a;
            --footer-text: #ccc;
        }

        /* Dark Mode Variables */
        [data-bs-theme="dark"] {
            --primary: #f8f9fa;
            --secondary: #ff6b6b;
            --accent: #4dabf7;
            --light: #212529;
            --dark: #121416;
            --border: #495057;
            --card-bg: #2d3436;
            --text-primary: #f8f9fa;
            --text-secondary: #adb5bd;
            --footer-bg: #0d1117;
            --footer-text: #adb5bd;
        }

        body {
            color: var(--primary);
            background-color: var(--light);
            overflow-x: hidden;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        /* Breadcrumb */
        .breadcrumb {
            background: var(--card-bg);
            padding: 15px 0;
            margin-bottom: 0;
            transition: background-color 0.3s ease;
        }

        .breadcrumb-item a {
            color: var(--secondary);
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: var(--primary);
        }

        /* Blog Section */
        .blog-listing-section {
            padding: 60px 0;
        }

        .blog-card {
            background: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            margin-bottom: 30px;
            border: 1px solid rgba(0,0,0,0.05);
            cursor: pointer;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
            border-color: var(--secondary);
        }

        .blog-image {
            height: 220px;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }

        .blog-content {
            padding: 25px;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 12px;
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .blog-meta i {
            color: var(--secondary);
        }

        .blog-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .blog-title a {
            color: var(--primary);
            text-decoration: none;
        }

        .blog-title a:hover {
            color: var(--secondary);
        }

        .blog-excerpt {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .read-more {
            color: var(--secondary);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
        }

        .read-more:hover {
            color: var(--accent);
            gap: 8px;
        }

        /* Blog Detail */
        .blog-detail-section {
            padding: 60px 0;
            background: var(--light);
        }

        .blog-detail-card {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
        }

        .blog-detail-image {
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 30px;
            height: 400px;
        }

        .blog-detail-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-detail-title {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--primary);
            line-height: 1.3;
        }

        .blog-detail-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid rgba(0,0,0,0.1);
        }

        .blog-detail-content {
            line-height: 1.8;
            color: var(--text-secondary);
            font-size: 1.05rem;
        }

        .blog-detail-content h3 {
            color: var(--primary);
            margin: 30px 0 15px;
            font-size: 1.5rem;
        }

        .blog-detail-content p {
            margin-bottom: 20px;
        }

        .blog-detail-content ul, .blog-detail-content ol {
            padding-left: 20px;
            margin-bottom: 20px;
        }

        .blog-detail-content li {
            margin-bottom: 10px;
        }

        .back-to-blog {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }

        .back-to-blog:hover {
            color: var(--accent);
            gap: 12px;
        }

        /* Modal untuk Artikel */
        .blog-modal .modal-content {
            border-radius: 16px;
            border: none;
        }

        .blog-modal .modal-header {
            background: linear-gradient(135deg, var(--secondary), #c0392b);
            color: white;
            border-radius: 16px 16px 0 0;
            padding: 25px;
        }

        .blog-modal .modal-body {
            padding: 30px;
            max-height: 70vh;
            overflow-y: auto;
        }

        .btn-cta {
            background: linear-gradient(135deg, var(--secondary), #c0392b);
            color: white;
            border: none;
            font-weight: 700;
            padding: 15px 60px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
            color: white;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .blog-detail-title {
                font-size: 1.8rem;
            }
            
            .blog-detail-card {
                padding: 25px;
            }
            
            .blog-detail-image {
                height: 250px;
            }
        }
      
        

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: var(--card-bg);
            transition: background-color 0.3s ease;
        }

        .accordion-button {
            font-weight: 600;
            padding: 20px;
            border: none;
            background: var(--light);
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .accordion-button:not(.collapsed) {
            background: var(--secondary);
            color: white;
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--secondary);
        }

        .accordion-body {
            background: var(--light);
            color: var(--primary);
            transition: all 0.3s ease;
        }

        /* SEO Content Section */
        .seo-content {
            padding: 60px 0;
            background: var(--light);
            transition: background-color 0.3s ease;
        }

        .seo-content h2 {
            color: var(--primary);
            margin-bottom: 30px;
            font-size: 2.2rem;
        }

        .seo-content h3 {
            color: var(--secondary);
            margin: 25px 0 15px;
            font-size: 1.5rem;
        }

        .seo-content p {
            line-height: 1.8;
            margin-bottom: 15px;
            color: var(--text-secondary);
        }

        .seo-content ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }

        .seo-content li {
            margin-bottom: 8px;
            line-height: 1.6;
            color: var(--text-secondary);
        }

        /* ===================== NAVBAR STYLING ===================== */
        .navbar {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        [data-bs-theme="dark"] .navbar {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 52, 54, 0.95) 100%);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        /* Scrolled navbar styling */
        .navbar-scrolled {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%) !important;
            backdrop-filter: blur(20px) !important;
            -webkit-backdrop-filter: blur(20px) !important;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
            padding: 8px 0 !important;
        }

        [data-bs-theme="dark"] .navbar-scrolled {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(45, 52, 54, 0.98) 100%) !important;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary) !important;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .navbar-brand:hover {
            color: var(--secondary) !important;
        }

        .navbar-brand span {
            color: var(--secondary);
        }

        .nav-link {
            color: var(--primary) !important;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            margin: 0 8px;
            padding: 8px 0 !important;
        }

        .nav-link:hover {
            color: var(--secondary) !important;
        }

        .nav-link.active {
            color: var(--secondary) !important;
            font-weight: 600;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(135deg, var(--secondary), #c0392b);
            border-radius: 3px;
        }

        .dropdown-menu {
            border: none;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
            border-radius: 12px;
            margin-top: 10px;
            padding: 12px 0;
            background: var(--card-bg);
            transition: all 0.3s ease;
        }

        .dropdown-item {
            padding: 12px 20px;
            font-size: 0.9rem;
            transition: all 0.2s ease;
            border-left: 3px solid transparent;
            color: var(--primary);
        }

        .dropdown-item:hover {
            background-color: var(--light);
            color: var(--secondary);
            border-left-color: var(--secondary);
            padding-left: 23px;
        }

        /* Navbar Icons */
        .navbar-icons {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-left: auto;
        }

        .icon-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--light);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1rem;
            position: relative;
        }

        .icon-btn:hover {
            background: linear-gradient(135deg, var(--secondary), #c0392b);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(231, 76, 60, 0.3);
        }

        [data-bs-theme="dark"] .icon-btn:hover {
            box-shadow: 0 6px 15px rgba(255, 107, 107, 0.3);
        }

        .badge-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--accent);
            color: white;
            border-radius: 50%;
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            border: 2px solid var(--card-bg);
        }

        .btn-navbar {
            background: linear-gradient(135deg, var(--secondary), #c0392b);
            color: white;
            border: none;
            font-weight: 600;
            padding: 10px 26px;
            border-radius: 25px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .btn-navbar:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
            color: white;
        }

        [data-bs-theme="dark"] .btn-navbar {
            background: linear-gradient(135deg, #ff6b6b, #c0392b);
        }

        [data-bs-theme="dark"] .btn-navbar:hover {
            box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
        }

        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.75rem;
            color: var(--primary);
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231a1a1a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        [data-bs-theme="dark"] .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23f8f9fa' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Mobile navbar */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--card-bg);
                margin-top: 15px;
                padding: 15px 0;
                border-top: 2px solid var(--border);
                border-radius: 12px;
                margin-left: -15px;
                margin-right: -15px;
                padding-left: 15px;
                padding-right: 15px;
                transition: all 0.3s ease;
            }

            .nav-link {
                margin: 0;
                padding: 10px 0 !important;
                border-bottom: 1px solid var(--border);
            }

            .nav-link:last-child {
                border-bottom: none;
            }

            .navbar-icons {
                flex-wrap: wrap;
                margin-top: 15px;
                margin-left: 0;
            }

            .icon-btn {
                width: 38px;
                height: 38px;
                font-size: 0.9rem;
            }

            .btn-navbar {
                width: 100%;
                justify-content: center;
                margin-top: 12px;
            }
        }

        /* Mobile Icons Bar */
        .mobile-icons-bar {
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        [data-bs-theme="dark"] .mobile-icons-bar {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 52, 54, 0.95) 100%);
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        /* ===================== HERO SECTION ===================== */
        .hero-section {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(45, 52, 54, 0.85) 100%),
                        url('assets/image1.jpeg') center/cover;
            background-attachment: fixed;
            color: white;
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
            min-height: 500px;
            display: flex;
            align-items: center;
        }

        [data-bs-theme="dark"] .hero-section {
            background: linear-gradient(135deg, rgba(18, 20, 22, 0.85) 0%, rgba(33, 37, 41, 0.85) 100%),
                        url('assets/image1.jpeg') center/cover;
        }

        [data-bs-theme="light"] .hero-section {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(248, 249, 250, 0.4) 100%),
                        url('assets/image1.jpeg') center/cover;
            color: #1a1a1a;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        [data-bs-theme="dark"] .hero-section::before {
            background: radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(77, 171, 247, 0.1) 0%, transparent 50%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-section h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-section p {
            font-size: 1.3rem;
            margin-bottom: 35px;
            opacity: 0.98;
            line-height: 1.6;
        }

        .btn-cta {
            background: linear-gradient(135deg, var(--secondary), #c0392b);
            color: white;
            border: none;
            font-weight: 700;
            padding: 16px 60px;
            border-radius: 50px;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
        }

        [data-bs-theme="dark"] .btn-cta {
            background: linear-gradient(135deg, #ff6b6b, #c0392b);
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
        }

        .btn-cta:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
            color: white;
        }

        [data-bs-theme="dark"] .btn-cta:hover {
            box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
                min-height: 400px;
            }

            .hero-section h1 {
                font-size: 2rem;
            }

            .hero-section p {
                font-size: 1rem;
            }

            .btn-cta {
                padding: 10px 25px;
                font-size: 0.9rem;
            }
        }

        /* ===================== FEATURES SECTION ===================== */
        .features-section {
            padding: 100px 0;
            background: var(--card-bg);
            transition: background-color 0.3s ease;
        }

        .section-title {
            font-size: 2.8rem;
            margin-bottom: 60px;
            text-align: center;
            color: var(--primary);
            position: relative;
            padding-bottom: 20px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, var(--secondary), #c0392b);
            border-radius: 2px;
        }

        .feature-card {
            text-align: center;
            padding: 35px;
            border-radius: 16px;
            transition: all 0.3s ease;
            background: var(--card-bg);
            border: 1px solid var(--border);
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
            border-color: var(--secondary);
        }

        [data-bs-theme="dark"] .feature-card:hover {
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
        }

        .feature-icon {
            font-size: 3.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
            display: inline-flex;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(192, 57, 43, 0.1) 100%);
            border-radius: 16px;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        [data-bs-theme="dark"] .feature-icon {
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(192, 57, 43, 0.1) 100%);
        }

        .feature-card h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .feature-card p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* ===================== CATEGORIES SECTION ===================== */
        .categories-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--light) 0%, var(--card-bg) 100%);
            transition: background 0.3s ease;
        }

        .cars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .car-card {
            background: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            border: 2px solid transparent;
        }

        [data-bs-theme="dark"] .car-card {
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }

        .car-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
            border-color: var(--secondary);
        }

        [data-bs-theme="dark"] .car-card:hover {
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
        }

        .car-image {
            position: relative;
            height: 250px;
            overflow: hidden;
            background: var(--light);
        }

        .car-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .car-card:hover .car-image img {
            transform: scale(1.12);
        }

        .car-actions {
            position: absolute;
            top: 10px;
            right: 10px;
            display: flex;
            gap: 8px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .car-card:hover .car-actions {
            opacity: 1;
        }

        .action-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .action-btn.wishlist {
            background: var(--accent);
            color: white;
        }

        .action-btn.wishlist:hover {
            background: #2980b9;
            transform: scale(1.1);
        }

        .action-btn.wishlist.active {
            background: #2980b9;
        }

        .badge-premio {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(135deg, var(--secondary), #c0392b);
            color: white;
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 700;
            box-shadow: 0 6px 15px rgba(231, 76, 60, 0.3);
            z-index: 2;
        }

        [data-bs-theme="dark"] .badge-premio {
            background: linear-gradient(135deg, #ff6b6b, #c0392b);
        }

        .car-info {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .car-name {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .car-name .badge-new {
            background: var(--accent);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
        }

        .car-specs {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--border);
            font-size: 0.9rem;
        }

        .car-spec-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-secondary);
        }

        .car-spec-item i {
            color: var(--secondary);
            font-size: 1.1rem;
        }

        .car-description {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .feature-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .feature-badge {
            background: rgba(52, 152, 219, 0.1);
            color: var(--accent);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .car-price {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 18px;
            display: flex;
            align-items: baseline;
            gap: 6px;
        }

        .car-price small {
            font-size: 0.75rem;
            color: var(--text-secondary);
            font-weight: 600;
        }

        .driver-info {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            padding: 12px;
            background: rgba(52, 152, 219, 0.05);
            border-radius: 10px;
            border-left: 4px solid var(--accent);
        }

        .driver-info i {
            color: var(--accent);
            font-size: 1.2rem;
        }

        .driver-info span {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .btn-book {
            width: 100%;
            background: linear-gradient(135deg, var(--secondary), #c0392b);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 10px;
            font-weight: 700;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            margin-top: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        [data-bs-theme="dark"] .btn-book {
            background: linear-gradient(135deg, #ff6b6b, #c0392b);
        }

        .btn-book:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
            color: white;
        }

        [data-bs-theme="dark"] .btn-book:hover {
            box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
        }

        /* ===================== STATS SECTION ===================== */
        .stats-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d3436 100%);
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        [data-bs-theme="dark"] .stats-section {
            background: linear-gradient(135deg, #121416 0%, #1a1a1a 100%);
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(231, 76, 60, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(52, 152, 219, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        [data-bs-theme="dark"] .stats-section::before {
            background: radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(77, 171, 247, 0.08) 0%, transparent 50%);
        }

        .stat-item {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.15rem;
            opacity: 0.95;
            letter-spacing: 0.3px;
        }

        /* ===================== TESTIMONIALS SECTION ===================== */
        .testimonials-section {
            padding: 100px 0;
            background: var(--light);
            transition: background-color 0.3s ease;
        }

        .testimonial-card {
            background: var(--card-bg);
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 20px;
            transition: all 0.3s ease;
            border-left: 4px solid var(--secondary);
        }

        [data-bs-theme="dark"] .testimonial-card {
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }

        .testimonial-card:hover {
            transform: translateX(10px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        }

        [data-bs-theme="dark"] .testimonial-card:hover {
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
        }

        .testimonial-rating {
            color: var(--secondary);
            margin-bottom: 15px;
            font-size: 1.1rem;
            letter-spacing: 2px;
        }

        .testimonial-text {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 18px;
            font-size: 0.95rem;
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--primary);
            font-size: 0.95rem;
        }

        /* ===================== FOOTER ===================== */
        footer {
            background: var(--footer-bg);
            color: var(--footer-text);
            padding: 60px 0 20px;
            transition: all 0.3s ease;
        }

        footer h5 {
            font-size: 1.2rem;
            margin-bottom: 25px;
            color: white;
            font-weight: 700;
        }

        footer a {
            color: var(--footer-text);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            line-height: 2;
        }

        footer a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

        footer p {
            color: var(--footer-text);
            font-size: 0.9rem;
            line-height: 1.8;
            margin-bottom: 12px;
        }

        .footer-divider {
            border-top: 1px solid var(--border);
            margin-top: 40px;
            padding-top: 25px;
            text-align: center;
            color: var(--text-secondary);
            font-size: 0.85rem;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(231, 76, 60, 0.1);
            border-radius: 50%;
            color: var(--secondary);
            margin-right: 12px;
            transition: all 0.3s ease;
        }

        [data-bs-theme="dark"] .social-links a {
            background: rgba(255, 107, 107, 0.1);
        }

        .social-links a:hover {
            background: var(--secondary);
            color: white;
            transform: translateY(-3px);
        }

        /* ===================== MODALS ===================== */
        .modal-content {
            border: none;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            background: var(--card-bg);
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .modal-header {
            background: linear-gradient(135deg, var(--secondary), #c0392b);
            color: white;
            border: none;
            border-radius: 16px 16px 0 0;
            padding: 25px;
        }

        [data-bs-theme="dark"] .modal-header {
            background: linear-gradient(135deg, #ff6b6b, #c0392b);
        }

        .modal-title {
            font-weight: 700;
            font-size: 1.3rem;
        }

        .btn-close-white {
            filter: brightness(0) invert(1);
        }

        [data-bs-theme="dark"] .btn-close {
            filter: brightness(0) invert(1);
        }

 
        [data-bs-theme="dark"] .alert-warning {
            background-color: #332701;
            border-color: #664d03;
            color: #ffc107;
        }

        [data-bs-theme="dark"] .alert-info {
            background-color: #032830;
            border-color: #055160;
            color: #0dcaf0;
        }


        @media (max-width: 768px) {
            .cars-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                gap: 20px;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .feature-icon {
                width: 70px;
                height: 70px;
                font-size: 3rem;
            }
        }

        @media (max-width: 480px) {
            .cars-grid {
                grid-template-columns: 1fr;
            }

            .hero-section h1 {
                font-size: 1.8rem;
            }

            .hero-section p {
                font-size: 1rem;
            }

            .feature-card,
            .testimonial-card {
                padding: 20px;
            }

            .navbar-brand {
                font-size: 1.2rem;
            }
        }

        /* Blog Page Link */
        .blog-page-link {
            text-align: center;
            margin-top: 40px;
        }

        .blog-page-link .btn {
            padding: 12px 30px;
            font-size: 1rem;
            border-radius: 10px;
        }
        /* ===================== CAR DETAIL MODAL ===================== */
.car-detail-modal .modal-dialog {
    max-width: 1000px;
}

.car-detail-modal .modal-body {
    padding: 0;
}

.car-detail-gallery {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: var(--light);
}

.car-detail-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-detail-slider {
    display: flex;
    transition: transform 0.3s ease;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.slider-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.5);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-nav button:hover {
    background: rgba(231, 76, 60, 0.8);
}

.gallery-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.gallery-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dots span.active {
    background: var(--secondary);
    transform: scale(1.2);
}

.car-detail-content {
    padding: 30px;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.detail-title h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.detail-title .badge-year {
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.detail-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    text-align: right;
}

.detail-price small {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: block;
    font-weight: normal;
}

.detail-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border);
}

.detail-spec-item {
    text-align: center;
    padding: 15px;
    background: var(--light);
    border-radius: 10px;
}

.detail-spec-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.detail-spec-item span {
    display: block;
    font-weight: 600;
    color: var(--primary);
}

.detail-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
}

.detail-features h4,
.detail-include h4,
.detail-video h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.feature-item i {
    color: var(--secondary);
    width: 20px;
}

.include-list {
    background: rgba(52, 152, 219, 0.05);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    margin-bottom: 25px;
}

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

.include-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.include-list li i {
    color: var(--secondary);
}

.video-container {
    width: 100%;
    height: 200px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    margin-bottom: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-container:hover {
    background: var(--border);
}

.video-container i {
    font-size: 3rem;
    margin-right: 15px;
}

.detail-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.detail-actions .btn-book {
    flex: 1;
}

.detail-actions .btn-wishlist {
    background: var(--accent);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.detail-actions .btn-wishlist:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.detail-actions .btn-wishlist.active {
    background: #2980b9;
}

@media (max-width: 768px) {
    .car-detail-gallery {
        height: 250px;
    }
    
    .detail-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .detail-price {
        text-align: left;
        width: 100%;
    }
    
    .detail-specs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .detail-actions {
        flex-direction: column;
    }
    
    .detail-title h3 {
        font-size: 1.5rem;
    }
}
/* ========== CAR DETAIL MODAL ========== */
.car-detail-modal .modal-dialog {
    max-width: 1000px;
}

.car-detail-modal .modal-body {
    padding: 0;
}

.car-detail-gallery {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: var(--light);
}

.car-detail-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-detail-slider {
    display: flex;
    transition: transform 0.3s ease;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.slider-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.5);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-nav button:hover {
    background: rgba(231, 76, 60, 0.8);
}

.gallery-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.gallery-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dots span.active {
    background: var(--secondary);
    transform: scale(1.2);
}

.car-detail-content {
    padding: 30px;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.detail-title h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.detail-title .badge-year {
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.detail-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    text-align: right;
}

.detail-price small {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: block;
    font-weight: normal;
}

.detail-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border);
}

.detail-spec-item {
    text-align: center;
    padding: 15px;
    background: var(--light);
    border-radius: 10px;
}

.detail-spec-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.detail-spec-item span {
    display: block;
    font-weight: 600;
    color: var(--primary);
}

.detail-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
}

.detail-features h4,
.detail-include h4,
.detail-video h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.feature-item i {
    color: var(--secondary);
    width: 20px;
}

.include-list {
    background: rgba(52, 152, 219, 0.05);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    margin-bottom: 25px;
}

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

.include-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.include-list li i {
    color: var(--secondary);
}

.video-container {
    width: 100%;
    height: 200px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    margin-bottom: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-container:hover {
    background: var(--border);
}

.video-container i {
    font-size: 3rem;
    margin-right: 15px;
}

.detail-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.detail-actions .btn-book {
    flex: 1;
}

.detail-actions .btn-wishlist {
    background: var(--accent);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.detail-actions .btn-wishlist:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.detail-actions .btn-wishlist.active {
    background: #2980b9;
}

@media (max-width: 768px) {
    .car-detail-gallery {
        height: 250px;
    }
    
    .detail-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .detail-price {
        text-align: left;
        width: 100%;
    }
    
    .detail-specs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .detail-actions {
        flex-direction: column;
    }
    
    .detail-title h3 {
        font-size: 1.5rem;
    }
}
/* Video Section Styling */
.detail-video {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.detail-video h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.video-tour-container {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.video-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.video-wrapper video {
    display: block;
    background: #000;
    border-radius: 8px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.8);
}

.video-overlay i {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 10px;
    opacity: 0.9;
}

.video-text {
    color: #fff;
    font-size: 1rem;
    text-align: center;
    margin: 0;
}

.video-caption {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
}

/* Blog Navigation Styles */
.blog-navigation {
    margin-top: 40px;
    padding: 30px 0;
    border-top: 1px solid var(--border);
}

.blog-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-navigation .post-navigation {
    display: flex;
    gap: 15px;
}

.blog-navigation .btn {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
}

.blog-navigation .btn-outline-primary {
    color: var(--accent);
    border-color: var(--accent);
}

.blog-navigation .btn-outline-primary:hover {
    background-color: var(--accent);
    color: white;
}

.blog-navigation .btn-outline-secondary {
    color: var(--text-secondary);
    border-color: var(--border);
}

.blog-navigation .btn-outline-secondary:hover {
    background-color: var(--text-secondary);
    color: white;
}

.blog-navigation .btn-outline-secondary.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.blog-navigation .btn-outline-secondary.disabled:hover {
    background-color: transparent;
    color: var(--text-secondary);
}

/* Responsive Blog Navigation */
@media (max-width: 768px) {
    .blog-navigation .nav-links {
        flex-direction: column;
        align-items: stretch;
    }
    
    .blog-navigation .post-navigation {
        justify-content: center;
    }
}

