/*========================================
        MOBILE RESPONSIVE
========================================*/

@media screen and (max-width:768px) {

    /*==========================
            GENERAL
    ===========================*/

    section {
        padding: 60px 20px;
    }

    h1 {
        font-size: 34px;
        line-height: 1.3;
    }

    h2 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 25px;
    }

    h3 {
        font-size: 20px;
    }

    p {
        font-size: 15px;
        line-height: 1.7;
    }

    img {
        max-width: 100%;
        height: auto;
    }



    /* =========================================
   CONTACT US — MOBILE RESPONSIVE
   Excludes Navbar & Footer
========================================= */

    @media screen and (max-width:768px) {

        /* =====================================
       GENERAL
    ====================================== */

        .contact-page {
            width: 100%;
            overflow: hidden;
        }


        /* =====================================
       CONTACT HERO
    ====================================== */

        .contact-hero {
            min-height: 420px;

            display: flex;
            align-items: center;
            justify-content: center;

            padding: 70px 20px;

            text-align: center;
        }

        .contact-hero-content {
            width: 100%;
            max-width: 100%;
        }

        .contact-label {
            font-size: 10px;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .contact-hero h1 {
            font-size: 40px;
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .contact-hero p {
            max-width: 100%;

            font-size: 14px;
            line-height: 1.7;
        }


        /* =====================================
       CONTACT MAIN
    ====================================== */

        .contact-main {
            padding: 60px 20px;
        }

        .contact-grid {
            width: 100%;

            display: flex;
            flex-direction: column;

            gap: 50px;
        }


        /* =====================================
       CONTACT INFORMATION
    ====================================== */

        .contact-info {
            width: 100%;
            padding: 0;
        }

        .contact-small-label {
            font-size: 10px;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .contact-info h2 {
            font-size: 30px;
            line-height: 1.25;
            margin-bottom: 15px;
        }

        .contact-description {
            width: 100%;

            font-size: 14px;
            line-height: 1.7;

            margin-bottom: 25px;
        }


        /* =====================================
       CONTACT INFO ITEMS
    ====================================== */

        .contact-info-item {
            width: 100%;

            display: flex;
            align-items: center;

            gap: 14px;

            padding: 16px 0;
        }

        .contact-icon {
            width: 44px;
            height: 44px;

            flex-shrink: 0;

            font-size: 16px;
        }

        .contact-info-item div:last-child {
            min-width: 0;
        }

        .contact-info-item span {
            font-size: 11px;
        }

        .contact-info-item strong {
            font-size: 14px;

            line-height: 1.4;

            word-break: break-word;
        }


        /* =====================================
       SOCIAL MEDIA
    ====================================== */

        .contact-social {
            margin-top: 30px;
        }

        .contact-social>span {
            font-size: 10px;
            letter-spacing: 2px;
            margin-bottom: 14px;
        }

        .social-icons {
            display: flex;
            flex-wrap: wrap;
            gap: 9px;
        }

        .social-icons a {
            width: 40px;
            height: 40px;

            font-size: 15px;
        }



        /* =====================================
       CONTACT FORM
    ====================================== */

        .contact-form-wrapper {
            width: 100%;

            padding: 25px 20px;

            border-radius: 3px;
        }

        .contact-form-header>span {
            font-size: 10px;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .contact-form-header h2 {
            font-size: 27px;
            line-height: 1.25;
            margin-bottom: 10px;
        }

        .contact-form-header p {
            font-size: 13px;
            line-height: 1.7;
            margin-bottom: 25px;
        }


        /* =====================================
       FORM
    ====================================== */

        .contact-form {
            width: 100%;

            display: flex;
            flex-direction: column;

            gap: 18px;
        }

        .form-group {
            width: 100%;
        }

        .form-group label {
            font-size: 12px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;

            padding: 13px;

            font-size: 14px;

            border-radius: 2px;
        }

        .form-group textarea {
            min-height: 120px;
        }


        /* =====================================
       SUBMIT BUTTON
    ====================================== */

        .contact-submit {
            width: 100%;

            padding: 15px;

            margin-top: 3px;

            font-size: 14px;

            display: flex;
            align-items: center;
            justify-content: center;

            gap: 10px;
        }


        /* =====================================
       MOBILE CONTACT BAR
       Excludes Navbar & Footer
    ====================================== */

        .mobile-contact-buttons {
            width: 100%;
            height: 52px;

            display: flex;

            position: fixed;

            left: 0;
            bottom: 0;

            z-index: 99999;
        }

        .mobile-contact-buttons a {
            flex: 1;

            height: 52px;

            display: flex;
            align-items: center;
            justify-content: center;

            gap: 8px;

            border-radius: 0;
            border: none;

            text-decoration: none;

            font-size: 14px;
            font-weight: 600;
        }

        .mobile-call-btn {
            background: #0B2A5B;
            color: #fff;
        }

        .mobile-call-btn:hover {
            background: #0B2A5B;
            color: #fff;
        }

        .mobile-whatsapp-btn {
            background: #b89541;
            color: #fff;
        }

        .mobile-whatsapp-btn:hover {
            background: #b89541;
            color: #fff;
        }

        .mobile-contact-buttons i {
            font-size: 17px;
        }


        /* =====================================
       EXTRA SMALL DEVICES
    ====================================== */

        @media screen and (max-width:380px) {

            .contact-hero {
                min-height: 380px;
                padding: 60px 18px;
            }

            .contact-hero h1 {
                font-size: 34px;
            }

            .contact-main {
                padding: 50px 18px;
            }

            .contact-info h2 {
                font-size: 28px;
            }

            .contact-form-wrapper {
                padding: 22px 16px;
            }

            .mobile-contact-buttons a {
                font-size: 13px;
            }

        }

    }



}