/* mobile.css - Responsive styles for mobile devices */

/* Global Mobile Styles */
@media screen and (max-width: 768px) {
    /* Base container adjustments */
    .container {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }

    /* Typography adjustments */
    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    h3 {
        font-size: 1.3rem !important;
    }

    p {
        font-size: 0.95rem !important;
    }

    /* Form improvements */
    input, select, textarea {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 16px !important; /* Prevents iOS zoom on focus */
    }

    /* Button adjustments */
    .btn {
        width: 100%;
        margin: 5px 0;
        padding: 10px 15px;
        font-size: 1rem;
    }

    /* Space adjustments */
    .row {
        margin-left: 0;
        margin-right: 0;
    }

    /* Navigation improvements */
    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
    }

    /* Application specific styles */
    .application-card {
        padding: 15px !important;
    }

    /* Progress steps container */
    .progress-container {
        flex-direction: column;
        padding: 10px 0;
    }

    .step-item {
        width: 100%;
        margin-bottom: 10px;
        padding: 10px;
    }

    /* Form buttons container */
    .form-buttons {
        flex-direction: column-reverse;
    }

    .form-buttons button {
        width: 100%;
        margin: 5px 0;
    }

    /* Specialty sections */
    .specializations-grid, .specializations-row {
        display: block;
    }

    .specialization-item {
        width: 100%;
        margin-bottom: 10px;
    }

    /* Hero sections */
    .hero-text {
        width: 100%;
        padding: 15px 15px;
        z-index: 1;
    }

    /* Content blocks */
    .content-block .block-inner {
        flex-direction: column !important;
    }

    .content-block .text-wrapper,
    .content-block .img-wrapper {
        width: 100%;
        padding: 15px;
    }

    /* Thank you page */
    #thankyou h1 {
        font-size: 40px !important;
    }
}

/* Smaller mobile specific adjustments */
@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.5rem !important;
    }

    h2 {
        font-size: 1.3rem !important;
    }

    .main-heading {
        font-size: 1.4rem !important;
        text-align: center;
        padding: 10px 0;
    }

    /* Tighter spacing */
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}