/* Mobile First Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .logo span {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

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

    .contact-form-container {
        grid-template-columns: 1fr;
    }

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

    .footer-logo {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .emergency-btn span {
        display: none;
    }

    .emergency-btn {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .trust-indicators {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .navbar {
        padding: 1rem;
    }
}
