/* ----------------------------------------------------------------------
   SAKSHI ELEVATORS - RESPONSIVE STYLESHEET
   ---------------------------------------------------------------------- */

/* Media Query: Tablets & Small Screens (<= 992px) */
@media (max-width: 992px) {
    .hero-text-block h1 {
        font-size: 2.4rem;
    }
    
    .grid-3-col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-4-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Media Query: Mobile Devices (<= 768px) */
@media (max-width: 768px) {
    .site-header {
        padding: 12px 0;
    }

    .nav-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .nav-link, .nav-btn {
        min-height: 48px;
        font-size: 0.95rem;
    }

    .hero-section {
        padding: 80px 0 60px 0;
        text-align: center;
    }

    .hero-text-block h1 {
        font-size: 1.8rem;
    }

    .hero-subheadline {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .grid-3-col, .grid-4-col {
        grid-template-columns: 1fr;
    }

    .tech-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-links-column a {
        padding: 6px 0;
    }
}

/* Media Query: Small Mobile Devices (<= 480px) */
@media (max-width: 480px) {
    .hero-text-block h1 {
        font-size: 1.5rem;
    }

    .section-meta h2 {
        font-size: 1.6rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}