/* ==========================================================================
   Contact Page Mobile Responsive Styles
   Theme: Power Packaging
   Author: Gemini CLI
   ========================================================================== */

/* iPadPro, iPadAir, SurfacePro7 (Tablets and Smaller Desktops) */
@media (max-width: 1024px) and (min-width: 821px) {
    .contact-section-container {
        padding: 80px 0;
    }

    .section {
        width: 100% !important;
        padding-left: 40px !important;
        padding-right: 40px !important;
        box-sizing: border-box;
    }

    .contact-section-content {
        gap: 40px;
    }

    .contact-section-left {
        width: 48%;
        height: 500px;
    }

    .contact-section-right {
        width: 48%;
    }

    .contact-title {
        font-size: 36px;
    }
}

/* iPadMini (Medium Tablets) */
@media (max-width: 820px) and (min-width: 641px) {
    .contact-section-container {
        padding: 60px 0;
    }

    .section {
        width: 100% !important;
        padding-left: 30px !important;
        padding-right: 30px !important;
        box-sizing: border-box;
    }

    .contact-section-content {
        flex-direction: column;
        gap: 40px;
    }

    .contact-section-left {
        width: 100%;
        height: 450px;
    }

    .contact-section-right {
        width: 100%;
    }
}

/* iPhone (Mobile Phones) */
@media (max-width: 640px) {
    .contact-section-container {
        padding: 50px 0;
    }

    .section {
        width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box;
    }

    .contact-section-content {
        flex-direction: column;
        gap: 30px;
    }

    .contact-section-left {
        width: 100%;
        height: 300px;
    }

    .contact-section-right {
        width: 100%;
    }

    .contact-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .contact-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .form-label {
        font-size: 12px;
        margin-bottom: 6px;
        padding-left: 8px;
    }

    .form-control {
        height: 50px;
        padding: 0 20px;
        font-size: 12px;
    }

    .form-row {
        flex-direction: column;
        gap: 14px;
    }

    .form-row .col-6 {
        width: 100%;
    }

    .form-control.textarea {
        height: 120px;
        padding: 16px 20px;
    }

    .btn-submit-requirements {
        height: 50px;
        font-size: 12px;
        margin-top: 5px;
    }
}