/* Responsive Design - Mobile First Approach */

/* Tablet Styles */
@media (max-width: 968px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-content--wide {
        max-width: 900px;
    }

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

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

    .about-images {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, minmax(160px, 220px));
    }

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

    .about-stats {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

/* Mobile Styles */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
        max-width: 200px;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-soft);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav.active {
        max-height: 500px;
    }

    .nav-list {
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }

    .nav-list li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-list li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
    }

    .nav-link.active::after {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        padding: 4rem 0;
    }

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

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

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

    .hero-content--wide {
        max-width: 100%;
        text-align: center;
    }

    .hero-subtitle--small {
        font-size: 0.95rem;
    }

    .about-grid {
        gap: 1.5rem;
    }

    .about-images {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, minmax(180px, 220px));
    }

    .about-image--tall {
        grid-row: auto;
    }

    .about-title {
        font-size: 1.75rem;
        text-align: center;
    }

    .about-content {
        align-items: center;
        text-align: center;
    }

    .about-badge {
        margin: 0 auto;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

    .page-hero {
        padding: 3rem 0;
    }

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

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

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

    .features,
    .services-preview,
    .content-section {
        padding: 3rem 0;
    }

    .service-hero {
        padding: 3rem 0;
    }

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

    .features-grid,
    .services-grid,
    .values-grid,
    .additional-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .content-block h2 {
        font-size: 1.75rem;
    }

    .content-block h3 {
        font-size: 1.25rem;
    }

    .service-detail-content h2 {
        font-size: 1.75rem;
    }

    .service-detail-content h3 {
        font-size: 1.25rem;
    }

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

    .cta-section {
        padding: 3rem 0;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

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

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

    .container {
        padding: 0 15px;
    }

    .coming-soon-banner {
        padding: 3rem 2rem;
        margin: 2rem auto;
    }

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

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

/* Small Mobile Styles */
@media (max-width: 480px) {
    .logo-img {
        height: 35px;
        max-width: 180px;
    }

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

    .page-title {
        font-size: 1.75rem;
    }

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

    .btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .feature-card,
    .service-card {
        padding: 1.5rem;
    }

    .content-block {
        margin-bottom: 3rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cta-section,
    .mobile-menu-toggle {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .hero,
    .page-hero {
        padding: 2rem 0;
    }
}

