/* ============================================
   GET A QUOTE  -  scoped .gq-
   ============================================ */

/* ------------------------------------------------
   SECTION
   ------------------------------------------------ */
.gq-section {
    padding: 50px 0;
    background: #f8faff;
}

.gq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ------------------------------------------------
   TWO-COLUMN LAYOUT
   ------------------------------------------------ */
.gq-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* ------------------------------------------------
   LEFT – INFO PANEL
   ------------------------------------------------ */
.gq-left {
    flex: 0 0 380px;
    min-width: 380px;
}

.gq-info-box {
    background: #01295E;
    border-radius: 20px;
    padding: 40px 36px;
    position: sticky;
    top: 30px;
}

/* Badge */
.gq-badge {
    display: inline-block;
    background: rgba(236, 169, 13, 0.18);
    color: #ECA90D;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

/* Title */
.gq-title {
    font-size: 34px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.25 !important;
    margin: 0 0 16px 0 !important;
}

.gq-title span {
    color: #ECA90D !important;
}

.gq-subtitle {
    font-size: 15px !important;
    color: rgba(255, 255, 255, 0.72) !important;
    line-height: 1.75 !important;
    margin: 0 0 28px 0 !important;
    text-align: justify;
}

/* Features list */
.gq-features {
    list-style: none !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 28px !important;
}

.gq-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0 !important;
    padding: 0 !important;
}

.gq-feat-icon i {
    color: #ECA90D;
    font-size: 16px;
}

/* Quick contact */
.gq-quick-contact {
    padding-top: 4px;
}

.gq-quick-label {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.55) !important;
    margin: 0 0 14px 0 !important;
}

.gq-whatsapp-btn,
.gq-call-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    justify-content: center;
    margin-bottom: 10px;
}

.gq-whatsapp-btn {
    background: #ECA90D;
    color: #fff !important;
}

.gq-whatsapp-btn:hover {
    background: #d49a0c;
    transform: translateY(-2px);
    color: #fff !important;
}

.gq-call-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.gq-call-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff !important;
    transform: translateY(-2px);
}

/* ------------------------------------------------
   RIGHT – FORM WRAP
   ------------------------------------------------ */
.gq-right {
    flex: 1;
    min-width: 0;
}

.gq-form-wrap {
    background: #ffffff;
    border-radius: 20px;
    padding: 38px 36px;
    border: 1px solid #eef2f7;
    box-shadow: 0 8px 35px rgba(1, 41, 94, 0.07);
}

.gq-form-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #01295E !important;
    margin: 0 0 26px 0 !important;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 2px solid #eef2f7;
}

.gq-form-title i {
    color: #ECA90D;
    font-size: 20px;
}

/* ------------------------------------------------
   TWO-COLUMN FORM ROW
   ------------------------------------------------ */
.gq-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* ------------------------------------------------
   FIELD
   ------------------------------------------------ */
.gq-field {
    margin-bottom: 18px;
}

.gq-field label {
    display: block;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #01295E !important;
    margin-bottom: 7px !important;
    line-height: 1.4 !important;
}

.gq-req {
    color: #e74c3c !important;
}

.gq-opt {
    color: #888 !important;
    font-weight: 400 !important;
    font-size: 13px !important;
}

/* ------------------------------------------------
   INPUT WRAPPER
   ------------------------------------------------ */
.gq-input-wrap {
    position: relative;
}

.gq-input-wrap > i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #b0b8c4;
    font-size: 15px;
    pointer-events: none;
    z-index: 2;
    transition: color 0.3s ease;
}

/* Text / Tel inputs — high specificity beats style.css */
.gq-form .gq-input-wrap input[type="text"],
.gq-form .gq-input-wrap input[type="tel"],
.gq-form .gq-input-wrap input[type="email"] {
    display: block !important;
    width: 100% !important;
    height: 48px !important;
    padding: 0 16px 0 42px !important;
    border: 1px solid #e0e6ef !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    color: #01295E !important;
    background: #f8faff !important;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease !important;
    line-height: 48px !important;
}

.gq-form .gq-input-wrap input[type="text"]:focus,
.gq-form .gq-input-wrap input[type="tel"]:focus,
.gq-form .gq-input-wrap input[type="email"]:focus {
    border-color: #ECA90D !important;
    box-shadow: 0 0 0 3px rgba(236, 169, 13, 0.1) !important;
    background: #ffffff !important;
}

.gq-form .gq-input-wrap input::placeholder {
    color: #b0b8c4 !important;
}

/* ------------------------------------------------
   TEXTAREA
   ------------------------------------------------ */
.gq-textarea-wrap > i {
    top: 14px;
    transform: none;
}

.gq-form .gq-input-wrap textarea {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 110px !important;
    padding: 12px 16px 12px 42px !important;
    border: 1px solid #e0e6ef !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    color: #01295E !important;
    background: #f8faff !important;
    outline: none !important;
    box-shadow: none !important;
    resize: vertical !important;
    line-height: 1.6 !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease !important;
}

.gq-form .gq-input-wrap textarea:focus {
    border-color: #ECA90D !important;
    box-shadow: 0 0 0 3px rgba(236, 169, 13, 0.1) !important;
    background: #ffffff !important;
}

