        #logo {
            margin-bottom: 0px;
            width: 120px;
            padding: 0;
            text-align: center;
            transition: opacity 0.3s ease;
        }

        #logo:hover {
            opacity: 0.85;
        }

        /* ===== Modern Navbar Styles ===== */
        .modern-navbar {
            position: sticky !important;
            top: 0;
            z-index: 1050;
            background: rgba(27, 27, 27, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 0;
            transition: all 0.3s ease;
        }

        .modern-navbar.scrolled {
            background: rgba(27, 27, 27, 0.98);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .navbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
        }

        /* Logo */
        .navbar-brand-wrapper {
            flex-shrink: 0;
        }

        /* Navigation Links */
        .nav-links-wrapper {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-link-item {
            position: relative;
            padding: 10px 18px;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.3px;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-link-item i {
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .nav-link-item:hover {
            color: #fff;
            background: rgba(245, 183, 84, 0.1);
        }

        .nav-link-item:hover i {
            color: #fff;
        }

        .nav-link-item.active {
            color: #f5b754;
            background: rgba(245, 183, 84, 0.15);
        }

        .nav-link-item.active::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 20px;
            height: 3px;
            background: #f5b754;
            border-radius: 3px;
        }

        /* Language Switcher */
        .lang-switcher {
            position: relative;
            margin-left: 10px;
        }

        .lang-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .lang-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(245, 183, 84, 0.3);
        }

        .lang-btn i {
            font-size: 14px;
        }

        .lang-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            min-width: 150px;
            background: #252525;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 8px;
            opacity: 0;
            visibility: hidden;
            transition:
                opacity 0.3s ease,
                visibility 0.3s ease;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        }

        .lang-switcher:hover .lang-dropdown {
            opacity: 1;
            visibility: visible;
        }

        .lang-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 13px;
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .lang-option:hover {
            background: rgba(245, 183, 84, 0.15);
            color: #f5b754;
        }

        .lang-option i {
            font-size: 18px;
        }

        /* CTA Button */
        .navbar-cta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-left: 20px;
        }

        .btn-navbar-login {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: linear-gradient(135deg, #f5b754 0%, #e5a544 100%);
            color: #1b1b1b;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(245, 183, 84, 0.3);
        }

        .btn-navbar-login:hover {
            background: linear-gradient(135deg, #ffcc70 0%, #f5b754 100%);
            box-shadow: 0 4px 20px rgba(245, 183, 84, 0.5);
            color: #1b1b1b;
        }

        .btn-navbar-login i {
            font-size: 14px;
        }

        .btn-navbar-user {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 16px;
            background: rgba(245, 183, 84, 0.15);
            border: 1px solid rgba(245, 183, 84, 0.3);
            color: #f5b754;
            font-size: 13px;
            font-weight: 500;
            text-decoration: none;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .btn-navbar-user:hover {
            background: rgba(245, 183, 84, 0.25);
            color: #f5b754;
        }

        .user-avatar {
            width: 32px;
            height: 32px;
            background: #f5b754;
            color: #1b1b1b;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
        }

        /* Mobile Toggle */
        .mobile-toggle {
            display: none;
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: #fff;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .mobile-toggle:hover {
            background: rgba(245, 183, 84, 0.15);
            border-color: rgba(245, 183, 84, 0.3);
            color: #f5b754;
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(27, 27, 27, 0.98);
            backdrop-filter: blur(20px);
            z-index: 1100;
            padding: 20px;
            transform: translateX(-100%);
            transition: transform 0.4s ease;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-menu-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-close {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: #fff;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .mobile-close:hover {
            background: rgba(255, 77, 77, 0.15);
            border-color: rgba(255, 77, 77, 0.3);
            color: #ff4d4d;
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .mobile-nav-link {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 16px 20px;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .mobile-nav-link:hover,
        .mobile-nav-link.active {
            background: rgba(245, 183, 84, 0.15);
            color: #f5b754;
        }

        .mobile-nav-link i {
            width: 24px;
            font-size: 18px;
        }

        .mobile-lang-section {
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-lang-title {
            color: rgba(255, 255, 255, 0.5);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            padding-left: 20px;
        }

        .mobile-cta {
            margin-top: 30px;
            padding: 0 20px;
        }

        .mobile-cta .btn-navbar-login {
            width: 100%;
            justify-content: center;
            padding: 16px;
            font-size: 16px;
        }

        /* Responsive */
        @media (max-width: 991px) {

            .nav-links-wrapper,
            .lang-switcher,
            .navbar-cta {
                display: none;
            }

            .mobile-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .mobile-menu {
                display: block;
            }
        }

        @media (min-width: 992px) {
            .mobile-menu {
                display: none !important;
            }
        }

        #orderTrackingInput:focus {
            border-color: #f5b754;
            background-color: #fff;
        }

        .hero-section-title {
            margin-bottom: 60px;
            padding: 40px 0;
        }

        .hero-section-title .section-subtitle {
            font-size: 22px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 25px;
            color: #f5b754;
        }

        .hero-section-title .section-title {
            font-size: 56px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 0;
        }

        .hero-section-title .section-title span {
            display: inline-block;
            color: #f5b754;
            position: relative;
        }

        @media (max-width: 768px) {
            .hero-section-title .section-title {
                font-size: 56px;
            }

            .hero-section-title .section-subtitle {
                font-size: 16px;
            }
        }

        /* Hero Split Section */
        .hero-split-section {
            background: #1b1b1b;
            min-height: 85vh;
            overflow: hidden;
        }

        .hero-content-side {
            display: flex;
            align-items: center;
            padding: 60px 80px;
            background: #1b1b1b;
        }

        .hero-content-wrapper {
            max-width: 600px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(245, 183, 84, 0.15);
            border: 1px solid rgba(245, 183, 84, 0.3);
            padding: 8px 16px;
            border-radius: 50px;
            margin-bottom: 25px;
        }

        .hero-badge .badge-icon {
            color: #f5b754;
            font-size: 14px;
        }

        .hero-badge .badge-text {
            color: #f5b754;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-main-title {
            font-size: 48px;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-main-title .highlight-text {
            color: #f5b754;
            display: block;
        }

        .hero-description {
            font-size: 16px;
            color: #aaa;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .hero-stats {
            display: flex;
            align-items: center;
            gap: 25px;
            margin-bottom: 35px;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            display: block;
            font-size: 28px;
            font-weight: 700;
            color: #f5b754;
        }

        .stat-label {
            font-size: 12px;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .stat-divider {
            width: 1px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
        }

        .hero-actions {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .btn-hero-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #f5b754;
            color: #1b1b1b;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-hero-primary:hover {
            background: #fff;
            color: #1b1b1b;
        }

        .btn-hero-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: #fff;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .btn-hero-secondary:hover {
            border-color: #f5b754;
            color: #f5b754;
        }

        .hero-tracking-form {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .tracking-form-inline {
            display: flex;
            gap: 10px;
        }

        .tracking-input-wrapper {
            flex: 1;
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 0 15px;
        }

        .tracking-input-wrapper i {
            color: #888;
            margin-right: 10px;
        }

        .tracking-input-wrapper input {
            flex: 1;
            background: transparent;
            border: none;
            color: #fff;
            padding: 12px 0;
            font-size: 14px;
        }

        .tracking-input-wrapper input::placeholder {
            color: #666;
        }

        .tracking-input-wrapper input:focus {
            outline: none;
        }

        .tracking-submit-btn {
            background: #f5b754;
            color: #1b1b1b;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tracking-submit-btn:hover {
            background: #fff;
        }

        /* Right Image Side */
        .hero-image-side {
            position: relative;
            min-height: 85vh;
        }

        .hero-image-wrapper {
            position: relative;
            height: 100%;
            overflow: hidden;
        }

        .hero-main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .hero-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, #1b1b1b 0%, transparent 30%);
        }

        /* Floating Cards */
        .floating-card {
            position: absolute;
            bottom: 100px;
            left: -30px;
            background: #fff;
            padding: 15px 20px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .floating-card-2 {
            bottom: auto;
            top: 100px;
            left: auto;
            right: 30px;
        }

        .floating-card-icon {
            width: 45px;
            height: 45px;
            background: rgba(245, 183, 84, 0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .floating-card-icon i {
            color: #f5b754;
            font-size: 20px;
        }

        .floating-card-title {
            display: block;
            font-weight: 700;
            color: #1b1b1b;
            font-size: 14px;
        }

        .floating-card-text {
            font-size: 12px;
            color: #666;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .hero-content-side {
                padding: 40px 30px;
            }

            .hero-main-title {
                font-size: 36px;
            }

            .hero-image-side {
                min-height: 400px;
            }

            .hero-image-overlay {
                background: linear-gradient(to bottom, #1b1b1b 0%, transparent 30%);
            }

            .floating-card {
                left: 20px;
                bottom: 80px;
            }

            .floating-card-2 {
                right: 20px;
                top: 80px;
            }

            .hero-stats {
                gap: 15px;
            }

            .stat-number {
                font-size: 22px;
            }
        }

        @media (max-width: 576px) {
            .hero-main-title {
                font-size: 28px;
            }

            .hero-actions {
                flex-direction: column;
            }

            .btn-hero-primary,
            .btn-hero-secondary {
                justify-content: center;
            }

            .tracking-form-inline {
                flex-direction: column;
            }

            .floating-card,
            .floating-card-2 {
                display: none;
            }
        }

        /* ===== Modern Cars3 Section ===== */
        .cars3-modern {
            background: linear-gradient(180deg, #1b1b1b 0%, #252525 100%);
            padding: 80px 0;
        }

        .cars3-modern .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .cars3-modern .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(245, 183, 84, 0.1);
            border: 1px solid rgba(245, 183, 84, 0.2);
            padding: 8px 16px;
            border-radius: 50px;
            margin-bottom: 20px;
        }

        .cars3-modern .section-tag i {
            color: #f5b754;
            font-size: 14px;
        }

        .cars3-modern .section-tag span {
            color: #f5b754;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cars3-modern .section-title-main {
            font-size: 42px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
        }

        .cars3-modern .section-title-main span {
            color: #f5b754;
        }

        .cars3-modern .section-description {
            color: #888;
            font-size: 16px;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Car Card Modern */
        .car-card-modern {
            background: #252525;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition:
                border-color 0.3s ease,
                box-shadow 0.3s ease;
            cursor: pointer;
        }

        .car-card-modern:hover {
            border-color: rgba(245, 183, 84, 0.3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        }

        .car-card-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

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

        .car-card-modern:hover .car-card-image img {
            opacity: 0.9;
        }

        .car-card-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(245, 183, 84, 0.95);
            color: #1b1b1b;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .car-card-favorite {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 14px;
            transition:
                background 0.3s ease,
                color 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .car-card-favorite:hover {
            background: #f5b754;
            color: #1b1b1b;
        }

        .car-card-content {
            padding: 20px;
        }

        .car-card-title {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .car-card-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .car-card-title a:hover {
            color: #f5b754;
        }

        .car-card-model {
            color: #888;
            font-size: 13px;
            margin-bottom: 15px;
        }

        .car-card-specs {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            margin-bottom: 15px;
        }

        .car-spec-item {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #aaa;
            font-size: 12px;
        }

        .car-spec-item i {
            color: #f5b754;
            font-size: 14px;
        }

        .car-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .car-card-price {
            color: #f5b754;
            font-size: 14px;
            font-weight: 600;
        }

        .car-card-price span {
            color: #666;
            font-size: 12px;
            font-weight: 400;
        }

        .car-card-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(245, 183, 84, 0.15);
            color: #f5b754;
            padding: 8px 14px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
            text-decoration: none;
            transition:
                background 0.3s ease,
                color 0.3s ease;
        }

        .car-card-btn:hover {
            background: #f5b754;
            color: #1b1b1b;
        }

        .car-card-btn i {
            font-size: 10px;
        }

        /* Owl Carousel Custom */
        .cars3-modern .owl-carousel .owl-stage-outer {
            padding: 10px 0;
        }

        .cars3-modern .owl-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .cars3-modern .owl-nav button {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.05) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            border-radius: 10px !important;
            color: #fff !important;
            font-size: 18px !important;
            transition:
                background 0.3s ease,
                border-color 0.3s ease,
                color 0.3s ease !important;
        }

        .cars3-modern .owl-nav button:hover {
            background: rgba(245, 183, 84, 0.15) !important;
            border-color: rgba(245, 183, 84, 0.3) !important;
            color: #f5b754 !important;
        }

        .cars3-modern .owl-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 25px;
        }

        .cars3-modern .owl-dots .owl-dot span {
            width: 8px;
            height: 8px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transition:
                background 0.3s ease,
                width 0.3s ease;
        }

        .cars3-modern .owl-dots .owl-dot.active span {
            background: #f5b754;
            width: 24px;
            border-radius: 4px;
        }

        /* View All Button */
        .view-all-wrapper {
            text-align: center;
            margin-top: 40px;
        }

        .btn-view-all {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            padding: 14px 30px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition:
                background 0.3s ease,
                border-color 0.3s ease,
                color 0.3s ease;
        }

        .btn-view-all:hover {
            background: rgba(245, 183, 84, 0.1);
            border-color: #f5b754;
            color: #f5b754;
        }

        @media (max-width: 768px) {
            .cars3-modern {
                padding: 50px 0;
            }

            .cars3-modern .section-title-main {
                font-size: 28px;
            }

            .car-card-image {
                height: 180px;
            }
        }
        
        /* ===== Modern Services Box ===== */
        .services-box-modern {
            background: #1b1b1b;
            padding: 80px 0;
            position: relative;
        }
        
        .services-box-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(245, 183, 84, 0.3), transparent);
        }
        
        .service-card-modern {
            background: #252525;
            border-radius: 20px;
            padding: 35px 30px;
            height: 100%;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .service-card-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #f5b754, #e5a544);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .service-card-modern:hover {
            border-color: rgba(245, 183, 84, 0.2);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }
        
        .service-card-modern:hover::before {
            opacity: 1;
        }
        
        .service-icon-wrapper {
            width: 70px;
            height: 70px;
            background: rgba(245, 183, 84, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: background 0.3s ease;
        }
        
        .service-card-modern:hover .service-icon-wrapper {
            background: rgba(245, 183, 84, 0.2);
        }
        
        .service-icon-wrapper i {
            font-size: 28px;
            color: #f5b754;
        }
        
        .service-card-modern h4 {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
        }
        
        .service-card-modern p {
            color: #888;
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 0;
        }
        
        .service-number {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 48px;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.03);
            line-height: 1;
        }
        
        @media (max-width: 991px) {
            .service-card-modern {
                margin-bottom: 20px;
            }
        }
        
        /* ===== Cars Secondary Modern ===== */
        .cars-secondary-modern {
            background: linear-gradient(180deg, #252525 0%, #1b1b1b 100%);
            padding: 80px 0;
        }
        
        .cars-secondary-modern .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .cars-secondary-modern .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(245, 183, 84, 0.1);
            border: 1px solid rgba(245, 183, 84, 0.2);
            padding: 8px 16px;
            border-radius: 50px;
            margin-bottom: 20px;
        }
        
        .cars-secondary-modern .section-tag i {
            color: #f5b754;
            font-size: 14px;
        }
        
        .cars-secondary-modern .section-tag span {
            color: #f5b754;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cars-secondary-modern .section-title-main {
            font-size: 42px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
        }
        
        .cars-secondary-modern .section-title-main span {
            color: #f5b754;
        }
        
        .cars-secondary-modern .section-description {
            color: #888;
            font-size: 16px;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Owl Carousel Custom for secondary */
        .cars-secondary-modern .owl-carousel .owl-stage-outer {
            padding: 10px 0;
        }
        
        .cars-secondary-modern .owl-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }
        
        .cars-secondary-modern .owl-nav button {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.05) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            border-radius: 10px !important;
            color: #fff !important;
            font-size: 18px !important;
            transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease !important;
        }
        
        .cars-secondary-modern .owl-nav button:hover {
            background: rgba(245, 183, 84, 0.15) !important;
            border-color: rgba(245, 183, 84, 0.3) !important;
            color: #f5b754 !important;
        }
        
        .cars-secondary-modern .owl-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 25px;
        }
        
        .cars-secondary-modern .owl-dots .owl-dot span {
            width: 8px;
            height: 8px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transition: background 0.3s ease, width 0.3s ease;
        }
        
        .cars-secondary-modern .owl-dots .owl-dot.active span {
            background: #f5b754;
            width: 24px;
            border-radius: 4px;
        }
        
        @media (max-width: 768px) {
            .services-box-modern {
                padding: 50px 0;
            }
            
            .cars-secondary-modern {
                padding: 50px 0;
            }
            
            .cars-secondary-modern .section-title-main {
                font-size: 28px;
            }
        }
        
        /* ===== Modern About Section ===== */
        .about-modern {
            background: #1b1b1b;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .about-modern::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(245, 183, 84, 0.05) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .about-content-wrapper {
            position: relative;
            z-index: 2;
        }
        
        .about-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(245, 183, 84, 0.1);
            border: 1px solid rgba(245, 183, 84, 0.2);
            padding: 10px 20px;
            border-radius: 50px;
            margin-bottom: 25px;
        }
        
        .about-badge i {
            color: #f5b754;
            font-size: 16px;
        }
        
        .about-badge span {
            color: #f5b754;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .about-title {
            font-size: 42px;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 25px;
        }
        
        .about-title span {
            color: #f5b754;
        }
        
        .about-description {
            color: #888;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        .about-features {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 35px;
        }
        
        .about-feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: border-color 0.3s ease, background 0.3s ease;
        }
        
        .about-feature-item:hover {
            border-color: rgba(245, 183, 84, 0.2);
            background: rgba(245, 183, 84, 0.05);
        }
        
        .about-feature-icon {
            width: 45px;
            height: 45px;
            background: rgba(245, 183, 84, 0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .about-feature-icon i {
            color: #f5b754;
            font-size: 18px;
        }
        
        .about-feature-text {
            color: #fff;
            font-size: 15px;
            font-weight: 500;
        }
        
        .btn-about {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #f5b754;
            color: #1b1b1b;
            padding: 14px 30px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }
        
        .btn-about:hover {
            background: #fff;
            color: #1b1b1b;
            box-shadow: 0 10px 30px rgba(245, 183, 84, 0.3);
        }
        
        /* About Image Side */
        .about-image-wrapper {
            position: relative;
        }
        
        .about-main-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }
        
        .about-experience-badge {
            position: absolute;
            bottom: 30px;
            left: -30px;
            background: #f5b754;
            padding: 25px 30px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(245, 183, 84, 0.3);
        }
        
        .about-experience-badge .number {
            display: block;
            font-size: 48px;
            font-weight: 800;
            color: #1b1b1b;
            line-height: 1;
        }
        
        .about-experience-badge .text {
            font-size: 13px;
            font-weight: 600;
            color: #1b1b1b;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .about-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: background 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }
        
        .about-play-btn:hover {
            background: #f5b754;
            box-shadow: 0 15px 50px rgba(245, 183, 84, 0.4);
        }
        
        .about-play-btn i {
            font-size: 24px;
            color: #1b1b1b;
            margin-left: 4px;
        }
        
        @media (max-width: 991px) {
            .about-modern {
                padding: 60px 0;
            }
            
            .about-title {
                font-size: 32px;
            }
            
            .about-image-wrapper {
                margin-top: 50px;
            }
            
            .about-experience-badge {
                left: 20px;
                bottom: 20px;
                padding: 20px;
            }
            
            .about-experience-badge .number {
                font-size: 36px;
            }
        }
        
        /* ===== Modern Services Section ===== */
        .services-modern {
            background: linear-gradient(180deg, #252525 0%, #1b1b1b 100%);
            padding: 100px 0;
        }
        
        .services-modern .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .services-modern .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(245, 183, 84, 0.1);
            border: 1px solid rgba(245, 183, 84, 0.2);
            padding: 8px 16px;
            border-radius: 50px;
            margin-bottom: 20px;
        }
        
        .services-modern .section-tag i {
            color: #f5b754;
            font-size: 14px;
        }
        
        .services-modern .section-tag span {
            color: #f5b754;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .services-modern .section-title-main {
            font-size: 42px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
        }
        
        .services-modern .section-title-main span {
            color: #f5b754;
        }
        
        .services-modern .section-description {
            color: #888;
            font-size: 16px;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Service Card */
        .service-card {
            background: #1b1b1b;
            border-radius: 20px;
            padding: 40px 30px;
            height: 100%;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(245, 183, 84, 0.1) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .service-card:hover {
            border-color: rgba(245, 183, 84, 0.3);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
        }
        
        .service-card:hover::before {
            opacity: 1;
        }
        
        .service-card-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(245, 183, 84, 0.2) 0%, rgba(245, 183, 84, 0.05) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }
        
        .service-card-icon i {
            font-size: 32px;
            color: #f5b754;
        }
        
        .service-card-content {
            position: relative;
            z-index: 1;
        }
        
        .service-card h4 {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
        }
        
        .service-card p {
            color: #888;
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .service-card-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #f5b754;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: gap 0.3s ease;
        }
        
        .service-card-link:hover {
            color: #f5b754;
            gap: 12px;
        }
        
        .service-card-link i {
            font-size: 12px;
        }
        
        @media (max-width: 991px) {
            .services-modern {
                padding: 60px 0;
            }
            
            .services-modern .section-title-main {
                font-size: 32px;
            }
            
            .service-card {
                margin-bottom: 20px;
            }
        }