/* Responsive Styles */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .about-content,
    .featured-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .pead-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .pead-icon-wrapper {
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Header Mobile */
    .header-content {
        padding: 1rem 0;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(26, 42, 53, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--dark-border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav.active {
        max-height: 500px;
        padding: 2rem 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 2rem;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid var(--dark-border);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        padding: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-dropdown.active .dropdown-menu {
        max-height: 300px;
        margin-top: 0.5rem;
    }
    
    .dropdown-menu a {
        padding: 0.8rem 1rem 0.8rem 2rem;
        border-bottom: 1px solid var(--dark-border);
    }
    
    .header-contact {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 90vh;
        padding-top: 70px;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 2rem;
    }
    
    .feature-item {
        flex-direction: row;
        gap: 1rem;
    }
    
    .feature-item i {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    /* About Mobile */
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    /* Featured Product Mobile */
    .featured-image {
        height: 300px;
    }
    
    .product-icon {
        font-size: 5rem;
    }
    
    .product-glow {
        width: 200px;
        height: 200px;
    }
    
    /* Products Mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        padding: 2rem;
    }
    
    .card-image {
        height: 150px;
    }
    
    /* PEAD Mobile */
    .pead-icon-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .pead-icon-wrapper i {
        font-size: 3.5rem;
    }
    
    /* Clients Mobile */
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    /* Contact Mobile */
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer.collapsed {
        padding-bottom: 80px;
    }
    
    .footer.collapsed .footer-content,
    .footer.collapsed .footer-bottom {
        display: none;
    }
    
    .product-section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-section-image {
        min-height: 300px;
    }
    
    .product-benefits {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-img {
        width: 50px;
        height: 50px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 2rem;
        font-size: 0.85rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .testimonial-name {
        font-size: 1rem;
    }
    
    .testimonial-company {
        font-size: 0.8rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .footer-toggle {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }
}

/* Large Screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .menu-toggle,
    .footer-toggle,
    .scroll-indicator {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