.gq-form .gq-input-wrap textarea::placeholder {
    color: #b0b8c4 !important;
}

/* ------------------------------------------------
   SELECT — beats nice-select, style.css
   ------------------------------------------------ */
.gq-select-wrap {
    position: relative;
}

.gq-select-wrap > i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #b0b8c4;
    font-size: 15px;
    pointer-events: none;
    z-index: 2;
}

.gq-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #b0b8c4;
    font-size: 11px;
    pointer-events: none;
    z-index: 2;
    transition: transform 0.3s ease;
}

.gq-form .gq-select-wrap select,
.gq-form .gq-select-wrap select.nice-select {
    display: block !important;
    width: 100% !important;
    height: 48px !important;
    padding: 0 40px 0 42px !important;
    border: 1px solid #e0e6ef !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    color: #01295E !important;
    background: #f8faff !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer !important;
    line-height: 48px !important;
    float: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease !important;
}

.gq-form .gq-select-wrap select:focus,
.gq-form .gq-select-wrap select.nice-select:focus {
    border-color: #ECA90D !important;
    box-shadow: 0 0 0 3px rgba(236, 169, 13, 0.1) !important;
    background: #ffffff !important;
}

/* ------------------------------------------------
   SUBMIT
   ------------------------------------------------ */
.gq-submit {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 15px 30px !important;
    background: #ECA90D !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    cursor: pointer !important;
    box-shadow: 0 6px 20px rgba(236, 169, 13, 0.35) !important;
    transition: all 0.3s ease !important;
    line-height: 1 !important;
    margin-top: 8px;
    letter-spacing: 0.3px;
}

.gq-submit:hover {
    background: #d49a0c !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 28px rgba(236, 169, 13, 0.45) !important;
    color: #fff !important;
}

.gq-submit i {
    transition: transform 0.3s ease;
}

.gq-submit:hover i {
    transform: translateX(4px);
}

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

/* Tablet */
@media (max-width: 1024px) {
    .gq-left {
        flex: 0 0 320px;
        min-width: 320px;
    }

    .gq-info-box {
        padding: 32px 26px;
    }

    .gq-title {
        font-size: 28px !important;
    }
}

@media (max-width: 900px) {
    .gq-layout {
        flex-direction: column;
        gap: 28px;
    }

    .gq-left {
        flex: 0 0 100%;
        min-width: 0;
        width: 100%;
    }

    .gq-info-box {
        position: static;
    }

    .gq-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px 24px;
    }

    .gq-quick-contact {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
    }

    .gq-quick-label {
        width: 100%;
        margin-bottom: 0 !important;
    }

    .gq-whatsapp-btn,
    .gq-call-btn {
        margin-bottom: 0;
        flex: 1 1 auto;
        justify-content: center;
    }

    .gq-form-wrap {
        padding: 30px 24px;
                margin-top: 20px;

    }
}

@media (max-width: 640px) {
    .gq-section {
        padding: 50px 0;
    }

    .gq-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .gq-title {
        font-size: 26px !important;
    }

    .gq-form-wrap {
        padding: 24px 18px;
        margin-top: 20px;
        border-radius: 16px;
    }

    .gq-info-box {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .gq-features {
        flex-direction: column;
        gap: 10px;
    }

    .gq-quick-contact {
        flex-direction: column;
        align-items: stretch;
    }

    .gq-form .gq-input-wrap input[type="text"],
    .gq-form .gq-input-wrap input[type="tel"],
    .gq-form .gq-select-wrap select,
    .gq-form .gq-select-wrap select.nice-select {
        height: 44px !important;
        font-size: 13px !important;
        line-height: 44px !important;
    }

    .gq-submit {
        font-size: 15px !important;
        padding: 13px 24px !important;
    }
}

@media (max-width: 400px) {
    .gq-section {
        padding: 40px 0;
    }

    .gq-title {
        font-size: 22px !important;
    }

    .gq-info-box {
        padding: 22px 16px;
    }

    .gq-form-wrap {
        padding: 20px 14px;
    }

    .gq-form .gq-input-wrap input[type="text"],
    .gq-form .gq-input-wrap input[type="tel"],
    .gq-form .gq-select-wrap select,
    .gq-form .gq-select-wrap select.nice-select {
        height: 42px !important;
        font-size: 12px !important;
        line-height: 42px !important;
    }

    .gq-form .gq-input-wrap textarea {
        font-size: 12px !important;
    }

    .gq-submit {
        font-size: 14px !important;
    }
}
/* Mobile Full Width Fix */
@media (max-width: 900px) {

    .gq-container {
        padding: 0 12px !important;
    }

    .gq-layout {
        display: block !important;
    }

    .gq-left,
    .gq-right {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }

    .gq-form-row {
        display: block !important;
    }

    .gq-field {
        width: 100% !important;
        margin-bottom: 15px !important;
    }

    .gq-input-wrap,
    .gq-select-wrap {
        width: 100% !important;
    }

    .gq-form input,
    .gq-form select,
    .gq-form textarea,
    .gq-submit {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .gq-whatsapp-btn {
        width: 100% !important;
        text-align: center;
    }
}