/* =========================================================
   INQUIRY PAGE
   FIDAR AFARIN PISHRO
========================================================= */


/* =========================================================
   INQUIRY HERO
========================================================= */

.inquiry-hero {
    position: relative;
    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 100px 24px 80px;

    background:
        linear-gradient(
            135deg,
            #07111f 0%,
            #0d1b2e 50%,
            #12263d 100%
        );

    overflow: hidden;
}


.inquiry-hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    left: -150px;

    background:
        radial-gradient(
            circle,
            rgba(31, 143, 255, 0.22),
            transparent 68%
        );

    pointer-events: none;
}


.inquiry-hero::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    bottom: -250px;
    right: -120px;

    background:
        radial-gradient(
            circle,
            rgba(0, 194, 255, 0.16),
            transparent 68%
        );

    pointer-events: none;
}


.inquiry-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 10, 18, 0.2),
            rgba(4, 10, 18, 0.5)
        );

    pointer-events: none;
}


.inquiry-hero-content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 900px;

    text-align: center;

    color: #ffffff;
}


.inquiry-hero-badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 8px 18px;

    margin-bottom: 20px;

    border: 1px solid rgba(255, 255, 255, 0.18);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.06);

    color: #58b8ff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    backdrop-filter: blur(8px);
}


.inquiry-hero h1 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(32px, 5vw, 58px);

    font-weight: 800;

    line-height: 1.3;
}


.inquiry-hero p {
    max-width: 720px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.78);

    font-size: 17px;

    line-height: 2;

}



/* =========================================================
   INQUIRY SECTION
========================================================= */

.inquiry-section {
    padding: 90px 0;

    background:
        #f7f9fc;
}


.inquiry-section .section-heading {
    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;
}


.inquiry-section .section-heading > span {
    display: block;

    margin-bottom: 10px;

    color: #1787d8;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}


.inquiry-section .section-heading h2 {
    margin: 0 0 15px;

    color: #102033;

    font-size: clamp(28px, 4vw, 40px);

    font-weight: 800;
}


.inquiry-section .section-heading p {
    margin: 0;

    color: #687789;

    font-size: 15px;

    line-height: 2;
}



/* =========================================================
   INQUIRY LAYOUT
========================================================= */

.inquiry-layout {
    display: grid;

    grid-template-columns:
        minmax(280px, 0.85fr)
        minmax(400px, 1.15fr);

    gap: 35px;

    align-items: start;
}



/* =========================================================
   INFORMATION CARDS
========================================================= */

.inquiry-info {
    display: flex;

    flex-direction: column;

    gap: 18px;
}


.inquiry-info-card {
    display: flex;

    gap: 18px;

    padding: 24px;

    border:
        1px solid #e5eaf0;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 8px 30px rgba(15, 35, 55, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.inquiry-info-card:hover {
    transform: translateY(-3px);

    border-color: #cfe7f8;

    box-shadow:
        0 14px 35px rgba(15, 35, 55, 0.10);
}


.inquiry-info-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #168be0,
            #075ca8
        );

    color: #ffffff;

    font-size: 21px;
    font-weight: 700;

    box-shadow:
        0 8px 20px rgba(15, 125, 210, 0.22);
}


.inquiry-info-card span {
    display: block;

    margin-bottom: 6px;

    color: #1686d3;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.5px;
}


.inquiry-info-card h3 {
    margin: 0 0 8px;

    color: #172b40;

    font-size: 17px;

    font-weight: 750;

    line-height: 1.6;
}


.inquiry-info-card p {
    margin: 0;

    color: #718093;

    font-size: 13px;

    line-height: 1.9;
}



/* =========================================================
   FORM WRAPPER
========================================================= */

.inquiry-form-wrapper {
    padding: 34px;

    border:
        1px solid #e3e9ef;

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 15px 45px rgba(15, 35, 55, 0.08);
}



/* =========================================================
   PRODUCT BOX
========================================================= */

.inquiry-product-box {
    display: flex;

    flex-direction: column;

    gap: 7px;

    margin-bottom: 25px;

    padding: 17px 18px;

    border:
        1px solid #cfe7f8;

    border-right:
        4px solid #1789d8;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #f2f9ff,
            #f9fcff
        );
}


.inquiry-product-box span {
    color: #718093;

    font-size: 11px;
    font-weight: 700;
}


.inquiry-product-box strong {
    color: #12314d;

    font-size: 16px;

    font-weight: 800;
}



/* =========================================================
   FORM
========================================================= */

.inquiry-form {
    display: flex;

    flex-direction: column;

    gap: 20px;
}


.form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}


.form-group label {
    color: #263a4e;

    font-size: 13px;

    font-weight: 750;
}


.form-group label span {
    color: #e24747;

    margin-right: 3px;
}


.form-group label small {
    margin-right: 6px;

    color: #98a4b1;

    font-size: 10px;

    font-weight: 500;
}



/* =========================================================
   INPUTS
========================================================= */

.form-group input,
.form-group textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 13px 15px;

    border:
        1px solid #dce3ea;

    border-radius: 10px;

    outline: none;

    background: #fbfcfd;

    color: #24384c;

    font-family: inherit;

    font-size: 14px;

    line-height: 1.8;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.form-group input {
    min-height: 50px;
}


.form-group textarea {
    min-height: 150px;

    resize: vertical;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a5afba;
}


