/* ============================================
   Responsive Styles - Mobile First Approach
   ============================================ */

/* === Tablet Styles (768px - 1024px) === */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .service-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .split-section.reverse .split-content {
        order: 2;
    }

    .split-section.reverse .split-image {
        order: 1;
    }

    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pain-problem-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .solution-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* === Mobile Styles (max-width: 768px) === */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    /* Header */
    .header-content {
        flex-wrap: wrap;
        position: relative;
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
    }

    .header-right {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        display: none;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: -15px;
        right: -15px;
        background: var(--white);
        box-shadow: var(--shadow-md);
        padding: 1.5rem;
        border-radius: 8px;
        z-index: 1001;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

    .header-right.active {
        display: flex;
    }

    .nav-menu {
        width: 100%;
        margin-bottom: 1rem;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin: 0;
        padding: 0;
        background: var(--light-gray);
        border-radius: 0;
        min-width: auto;
        width: 100%;
    }

    .dropdown-menu li {
        padding: 0;
    }

    .dropdown-menu a {
        padding: 0.75rem 1.5rem 0.75rem 2rem;
    }

    .header-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        width: 100%;
    }

    .header-phone {
        font-size: 0.9rem;
        justify-content: center;
        padding: 0.75rem;
        background: var(--light-gray);
        border-radius: 8px;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        text-align: center;
        width: 100%;
    }

    /* Hero Section */
    .hero {
        padding: 2rem 0;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-left p {
        font-size: 1rem;
    }

    .hero-form {
        padding: 1.25rem;
        max-width: 100%;
    }

    .contact-form-wrapper {
        max-width: 100%;
        padding: 1.25rem;
    }

    /* Sections */
    .section {
        padding: 3rem 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Why Choose Us */
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    /* Approach */
    .approach-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    /* About Page */
    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    /* Contact Page */
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Hook Section */
    .hook-section h2 {
        font-size: 2rem;
    }

    .hook-section p {
        font-size: 1rem;
    }

    /* CTA Section */
    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    /* Service Banner */
    .service-banner h1 {
        font-size: 2rem;
    }

    .about-banner h1 {
        font-size: 2rem;
    }

    .contact-banner h1 {
        font-size: 2rem;
    }
}

/* === Small Mobile Styles (max-width: 480px) === */
@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .hero-left h1 {
        font-size: 1.75rem;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .btn-secondary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .pricing-price {
        font-size: 2.5rem;
    }
}