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

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar .container {
    max-width: none;
    margin: 0;
    padding-right: 40px;
}

.top-bar {
    background: #000;
    padding: 5.5px 0;
}

.language-selector {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.globe-icon {
    width: 16px;
    height: 16px;
    color: #fff;
}

.language-selector select {
    background: #000;
    color: #fff;
    border: 1px solid #fff;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
}

.language-selector select option {
    background: #fff;
    color: #333;
}

.language-selector select option:checked {
    background: #000;
    color: #fff;
}

.navbar {
    background: #2a2a2a;
    padding: 13.5px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.navbar .container {
    margin: 0;
    padding-left: 40px;
    padding-right: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    position: static;
}

.logo {
    margin-left: 0;
    padding-left: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.logo-img {
    height: 20px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 56px;
    justify-content: space-between;
    width: 100%;
    margin-left: 180px;
}

.nav-menu .nav-left {
    display: flex;
    gap: 56px;
}

.nav-menu .nav-right {
    display: flex;
    gap: 56px;
    position: fixed;
    right: 40px;
    top: 55px;
}

.nav-menu a {
    color: #e6e6e6;
    text-decoration: none;
    font-size: 16.5px;
    transition: color 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: #e6e6e6;
    border-bottom: 2px solid #e6e6e6;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 10%;
    left: 5%;
    text-align: left;
    color: #e6e6e6;
    z-index: 2;
}

.slide-content h1 {
    font-size: 45px;
    margin-bottom: 0;
}

.slide-content p {
    font-size: 24px;
    margin-bottom: 50px;
    margin-top: -10px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 2px solid #e6e6e6;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.2);
}

.slider-btn svg {
    width: 32px;
    height: 32px;
    color: #e6e6e6;
}

.slider-btn.prev {
    left: 5%;
}

.slider-btn.next {
    right: 5%;
}

.btn {
    display: inline-block;
    background: #0066cc;
    color: #e6e6e6;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
    font-size: 24px !important;
}

.slide-content .btn {
    background: transparent;
    border: 1.9px solid #e6e6e6;
    color: #e6e6e6;
    transition: all 0.3s;
    padding: 10px 58px;
    border-radius: 0;
    font-size: 17px !important;
    font-weight: 650;
    text-transform: uppercase;
}

.slide-content .btn:hover {
    background: rgba(255,255,255,0.9);
    color: rgba(0,0,0,0.9);
}

.btn:hover {
    background: #0052a3;
}

.btn-outline {
    display: inline-block;
    border: 2px solid #0066cc;
    color: #0066cc;
    padding: 10px 28px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 24px !important;
}

.btn-outline:hover {
    background: #0066cc;
    color: #fff;
}

.models-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.models-section .container {
    max-width: none;
    padding: 0;
}

.models-section h2 {
    text-align: left;
    font-size: 42px;
    margin-bottom: 50px;
    padding-left: 40px;
}

.models-grid {
    display: flex;
    gap: 43px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    cursor: default;
    user-select: none;
}

.model-card * {
    pointer-events: none;
}

.model-card .btn-card {
    pointer-events: auto;
}

.models-grid::-webkit-scrollbar {
    display: none;
}

.models-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow: hidden;
}

.model-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.45s;
    padding: 40px;
    display: flex;
    flex-direction: column;
    min-height: 600px;
    width: 715px;
    flex-shrink: 0;
}

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

.model-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 30px;
}

.model-card .card-image {
    width: 64%;
    height: auto;
    object-fit: contain;
    margin: auto auto 30px auto;
    display: block;
}

.model-card h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.model-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: auto;
    line-height: 1.6;
}

.model-card-buttons {
    display: flex;
    gap: 15px;
    margin-top: auto;
    width: 100%;
}

.model-card .btn-card {
    display: inline-block;
    background: transparent;
    color: #333;
    border: 1.9px solid #333;
    padding: 10px 0;
    text-decoration: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 650;
    text-transform: uppercase;
    transition: all 0.3s;
    text-align: center;
    flex: 1;
    font-family: 'Montserrat', sans-serif;
}

.model-card .btn-card:hover {
    background: #333;
    color: #e6e6e6;
}

.promotions-section {
    padding: 80px 0;
    background: #fff;
}

.promotions-content {
    display: flex;
    align-items: center;
    gap: 0;
}

.promotions-image {
    flex: 0 0 60%;
}

.promotions-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    display: block;
}

.promotions-text {
    flex: 1;
    padding: 0 80px;
}

.promotions-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.promotions-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 75px;
}

.btn-promotions {
    display: inline-block;
    background: transparent;
    color: #333;
    border: 1.9px solid #333;
    padding: 10px 58px;
    text-decoration: none;
    border-radius: 0;
    font-size: 17px;
    font-weight: 650;
    text-transform: uppercase;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.btn-promotions:hover {
    background: #333;
    color: #e6e6e6;
}

.hybrid-section {
    padding: 80px 0;
    background: #fff;
}

.hybrid-content {
    display: flex;
    align-items: center;
    gap: 0;
}

.hybrid-image {
    flex: 0 0 60%;
}

.hybrid-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    display: block;
}

