        @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Tektur:wght@400..900&display=swap');


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;

            font-family: "Tektur", sans-serif;
            font-optical-sizing: auto;
            font-weight: 300;
            font-style: normal;

        }


        body {
            background-color: rgb(35, 37, 52);
            /* қара фон */
            color: rgb(255, 255, 255);
            /* мәтін ақ */
        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 50px;
            width: 100%;
            height: 12vh;
            background-color: #0f1316;

        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;


        }

        .bmw-logo {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #0066cc;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 16px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .nav-menu li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-menu li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: #0066cc;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-menu li a:hover::after {
            width: 100%;
        }

        .nav-menu li a:hover {
            color: #0066cc;
            transform: translateY(-2px);
        }

        .auth-buttons {
            display: flex;
            gap: 15px;
        }

        .btn {
            padding: 12px 25px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: #0066cc;
            color: white;
            box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
        }

        .btn-primary:hover {
            background: #0052a3;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 102, 204, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

        .btn-secondary:hover {
            border-color: white;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        /* Бургер кнопкасы (әр уақытта көрсетілмейді) */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            flex-direction: column;
            width: 30px;
            height: 30px;
            justify-content: space-around;
            align-items: center;
            z-index: 1000;
        }

        .burger-line {
            width: 25px;
            height: 3px;
            background: white;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle.active .burger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-toggle.active .burger-line:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active .burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        .offers-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Offer Cards */



        .hero-section {
            height: 80vh;
            position: relative;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .background-video {

            position: absolute;
            top: 0;
            left: 0;

            object-position: bottom;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;


        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: -1;
            object-position: bottom;

        }

        .hero-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
        }

        .hero-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
        }

        .hero-title {
            width: 50%;
            font-size: 5rem;
            font-weight: bold;
            color: white;
            margin-bottom: 40px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
        }



        .offers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 100px;
        }

        .offer-card {
            background: linear-gradient(145deg, #111418, #1e1c23);
            border-radius: 20px;
            padding: 20px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid #333;
            transition: all 0.4s ease;
            box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
        }


        .car-image {
            width: 100%;
            height: 260px;
            margin: 0px auto;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
        }

        .bmw-x1 {
            background-image: url('images/first-removebg-preview.png');
        }

        .bmw-5series {
            background-image: url('images/second-removebg-preview.png');
        }

        .bmw-3series {
            background-image: url('images/third-removebg-preview.png');
        }

        .model-name {
            font-size: 2.5rem;
            font-weight: normal;
            margin-bottom: 15px;
            color: #ffffff;
            margin-top: 0px;
        }

        .price {
            font-size: 2rem;
            font-weight: bold;
            color: #4a90e2;
            margin-bottom: 10px;
        }

        .price-detail {
            font-size: 1.1rem;
            color: #aaa;
            margin-bottom: 20px;
        }

        .learn-more-btn {
            background-color: transparent;
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: normal;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 1px solid white;
        }

        .learn-more-btn:hover {
            background: linear-gradient(45deg, #357abd, #2a5f8f);
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
        }


        .offers-grid {
            grid-template-columns: 1fr 1fr 1fr;
            gap: 30px;
            width: 86%;
            margin: auto;
            margin-top: 50px;
        }



        .offer-card {
            border-radius: 10px;
            width: 100%;
            height: 90vh;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
        }

        .main-title {
            margin-top: 50px;
            font-size: 3rem;
            font-weight: normal;
            text-align: center;
            margin-bottom: 50px;
            letter-spacing: 2px;
            color: rgb(194, 63, 63);
            text-shadow: 0px 0px 10px;
        }

        .countdown-section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 50px 30px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 40px;
        }

        .countdown-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 40px;
            color: #ffffff;
        }

        .countdown-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .time-unit {
            background: linear-gradient(145deg, #333, #1a1a1a);
            border-radius: 15px;
            padding: 25px 20px;
            min-width: 120px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .time-number {
            font-size: 3.5rem;
            font-weight: bold;
            color: #ffffff;
            line-height: 1;
            margin-bottom: 10px;
        }

        .time-label {
            font-size: 1.1rem;
            color: #cccccc;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .bmw-section {
            text-align: center;
            margin-top: 60px;
        }

        .bmw-title {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .bmw-subtitle {
            font-size: 1.2rem;
            color: #cccccc;
            margin-bottom: 40px;
        }

        @media (max-width: 768px) {
            .main-title {
                font-size: 2.5rem;
            }

            .countdown-title {
                font-size: 2rem;
            }

            .time-number {
                font-size: 2.5rem;
            }

            .countdown-container {
                gap: 15px;
            }

            .time-unit {
                min-width: 80px;
                padding: 20px 15px;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 15px 20px;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(0, 0, 0, 0.9);
                flex-direction: column;
                padding: 20px 0;
                backdrop-filter: blur(10px);
                z-index: 999;
                animation: fadeIn 0.3s ease;
            }

            @keyframes fadeIn {
                from {
                    opacity: 0;
                    transform: translateY(-20px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu li {
                margin: 10px 0;
                text-align: center;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .auth-buttons {
                display: none;
            }
        }


        .footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
            color: white;
            padding: 50px 0 30px;
            margin-top: 50px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 200px;
            padding: 0 20px;
        }

        .footer-section h3 {
            color: #0066cc;
            font-size: 1.4rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #0066cc;
        }

        .footer-section p {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: #0066cc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: #0052a3;
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid #444;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: #999;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: start;
            gap: 10px;
            margin-bottom: 20px;
            margin: auto;
        }