<!-- css/responsive.css - Nexobex Technologies -->
/* ========================================
   Responsive Design
   ======================================== */

/* Tablet Styles */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .service-content {
        gap: 40px;
    }

    .service-icon-large {
        width: 150px;
        height: 150px;
    }

    .service-icon-large i {
        font-size: 3.5rem;
    }

    .position-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    /* Navigation */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--primary);
        width: 100%;
        text-align: center;
        transition: var(--transition-normal);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    /* Hero Slider */
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }

    .slide-buttons {
        flex-direction: column;
    }

    .slide-buttons .btn {
        width: 100%;
    }

    /* Grid Layouts */
    .pillars-grid,
    .features-grid,
    .industries-grid,
    .values-grid,
    .capabilities-grid,
    .compliance-grid,
    .cert-grid,
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Sections */
    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    /* Services Page */
    .service-content,
    .service-content.reverse {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .service-icon-large {
        margin: 0 auto;
    }

    .service-features {
        text-align: left;
    }

    /* About Page */
    .vm-grid,
    .philosophy-content,
    .position-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .stat-number {
        font-size: 1.8rem;
    }

    /* Global Page */
    .deployment-features {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Security Page */
    .step {
        flex-direction: column;
        gap: 10px;
    }

    .step-number {
        font-size: 2rem;
    }

    .standard-item {
        flex-direction: column;
        text-align: center;
    }

    .standard-icon {
        margin: 0 auto;
    }

    .timeline-item {
        padding-left: 40px;
    }

    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-wrapper,
    .contact-info {
        padding: 30px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 20px;
    }

    /* Typography */
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    /* Hero Slider */
    .hero-slider {
        min-height: 400px;
    }

    .slide-content p {
        font-size: 1rem;
    }

    /* About Page */
    .philosophy-stats {
        grid-template-columns: 1fr;
    }

    /* Global Page */
    .location-grid {
        grid-template-columns: 1fr;
    }

    .deployment-feature {
        flex-direction: column;
        text-align: center;
    }

    .deployment-feature i {
        margin: 0 auto;
    }

    /* Contact Page */
    .info-card {
        flex-direction: column;
        text-align: center;
    }

    .info-card i {
        margin: 0 auto;
    }

    /* Footer */
    .footer-links ul {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Landscape Mobile */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .hero-slider {
        height: 100vh;
        min-height: 400px;
    }

    .nav-menu {
        max-height: 80vh;
        overflow-y: auto;
    }
}

/* Large Desktop */
@media screen and (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

    h1 {
        font-size: 4rem;
    }

    .hero-slider {
        height: 85vh;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .hero-slider,
    .cta {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}