* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    height: 100%;
    height: -webkit-fill-available;
}
body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    min-height: calc(var(--vh, 1vh) * 100);
}
.mobile-optimized * {
    animation-duration: 0.3s !important;
    transition-duration: 0.3s !important;
}
.touch-device .feature-card:hover,
.touch-device .model-card:hover,
.touch-device .gallery-item:hover {
    transform: none !important;
    box-shadow: 0 10px 30px rgba(106, 3, 3, 0.1) !important;
}
.mobile .hero {
    min-height: calc(var(--vh, 1vh) * 100);
}
.tablet .hero {
    min-height: 90vh;
}
.desktop .hero {
    min-height: 100vh;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 700;
    line-height: 1.2;
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #b50000;
    position: relative;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #e74c3c, #f39c12);
    border-radius: 2px;
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-logo img {
    height: 40px;
    width: auto;
    max-width: 50px;
    object-fit: contain;
}
.nav-logo h2 {
    color: #6f271f;
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0;
}
.nav-logo span {
    color: #ecf0f1;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 2px;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-link {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}
.nav-link:hover {
    color: #e74c3c;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}
.theme-toggle {
    background: #0d62b8;
    color: #ecf0f1;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 1rem;
    transition: transform 0.2s ease, background 0.3s ease;
}
.theme-toggle:hover {
    background: #3d566e;
    transform: translateY(-2px);
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}
.bar {
    width: 25px;
    height: 3px;
    background: #ecf0f1;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #6f1414 0%, #540000 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}
.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
    padding: 0 20px;
}
.hero-title {
    font-size: 4rem;
    color: #ecf0f1;
    margin-bottom: 1rem;
    animation: slideInLeft 1s ease-out;
}
.hero-subtitle {
    font-size: 1.3rem;
    color: #bdc3c7;
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease-out 0.3s both;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: slideInLeft 1s ease-out 0.6s both;
}
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-image img {
    width: 100%;
    height: auto;
    max-width: 700px;
    max-height: 600px;
    object-fit: cover;
    border-radius: 38%;
    aspect-ratio: 1;
    object-position: center;
}
.motorcycle-3d {
    width: 500px;
    height: 400px;
    background: linear-gradient(45deg, #07228e, #3d2ec7);
    border-radius: 20px;
    position: relative;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.motorcycle-3d::before {
    content: '🏍️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    opacity: 0.8;
}
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}
.btn-primary {
    background: linear-gradient(45deg, #1a27b3, #9dc304);
    color: white;
    border: none;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(6, 255, 2, 0.3);
}
.btn-secondary {
    background: transparent;
    color: #f1edec;
    border: 2px solid #ecf0f1;
}
.btn-secondary:hover {
    background: #b43636;
    color: #2c3e50;
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: #930505;
    border: 2px solid #c61111;
}
.btn-outline:hover {
    background: linear-gradient(45deg, #cbc3d0, #3d2ec7);
    color: white;
    transform: translateY(-2px);
}
.features {
    padding: 100px 0;
    background: #d7d7d7;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #d52a2a, #3d2ec7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}
.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.feature-card p {
    color: #7f8c8d;
    line-height: 1.6;
}
.models {
    padding: 100px 0;
    background: white;
}
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.model-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.model-image {
    height: 250px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #05050536;
}
.service-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
    padding: 20px;
}
.model-card:hover .service-logo {
    transform: scale(1.05);
}
.bike-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #34495e, #2c3e50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
}
.sport-bike::before {
    content: '🏍️';
    font-size: 6rem;
    opacity: 0.8;
}
.cruiser-bike::before {
    content: '🏍️';
    font-size: 6rem;
    opacity: 0.8;
}
.adventure-bike::before {
    content: '🏍️';
    font-size: 6rem;
    opacity: 0.8;
}
.model-info {
    padding: 2rem;
}
.model-info h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.model-info p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem 2rem;
    margin-bottom: 1.5rem;
}
.service-features ul {
    list-style: none;
}
.service-features li {
    margin: 0.4rem 0;
    color: #2c3e50;
}
.price-badge {
    display: inline-block;
    background: linear-gradient(45deg, #302f31, #b80606);
    color: #fff;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 0.75rem;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.25);
}
body.dark .service-features li { color: #e6e6e6; }
body.dark .price-badge { filter: saturate(0.9) brightness(0.95); }
.model-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.model-specs span {
    background: #ecf0f1;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 500;
}
.gallery {
    padding: 100px 0;
    background: #f8f9fa;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}
.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.gallery-item:hover {
    transform: scale(1.05);
}
.gallery-bike-1, .gallery-bike-2, .gallery-bike-3,
.gallery-bike-4, .gallery-bike-5, .gallery-bike-6 {
    background: linear-gradient(45deg, #922fe4, #3d2ec7, #9b59b6, #3498db);
    background-size: 400% 400%;
    animation: gradientShift 4s ease infinite;
}
.gallery-bike-1::before, .gallery-bike-2::before, .gallery-bike-3::before,
.gallery-bike-4::before, .gallery-bike-5::before, .gallery-bike-6::before {
    content: '🏍️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.8;
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay i {
    color: white;
    font-size: 2rem;
}
.about {
    padding: 100px 0;
    background: white;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-text h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}
.about-text p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}
.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}
.stat {
    text-align: center;
}
.stat h3 {
    color: #e74c3c;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.stat p {
    color: #7f8c8d;
    font-weight: 500;
}
.about-image {
    position: relative;
}
.about-bike {
    background: linear-gradient(45deg, #922fe4, #3d2ec7);
    border-radius: 20px;
    height: 400px;
    position: relative;
}
.about-bike::before {
    content: '🏍️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    opacity: 0.8;
}
.contact {
    padding: 100px 0;
    background: #0f141a;
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}
.contact-info h3 {
    color: #b8bdc2;
    margin-bottom: 2rem;
    font-size: 2rem;
}
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}
.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #c00b0b, #7e0303);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}
.contact-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}
.contact-item p {
    color: #7f8c8d;
    margin: 0;
}
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-logo h3 {
    color: #b90000;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.footer-logo span {
    color: #bdc3c7;
    font-size: 0.9rem;
    letter-spacing: 2px;
}
.footer-section h4 {
    color: #ecf0f1;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 0.5rem;
}
.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-section ul li a:hover {
    color: #e74c3c;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    color: #ecf0f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: #e74c3c;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}
.scroll-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00bc3c;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 1500;
}
.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-to-top:hover {
    background: #c0392b;
}
body.dark {
    color: #e6e6e6;
    background: #0f141a;
}
body.dark .navbar {
    background: rgba(0, 0, 0, 0.9);
}
body.dark .nav-link { color: #e6e6e6; }
body.dark .nav-link:hover { color: #f39c12; }
body.dark .nav-link::after { background: #f39c12; }
body.dark .hero {
    background: linear-gradient(135deg, #0e1b2b 0%, #142b44 100%);
}
body.dark .section-title { color: #e6e6e6; }
body.dark .features { background: #0f141a; }
body.dark .gallery { background: #0f141a; }
body.dark .models { background: #0f141a; }
body.dark .about { background: #0f141a; }
body.dark .feature-card,
body.dark .model-card,
body.dark .contact-form {
    background: #121a24;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
body.dark .feature-card h3,
body.dark .model-info h3,
body.dark .contact-info h3,
body.dark .about-text h2 { color: #f0f3f6; }
body.dark .feature-card p,
body.dark .model-info p,
body.dark .contact-item p,
body.dark .about-text p { color: #a7b1bb; }
body.dark .model-specs span { background: #1b2632; color: #e6e6e6; }
body.dark .footer { background: #0b1016; }
body.dark .social-links a { background: #1b2632; }
body.dark .newsletter-form button { background: #f39c12; }
body.dark .newsletter-form button:hover { background: #d68910; }
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    .hero-title {
        font-size: 5rem;
    }
    .section-title {
        font-size: 3rem;
    }
}
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .motorcycle-3d {
        width: 450px;
        height: 350px;
    }
}
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    .nav-container {
        padding: 0 15px;
    }
    .hero {
        padding: 80px 0;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .motorcycle-3d {
        width: 400px;
        height: 300px;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    .models-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .about-content {
        gap: 3rem;
    }
    .contact-content {
        gap: 3rem;
    }
}
@media (max-width: 767px) {
    .nav-logo img {
        height: 35px;
        max-width: 45px;
    }
    .nav-logo h2 {
        font-size: 1.5rem;
    }
    .nav-logo span {
        font-size: 0.7rem;
    }
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu li {
        margin: 1rem 0;
    }
    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 50px;
        min-height: 90vh;
    }
    .hero-content {
        max-width: 100%;
        padding: 0 15px;
    }
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .btn {
        width: 200px;
        text-align: center;
    }
    .hero-image {
        margin-top: 2rem;
    }
    .motorcycle-3d {
        width: 350px;
        height: 280px;
    }
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    .features {
        padding: 80px 0;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .feature-card {
        padding: 2.5rem 2rem;
    }
    .models {
        padding: 80px 0;
    }
    .models-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .model-card {
        max-width: 400px;
        margin: 0 auto;
    }
    .gallery {
        padding: 80px 0;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    .about {
        padding: 80px 0;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .about-text h2 {
        font-size: 2.2rem;
    }
    .about-text p {
        font-size: 1rem;
    }
    .stats {
        justify-content: center;
        gap: 2rem;
    }
    .contact {
        padding: 80px 0;
    }
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-form {
        padding: 2.5rem 2rem;
    }
    .footer {
        padding: 50px 0 20px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    .newsletter-form {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto;
    }
    .newsletter-form input {
        border-radius: 5px;
        margin-bottom: 0.5rem;
    }
    .newsletter-form button {
        border-radius: 5px;
    }
}
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    .nav-container {
        padding: 0 15px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .motorcycle-3d {
        width: 280px;
        height: 220px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .feature-card {
        padding: 2rem 1.5rem;
    }
    .model-card {
        max-width: 100%;
    }
    .model-info {
        padding: 1.5rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .gallery-item {
        height: 200px;
    }
    .about-text h2 {
        font-size: 1.8rem;
    }
    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    .stat h3 {
        font-size: 2rem;
    }
    .contact-form {
        padding: 2rem 1.5rem;
    }
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}
@media (max-width: 480px) {
    .nav-logo img {
        height: 30px;
        max-width: 40px;
    }
    .nav-logo h2 {
        font-size: 1.3rem;
    }
    .nav-logo span {
        font-size: 0.6rem;
    }
    .hero {
        padding: 80px 0 40px;
        min-height: 85vh;
    }
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    .section-title::after {
        width: 60px;
        height: 3px;
    }
    .features-grid,
    .models-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    .gallery-item {
        height: 180px;
    }
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
    .stat h3 {
        font-size: 1.8rem;
    }
    .stat p {
        font-size: 0.9rem;
    }
    .about-text h2 {
        font-size: 1.6rem;
    }
    .about-text p {
        font-size: 0.9rem;
    }
    .contact-info h3 {
        font-size: 1.5rem;
    }
    .contact-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    .contact-item i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    .contact-form {
        padding: 1.5rem 1rem;
    }
    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    .btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .footer {
        padding: 40px 0 15px;
    }
    .footer-content {
        gap: 2rem;
    }
    .footer-section h4 {
        font-size: 1.1rem;
    }
    .footer-section p,
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    .newsletter-form {
        max-width: 100%;
    }
    .newsletter-form input {
        font-size: 0.9rem;
        padding: 0.7rem;
    }
    .newsletter-form button {
        font-size: 0.9rem;
        padding: 0.7rem 1rem;
    }
}
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    .nav-container {
        padding: 0 10px;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
    .motorcycle-3d {
        width: 250px;
        height: 200px;
    }
    .section-title {
        font-size: 1.4rem;
    }
    .feature-card,
    .contact-form {
        padding: 1.5rem 1rem;
    }
    .model-info {
        padding: 1rem;
    }
    .gallery-item {
        height: 160px;
    }
    .about-text h2 {
        font-size: 1.4rem;
    }
    .stat h3 {
        font-size: 1.6rem;
    }
}
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 60px 0;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .motorcycle-3d {
        width: 300px;
        height: 200px;
    }
    .nav-menu {
        top: 60px;
    }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero::before {
        background-size: 200% 200%;
    }
}
@media print {
    .navbar,
    .hero-buttons,
    .contact-form,
    .footer {
        display: none;
    }
    .hero {
        background: white;
        color: black;
    }
    .hero-title,
    .section-title {
        color: black;
    }
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}