/* Responsive Design */

/* Large Desktop */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
}

/* Desktop */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .locations-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .header {
        height: 110px;
    }
    
    .nav-menu {
        position: fixed;
        top: 110px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 110px);
        background: var(--bg-white);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 40px 20px;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .brands-carousel {
        max-width: 100%;
        padding: 0 40px;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
        opacity: 0.6;
    }
    
    .carousel-btn-prev {
        left: -5px;
    }
    
    .carousel-btn-next {
        right: -5px;
    }
    
    .carousel-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .brand-item {
        width: 140px;
        min-height: 100px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-icon svg {
        width: 50px !important;
        height: 50px !important;
    }
    
    .bank-details-content {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
}

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .brands-carousel {
        padding: 0 20px;
    }
    
    .carousel-btn {
        width: 28px;
        height: 28px;
        opacity: 0.5;
    }
    
    .carousel-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .brand-item {
        width: 120px;
        min-height: 90px;
        padding: 15px;
    }
    
    .brand-item img {
        max-height: 60px !important;
    }
    
    .brand-logo-large {
        max-height: 80px !important;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .location-item h3 {
        font-size: 1.3rem;
    }
    
    .contact-social h3 {
        font-size: 1.5rem;
    }
    
    .footer-nav ul {
        flex-direction: column;
        gap: 15px;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .category-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
}

/* Landscape orientations */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .brands,
    .about,
    .categories,
    .locations,
    .contact {
        padding: 60px 0;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .contact-form,
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero {
        background: white;
        color: black;
    }
    
    body {
        font-size: 12pt;
    }
}