.hybrid-text {
    flex: 1;
    padding: 0 80px;
}

.hybrid-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.hybrid-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 75px;
}

.btn-hybrid {
    display: inline-block;
    background: transparent;
    color: #333;
    border: 1.9px solid #333;
    padding: 10px 58px;
    text-decoration: none;
    border-radius: 0;
    font-size: 17px;
    font-weight: 650;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-hybrid:hover {
    background: #333;
    color: #e6e6e6;
}

.electric-section {
    padding: 80px 0;
    background: #fff;
}

.electric-content {
    display: flex;
    align-items: center;
    gap: 0;
}

.electric-text {
    flex: 1;
    padding: 0 80px;
}

.electric-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.electric-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 75px;
}

.electric-image {
    flex: 0 0 60%;
}

.electric-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    display: block;
}

.btn-electric {
    display: inline-block;
    background: transparent;
    color: #333;
    border: 1.9px solid #333;
    padding: 10px 58px;
    text-decoration: none;
    border-radius: 0;
    font-size: 17px;
    font-weight: 650;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-electric:hover {
    background: #333;
    color: #e6e6e6;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: #e6e6e6;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.footer {
    background: #000;
    color: #e6e6e6;
    padding: 30px 0;
    text-align: center;
}

.page-header {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: #e6e6e6;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
}

.content-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content img {
    width: 100%;
    border-radius: 8px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

.tech-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.tech-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.form-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.test-drive-form, .login-form {
    max-width: 600px;
    margin: 0 auto;
    background: #e6e6e6;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.dealers-grid, .assistance-grid, .buy-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.dealer-card, .assistance-card, .buy-card {
    background: #e6e6e6;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.dealer-card h3, .assistance-card h3, .buy-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.dealer-card p, .assistance-card p, .buy-card p {
    margin-bottom: 10px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #e6e6e6;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .navbar .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .logo-img {
        height: 16px;
    }
    
    .hamburger {
        display: flex;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 102;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: #1f1f1f;
        flex-direction: column;
        gap: 20px;
        margin-left: 0;
        padding: 80px 20px 20px;
        transition: right 0.3s;
        z-index: 101;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu .nav-left,
    .nav-menu .nav-right {
        position: static;
        flex-direction: column;
        gap: 20px;
        margin: 0;
        padding: 0;
        right: auto;
    }
    
    .nav-menu a {
        font-size: 16px;
        padding: 10px 0;
    }
    
    .top-bar .container {
        padding-right: 10px;
    }
    
    .hero {
        height: 60vh;
    }
    
    .slide img {
        object-fit: cover;
        object-position: center;
    }
    
    .slide-content {
        top: 15%;
        left: 5%;
        right: 5%;
    }
    
    .slide-content h1 {
        font-size: 28px;
    }
    
    .slide-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .slide-content .btn {
        font-size: 14px !important;
        padding: 8px 30px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .slider-btn.prev {
        left: 2%;
    }
    
    .slider-btn.next {
        right: 2%;
    }
    
    .promotions-section {
        padding: 40px 0;
    }
    
    .promotions-content {
        flex-direction: column;
    }
    
    .promotions-image {
        flex: 1;
        width: 100%;
    }
    
    .promotions-text {
        padding: 30px 20px;
    }
    
    .promotions-text h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .promotions-text p {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .btn-promotions {
        font-size: 14px;
        padding: 8px 40px;
    }
    
    .models-section {
        padding: 40px 0;
    }
    
    .models-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
        padding-left: 20px;
    }
    
    .models-grid {
        gap: 20px;
        padding-left: 20px;
        padding-right: 20px;
        overflow-x: auto;
    }
    
    .model-card {
        width: 85vw;
        min-height: auto;
        padding: 25px;
    }
    
    .model-card h3 {
        font-size: 24px;
    }
    
    .model-card p {
        font-size: 14px;
    }
    
    .model-card .card-image {
        width: 80%;
        margin-bottom: 20px;
    }
    
    .model-card-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .model-card .btn-card {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .hybrid-section {
        padding: 40px 0;
    }
    
    .hybrid-content {
        flex-direction: column;
    }
    
    .hybrid-image {
        flex: 1;
        width: 100%;
    }
    
    .hybrid-text {
        padding: 30px 20px;
    }
    
    .hybrid-text h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .hybrid-text p {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .btn-hybrid {
        font-size: 14px;
        padding: 8px 40px;
    }
    
    .electric-section {
        padding: 40px 0;
    }
    
    .electric-content {
        flex-direction: column;
    }
    
    .electric-image {
        flex: 1;
        width: 100%;
        order: -1;
    }
    
    .electric-text {
        padding: 30px 20px;
    }
    
    .electric-text h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .electric-text p {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .btn-electric {
        font-size: 14px;
        padding: 8px 40px;
    }
    
    .cta-section {
        padding: 50px 20px;
    }
    
    .cta-section h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .cta-section p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .cta-section .btn {
        font-size: 14px !important;
        padding: 10px 40px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .dealers-grid, .assistance-grid, .buy-options {
        grid-template-columns: 1fr;
    }
}
