/* ============================================
   RESPONSIVE STYLES - MOBILE & TABLET
   ============================================ */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .logo img {
        height: 100px;
    }

    .logo-text-wrap .company-name {
        font-size: 1.5rem;
    }

    .logo-text-wrap .company-name .word.highlight {
        font-size: 1.75rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

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

    .nav-wrapper {
        position: relative;
    }

    .nav-menu {
        position: fixed;
        top: 120px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 120px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        border-top: none;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-gray);
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: none;
        background: var(--light-gray);
        margin-top: 0.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .logo img {
        height: 80px;
    }

    .logo-text-wrap .company-name {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .logo-text-wrap .company-name .word.highlight {
        font-size: 1.15rem;
        letter-spacing: 2px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .hero {
        height: 500px;
    }

    .hero-content {
        height: 500px;
        align-items: center;
        text-align: center;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .intro-content,
    .two-column-layout,
    .service-area-content,
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-area-content {
        grid-template-columns: 1fr;
    }

    .service-area-image {
        order: -1;
    }

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

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

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

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

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

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

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .hero {
        height: 450px;
    }

    .hero-content {
        height: 450px;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .intro-section,
    .content-section {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .page-header {
        height: 250px;
    }

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

    .testimonial-content {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}
