/* MOBILE RESPONSIVE ENHANCEMENTS */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section__header {
        margin-bottom: 2.5rem;
    }

    .section__title {
        font-size: 1.9rem;
        line-height: 1.2;
    }

    .section__subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .hero {
        min-height: 600px;
        padding-top: 80px;
    }

    .hero__title {
        font-size: 2rem;
        line-height: 1.25;
    }

    .hero__description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero__form-wrapper {
        padding: 2rem 1.5rem;
    }

    .hero__badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.9rem;
    }

    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .btn--primary {
        width: 100%;
    }

    .service__card {
        margin-bottom: 1.5rem;
    }

    .service__content {
        padding: 1.5rem;
    }

    .service__title {
        font-size: 1.2rem;
    }

    .about__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact__wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form__input,
    .form__textarea,
    select {
        font-size: 16px;
        /* Prevents zoom on iOS */
        padding: 0.9rem 1rem;
    }

    .form__group {
        margin-bottom: 1rem;
    }

    .trust-bar {
        padding: 1.5rem 0;
    }

    .trust-item {
        padding: 0 2.5rem;
    }

    .trust-item__icon {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }

    .trust-item__title {
        font-size: 0.85rem;
    }

    .trust-item__desc {
        font-size: 0.75rem;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: white;
        padding: 6rem 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 99;
    }

    .nav.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 2rem;
    }

    .nav__close,
    .nav__toggle {
        display: block !important;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .nav__close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }
}