/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-gray: #f5f6fa;
    --dark-gray: #2d3436;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-btn {
    background: var(--light-gray);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: var(--primary-color);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: none;
    overflow: hidden;
}

    .lang-dropdown a {
        display: block;
        padding: 8px 16px;
        text-decoration: none;
        color: var(--text-color);
    }

        .lang-dropdown a:hover {
            background: var(--light-gray);
        }

.language-selector:hover .lang-dropdown {
    display: block;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 100;
    padding: 15px 0;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo img {
    height: 40px;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

    .nav-list a {
        text-decoration: none;
        color: var(--primary-color);
        font-weight: 500;
        transition: var(--transition);
    }

        .nav-list a:hover {
            color: var(--secondary-color);
        }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1000;
    position: relative;
}

    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        margin: 5px 0;
        transition: var(--transition);
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .header.menu-open .nav {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        padding: 0;
        margin: 0;
    }

        .nav-list li {
            width: 100%;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

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

        .nav-list a {
            padding: 15px 20px;
            display: block;
            color: var(--primary-color);
        }

            .nav-list a:hover {
                background: var(--light-gray);
            }

    .header-right {
        gap: 15px;
    }

    .header.scrolled {
        padding: 10px 0;
    }

    .header:not(.scrolled) .nav {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(5px);
    }
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Admin Login Button */
.admin-login-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

    .admin-login-btn i {
        font-size: 1.1rem;
    }

    .admin-login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
        background: linear-gradient(135deg, #2980b9, var(--secondary-color));
    }

    .admin-login-btn:active {
        transform: translateY(0);
        box-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
    }

/* Hero Section */
.hero {
    padding-top: 80px;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.swiper-wrapper {
    align-items: center;
}

.hero-slider {
    height: calc(100% - 80px);
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

/* Enhanced Slide Content with Glassmorphism Effect */
.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 60px 40px;
    margin: 0 auto;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease-out;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8),
                 0 0 20px rgba(0, 0, 0, 0.5),
                 0 0 40px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.slide-content p {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8),
                 0 0 10px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.6);
    background: linear-gradient(135deg, #2980b9, var(--secondary-color));
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Enhanced Overlay for better text contrast */
.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 30%,
        rgba(0, 0, 0, 0.1) 60%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
}

/* Alternative overlay for brighter images */
.swiper-slide.bright-image::before {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.2) 70%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .slide-content {
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid rgba(255, 255, 255, 0.8);
    }
    
    .slide-content h1,
    .slide-content p {
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 1),
                     0 0 30px rgba(0, 0, 0, 0.8);
    }
    
    .swiper-slide::before {
        background: rgba(0, 0, 0, 0.5);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .slide-content {
        animation: none;
    }
    
    .cta-button:hover {
        transform: none;
    }
    
    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        transform: none;
    }
}

/* Responsive Design for Slide Content */
@media (max-width: 1200px) {
    .slide-content {
        max-width: 700px;
        padding: 50px 35px;
    }
    
    .slide-content h1 {
        font-size: 3rem;
    }
    
    .slide-content p {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .slide-content {
        max-width: 600px;
        padding: 40px 30px;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 12px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .slide-content {
        max-width: 90%;
        padding: 30px 25px;
        margin: 0 auto;
        border-radius: 15px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .slide-content p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .cta-button {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .slide-content {
        max-width: 95%;
        padding: 25px 20px;
        backdrop-filter: blur(8px);
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8),
                     0 0 15px rgba(0, 0, 0, 0.5);
    }
    
    .slide-content p {
        font-size: 1rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8),
                     0 0 8px rgba(0, 0, 0, 0.5);
    }
    
    .cta-button {
        padding: 8px 25px;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .slide-content {
        padding: 20px 15px;
    }
    
    .slide-content h1 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
}

/* Animation for slide content */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
    color: var(--white);
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(52, 152, 219, 0.7);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* Mobile Navigation Adjustments */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 45px;
        height: 45px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
    }
}

/* Video ve Image Slider düzenlemeleri */
.video-slider,
.image-slider {
    width: 100%;
    height: 600px;
    margin: 0 auto;
    background: var(--white);
}

.video-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

    .video-wrapper video {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        z-index: 2;
    }

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--white);
}

