/* Mobile Responsive Styles */
@media (max-width: 768px) {

    /* Mobile Menu Button */
    .mobile-menu-btn {
        display: flex !important;
        z-index: 1001;
    }

    /* Hide desktop nav by default on mobile */
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
    }

    /* Show nav when active */
    .nav.active {
        left: 0;
    }

    /* Stack nav links vertically */
    .nav-link {
        width: 100%;
        padding: 1rem 0;
        font-size: 1.125rem;
        border-bottom: 1px solid #f3f4f6;
    }

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

    /* Hamburger animation */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

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

    /* Hero section adjustments */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-content {
        text-align: center;
    }

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

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

    /* Container padding */
    .container {
        padding: 0 1.5rem;
    }

    /* Form adjustments */
    .application-form,
    .status-form {
        padding: 1.5rem;
    }

    /* Calculator adjustments */
    .calculator-wrapper {
        flex-direction: column;
    }

    .calculator-inputs,
    .calculator-results {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

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

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