/* Responsive Design */

/* Tablets (768px and below) */
@media (max-width: 768px) {
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    /* Navigation */
    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        flex-direction: column;
        width: 100%;
        background-color: var(--primary-color);
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hamburger {
        display: flex;
    }

    /* Hero Section */
    .hero {
        padding: 4rem 1rem;
        min-height: 350px;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Page Header */
    .page-header {
        padding: 3rem 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    /* Contact Container */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Contact Info – extra top breathing room on mobile */
    .contact-info {
        padding-top: 2.5rem;
    }

    /* Content Section */
    .content-section {
        padding: 2rem 1rem;
    }
}

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 15px;
    }

    /* Typography */
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1rem; }

    /* Navigation Brand */
    .navbar-brand h1 {
        font-size: 1.25rem;
    }

    /* Hero Section */
    .hero {
        padding: 3rem 1rem;
        min-height: 300px;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

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

    /* Buttons */
    .cta-button,
    .submit-button {
        width: 100%;
    }

    /* Service Cards */
    .service-card {
        padding: 1.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* About Content */
    .about-content {
        padding: 0 1rem;
    }

    /* Services Detailed */
    .service-detail {
        padding: 1.5rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    /* Contact Form */
    .contact-form {
        gap: 1rem;
    }
}

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

    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.75rem; }

    /* Hero Section */
    .hero {
        padding: 8rem 2rem;
        min-height: 600px;
    }

    .hero-content h2 {
        font-size: 3.5rem;
    }
}