/* Slider Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    z-index: 10;
}

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 20px;
        color: var(--white);
    }

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--secondary-color);
}

/* Responsive düzenlemeler */
@media (max-width: 992px) {
    .video-slider,
    .image-slider {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .video-slider,
    .image-slider {
        height: 400px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 16px;
        }
}

@media (max-width: 576px) {
    .video-slider,
    .image-slider {
        height: 300px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

    .feature-card:hover {
        transform: translateY(-10px);
    }

    .feature-card i {
        font-size: 2.5rem;
        color: var(--secondary-color);
        margin-bottom: 20px;
    }

    .feature-card h3 {
        margin-bottom: 15px;
        color: var(--primary-color);
    }

/* Solutions Section */
.solutions {
    padding: 100px 0;
}

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

.solution-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

    .solution-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: var(--transition);
    }

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

    .solution-card h3 {
        padding: 20px;
        margin: 0;
        background: var(--white);
    }

    .solution-card p {
        padding: 0 20px 20px;
        background: var(--white);
    }

/* About Section */
.about {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-text p {
    margin-bottom: 30px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    display: block;
}

/* Dealers Section */
.dealers {
    padding: 100px 0;
}

.dealers-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.dealers-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.current-dealers h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.dealer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.dealer-card {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

    .dealer-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

.dealer-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

    .dealer-header i {
        font-size: 1.5rem;
        color: var(--secondary-color);
    }

    .dealer-header h4 {
        color: var(--primary-color);
        font-size: 1.2rem;
        margin: 0;
    }

.dealer-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dealer-detail {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .dealer-detail i {
        color: var(--secondary-color);
        width: 20px;
    }

.empty-info {
    color: var(--dark-gray);
    opacity: 0.6;
    font-style: italic;
}

.dealers-map {
    height: 400px;
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
}

#map {
    height: 100%;
    width: 100%;
}

.dealer-form {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

    .dealer-form h3 {
        margin-bottom: 20px;
        color: var(--primary-color);
    }

form input,
form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

form textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

    .submit-btn:hover {
        background: var(--primary-color);
    }

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

    .info-item i {
        font-size: 24px;
        color: var(--secondary-color);
        min-width: 24px;
    }

    .info-item h3 {
        margin-bottom: 5px;
        color: var(--primary-color);
    }

    .info-item p {
        margin: 0;
        color: var(--text-color);
    }

.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

    .contact-form form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #e1e1e1;
        border-radius: 5px;
        font-size: 16px;
        transition: var(--transition);
    }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: var(--secondary-color);
            outline: none;
        }

    .contact-form textarea {
        height: 150px;
        resize: vertical;
    }

.submit-btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

    .submit-btn:hover {
        background: var(--primary-color);
        transform: translateY(-2px);
    }

/* Responsive Contact Section */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        order: 2;
    }

    .contact-form {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }

    .info-item {
        padding: 15px;
    }

        .info-item i {
            font-size: 20px;
            min-width: 20px;
        }

    .contact-form {
        padding: 20px;
    }

        .contact-form input,
        .contact-form textarea {
            padding: 10px;
            font-size: 14px;
        }

    .submit-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 40px 0;
    }

    .contact-content {
        gap: 20px;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px 10px;
    }

        .info-item i {
            margin-bottom: 10px;
        }

    .contact-form {
        padding: 15px;
    }
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--light-gray);
}

.gallery-subsection {
    margin-bottom: 60px;
}

    .gallery-subsection:last-child {
        margin-bottom: 0;
    }

.subsection-title {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

/* Lazy Loading */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

    .lazy.loaded {
        opacity: 1;
    }

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 50px 0 20px;
}

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

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: var(--transition);
}

    .footer-links a:hover {
        color: var(--secondary-color);
    }

.social-links {
    display: flex;
    gap: 15px;
}

    .social-links a {
        color: var(--white);
        font-size: 1.5rem;
        transition: var(--transition);
    }

        .social-links a:hover {
            color: var(--secondary-color);
        }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-list {
        gap: 20px;
    }

    .header-right {
        gap: 20px;
    }

    .dealers-content {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header.scrolled {
        padding: 10px 0;
    }

    .header-right {
        gap: 15px;
    }

    .mobile-menu-btn {
        display: block;
        order: 3;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        display: none;
    }

    .header:not(.scrolled) .nav {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(5px);
    }

    .header:not(.scrolled) .nav-list a {
        color: var(--text-color);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

        .nav-list li {
            width: 100%;
        }

        .nav-list a {
            padding: 15px 20px;
            display: block;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

    .admin-login-btn span {
        display: none;
    }

    .admin-login-btn {
        padding: 8px;
        min-width: 36px;
        justify-content: center;
    }

        .admin-login-btn i {
            margin: 0;
            font-size: 1.2rem;
        }

    .lang-btn span {
        display: none;
    }

    .lang-btn {
        padding: 8px;
        min-width: 36px;
        justify-content: center;
    }

    .dealer-cards {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .header-right {
        gap: 10px;
    }

    .logo img {
        height: 32px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Add this CSS to your existing CSS file or within a <style> tag in your HTML */

@media (max-width: 768px) {
    .gallery-subsection .swiper-slide {
        width: 100% !important;
    }

    .video-wrapper, .video-wrapper video {
        width: 100%;
        height: auto;
    }

    .image-slider .swiper-slide img {
        width: 100%;
        height: auto;
    }

    .swiper-button-next, .swiper-button-prev {
        display: none;
    }
}
