/* REPONSIVE.CSS */

@media screen and (max-width: 1200px) {
    .header-nav {
        gap: 24px;
    }

    .footer-grid {
        gap: 40px;
    }
}

@media screen and (max-width: 992px) {
    section {
        padding: 90px 0;
    }

    .header-actions
    {
        display: none;
    }

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

@media screen and (max-width: 768px) {
    section {
        padding: 70px 0;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 34px;
    }

    .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .whatsapp-floating {
        right: 18px;
        bottom: 18px;
        height: 56px;
        min-width: 56px;
        padding: 0 18px;
        font-size: 14px;
    }

    .service-card {
        min-height: auto;
    }
}

@media screen and (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 30px;
    }

    .header-logo {
        width: 150px;
        height: 56px;
    }

    .header-logo .logo {
        width: 150px;
    }

    .site-footer {
        padding-top: 70px;
    }
}

@media screen and (max-width: 992px) {

    .trust-grid,
    .services-grid,
    .steps-grid,
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid,
    .final-cta-inner {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-card,
    .portfolio-card:first-child {
        min-height: 420px;
    }
}

@media screen and (max-width: 768px) {

    .trust-grid,
    .services-grid,
    .steps-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        margin-top: -35px;
    }

    .trust-grid div {
        border-right: 0;
        border-bottom: 1px solid var(--color-border);
    }

    .trust-grid div:last-child {
        border-bottom: 0;
    }

    .why-image img {
        height: 420px;
    }

    .final-cta-actions {
        width: 100%;
        flex-direction: column;
    }
}