/* ===========================
   ENHANCED RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .motorcycle-showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-image-large {
        grid-row: auto;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition-normal);
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 1rem;
        max-height: 90vh;
    }

    .modal-body>div {
        grid-template-columns: 1fr !important;
    }

    .showcase-image-large,
    .showcase-image-small {
        height: 300px;
    }

    .advisor-chat {
        height: 600px;
    }

    .chat-messages {
        height: 400px;
    }

    .brand-container .logo-text {
        font-size: 1.5rem;
    }

    .brand-container .logo-subtext {
        font-size: 0.6rem;
    }

    .brand-icon {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .product-filters {
        flex-direction: column;
        width: 100%;
    }

    .filter-btn {
        width: 100%;
    }

    .chat-input-container {
        padding: 1rem;
    }

    .quick-questions {
        flex-direction: column;
    }

    .quick-btn {
        width: 100%;
    }
}