.form-group input:hover,
.form-group textarea:hover {
    border-color: #c5d1dc;

    background: #ffffff;
}


.form-group input:focus,
.form-group textarea:focus {
    border-color: #1789d8;

    background: #ffffff;

    box-shadow:
        0 0 0 4px rgba(23, 137, 216, 0.10);
}



/* =========================================================
   FORM STATUS
========================================================= */

.inquiry-form-status {
    padding: 13px 15px;

    border-radius: 10px;

    font-size: 13px;

    line-height: 1.8;
}


.inquiry-form-status.success {
    border:
        1px solid #b9e5ca;

    background:
        #effbf3;

    color: #18743a;
}


.inquiry-form-status.error {
    border:
        1px solid #f2c3c3;

    background:
        #fff4f4;

    color: #a52b2b;
}



/* =========================================================
   SUBMIT BUTTON
========================================================= */

.inquiry-submit-button {
    position: relative;

    width: 100%;

    min-height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 12px 20px;

    border: none;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            #168cdb,
            #075ca8
        );

    color: #ffffff;

    cursor: pointer;

    font-family: inherit;

    font-size: 14px;

    font-weight: 800;

    box-shadow:
        0 10px 25px rgba(11, 112, 184, 0.20);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}


.inquiry-submit-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(11, 112, 184, 0.28);
}


.inquiry-submit-button:active {
    transform: translateY(0);
}


.inquiry-submit-button:disabled {
    cursor: not-allowed;

    opacity: 0.65;

    transform: none;

    box-shadow: none;
}



/* =========================================================
   REQUIRED NOTE
========================================================= */

.inquiry-required-note {
    margin: -5px 0 0;

    text-align: center;

    color: #8a97a5;

    font-size: 11px;

    line-height: 1.8;
}


.inquiry-required-note span {
    color: #e24747;

    font-weight: 800;
}



/* =========================================================
   SUCCESS SECTION
========================================================= */

.inquiry-success {
    padding: 90px 0;

    background:
        #f7f9fc;
}


.inquiry-success-content {
    max-width: 680px;

    margin: 0 auto;

    padding: 55px 30px;

    border:
        1px solid #dce9e1;

    border-radius: 20px;

    background: #ffffff;

    text-align: center;

    box-shadow:
        0 15px 45px rgba(15, 35, 55, 0.07);
}


.inquiry-success-icon {
    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    background:
        #e7f8ee;

    color: #1c9b4c;

    font-size: 32px;

    font-weight: 800;
}


.inquiry-success-content > span {
    display: block;

    margin-bottom: 10px;

    color: #1c9b4c;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.inquiry-success-content h2 {
    margin: 0 0 15px;

    color: #193148;

    font-size: 28px;

    font-weight: 800;
}


.inquiry-success-content p {
    max-width: 550px;

    margin: 0 auto 25px;

    color: #718093;

    font-size: 14px;

    line-height: 2;
}


.inquiry-success-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 25px;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #168cdb,
            #075ca8
        );

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 750;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.inquiry-success-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(11, 112, 184, 0.20);
}



/* =========================================================
   HIDDEN
========================================================= */

[hidden] {
    display: none !important;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .inquiry-layout {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .inquiry-info {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .inquiry-info-card:last-child {
        grid-column:
            1 / -1;
    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .inquiry-hero {
        min-height: 360px;

        padding:
            85px 18px
            65px;
    }


    .inquiry-hero-badge {
        padding: 7px 14px;

        font-size: 10px;

        letter-spacing: 1.5px;
    }


    .inquiry-hero h1 {
        font-size: 30px;

        margin-bottom: 15px;
    }


    .inquiry-hero p {
        font-size: 13px;

        line-height: 1.9;
    }


    .inquiry-section {
        padding: 60px 0;
    }


    .inquiry-section .section-heading {
        margin-bottom: 35px;

        padding: 0 5px;
    }


    .inquiry-section .section-heading h2 {
        font-size: 26px;
    }


    .inquiry-section .section-heading p {
        font-size: 13px;
    }


    .inquiry-info {
        display: flex;

        flex-direction: column;

        gap: 12px;
    }


    .inquiry-info-card {
        padding: 18px;

        border-radius: 13px;
    }


    .inquiry-info-card:last-child {
        grid-column: auto;
    }


    .inquiry-info-icon {
        flex-basis: 42px;

        width: 42px;
        height: 42px;

        font-size: 18px;
    }


    .inquiry-info-card h3 {
        font-size: 15px;
    }


    .inquiry-info-card p {
        font-size: 12px;
    }


    .inquiry-form-wrapper {
        padding: 20px 16px;

        border-radius: 15px;
    }


    .inquiry-form {
        gap: 17px;
    }


    .form-group input {
        min-height: 48px;
    }


    .form-group input,
    .form-group textarea {
        padding: 11px 13px;

        font-size: 13px;
    }


    .form-group textarea {
        min-height: 135px;
    }


    .inquiry-submit-button {
        min-height: 52px;

        font-size: 13px;
    }


    .inquiry-success {
        padding: 60px 0;
    }


    .inquiry-success-content {
        padding: 40px 20px;

        border-radius: 15px;
    }


    .inquiry-success-icon {
        width: 60px;
        height: 60px;

        font-size: 27px;
    }


    .inquiry-success-content h2 {
        font-size: 23px;
    }


    .inquiry-success-content p {
        font-size: 13px;
    }

}