/* Mobile styles */
@media screen and (max-width: 1100px) {
    .showcase {
        padding: 4rem 0;
        min-height: auto;
    }

    .showcase-container {
        padding: 0 1.5rem;
        height: auto;
    }

    .showcase-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }

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

    .project-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .project-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .project-image-row {
        margin: 0 -1rem;
    }

    .project-image-container {
        border-radius: 8px;
    }

    .navigation {
        position: static;
        transform: none;
        margin-top: 1rem;
        padding: 0 2rem;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Adjust progress bar position */
    .progress-bar {
        margin-top: 1rem;
    }

    /* Stats section responsive */
    .stats-section {
        padding: 3rem 1rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    /* Process section responsive */
    .process-section {
        padding: 4rem 1rem;
    }

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

    .process-step {
        padding: 2rem;
    }

    .step-number {
        font-size: 2.5rem;
    }

    .step-title {
        font-size: 1.3rem;
    }

    .process-cta {
        margin-top: 3rem;
    }

    .process-cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 400px;
    }

    /* Resources preview section responsive */
    .resources-preview-section {
        padding: 4rem 1rem;
    }

    .resources-preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .resource-preview-card {
        padding: 1.5rem;
    }

    .resources-view-all-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    .case-studies-preview-section {
        padding: 4rem 1rem;
    }

    .case-studies-preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .case-study-preview-card {
        padding: 1.5rem;
    }

    .case-studies-view-all-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    /* Adjust project cards grid */
    .projects-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
    }

    .cta-button {
        margin: 0;
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    .card-front h3 {
        margin-top: 2rem;
        font-size: 1.5rem;
        color: #1E3D59;
    }

    .navbar {
        padding: 1rem;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .nav-links {
        gap: 1rem;
    }

    .footer {
        padding: 3rem 1rem 1.5rem;
    }

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

    .footer-section {
        text-align: center;
    }

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

/* Small phones */
@media screen and (max-width: 380px) {
    .hero-title {
        font-size: 2rem;
    }

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

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

    .stat-number {
        font-size: 2rem;
    }

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

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

@media screen and (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-section {
        padding: 4rem 1.5rem;
    }

    .cta-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .cta-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta-button-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 400px;
    }
} 