/*
Theme Name: Innerworks Enterprise
Theme URI: https://innerworks.com.pk
Author: Innerworks
Description: A lightweight, SEO-focused WordPress theme for IT infrastructure, security and technology solutions.
Version: 1.8.0
Text Domain: innerworks
License: GPL-2.0-or-later
*/
/* =========================================
   INNERWORKS – PROFESSIONAL PHONE FIELD
========================================= */

.inquiry-form .form-row > label:has(.iw-phone-group) {
    display: block;
}

.inquiry-form .iw-phone-group {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    width: 100% !important;
    margin-top: 10px !important;
    gap: 0 !important;
}

/* Country code */
.inquiry-form .iw-phone-group select {
    display: block !important;
    width: 115px !important;
    min-width: 115px !important;
    max-width: 115px !important;
    height: 48px !important;

    margin: 0 !important;
    padding: 0 12px !important;

    border: 1px solid rgba(20, 45, 70, 0.20) !important;
    border-right: none !important;

    border-radius: 6px 0 0 6px !important;

    background-color: #f7f9fc !important;

    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1c3045 !important;

    cursor: pointer !important;
    outline: none !important;

    box-sizing: border-box !important;
}

/* Phone number input */
.inquiry-form .iw-phone-group input#iw-phone {
    display: block !important;
    flex: 1 1 auto !important;

    width: auto !important;
    min-width: 0 !important;
    height: 48px !important;

    margin: 0 !important;
    padding: 0 16px !important;

    border: 1px solid rgba(20, 45, 70, 0.20) !important;

    border-radius: 0 6px 6px 0 !important;

    background-color: #ffffff !important;

    font-size: 15px !important;
    color: #1c3045 !important;

    box-sizing: border-box !important;
}

/* Focus effect */
.inquiry-form .iw-phone-group:focus-within select,
.inquiry-form .iw-phone-group:focus-within input#iw-phone {
    border-color: #2f6fb5 !important;
}

.inquiry-form .iw-phone-group:focus-within select {
    box-shadow: -3px 0 10px rgba(47, 111, 181, 0.08) !important;
}

.inquiry-form .iw-phone-group:focus-within input#iw-phone {
    box-shadow: 3px 0 10px rgba(47, 111, 181, 0.08) !important;
}

/* Mobile responsive */
@media (max-width: 600px) {

    .inquiry-form .iw-phone-group select {
        width: 105px !important;
        min-width: 105px !important;
        max-width: 105px !important;
    }

}