/* ==========================================
   INQUIRY PAGE STYLES
   ========================================== */

.inquiry-container {
    padding: 60px 20px;
}

.inquiry-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* LEFT COLUMN: Product Info */
.inquiry-product-info {
    flex: 1;
    position: sticky;
    top: 120px; /* Keeps product visible while scrolling form */
}

    .inquiry-product-info h1 {
        font-size: 36px;
        font-weight: 900;
        margin-bottom: 30px;
        border-left: 5px solid var(--sem-yellow);
        padding-left: 15px;
    }

.selected-machine {
    background: #f9f9f9;
    padding: 30px;
    text-align: center;
    border: 1px solid #eee;
}

    .selected-machine img {
        max-width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .selected-machine h2 {
        font-size: 24px;
        font-weight: 900;
    }

    .selected-machine p {
        color: #666;
        font-weight: bold;
    }

.info-note {
    margin-top: 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* RIGHT COLUMN: Form */
.inquiry-form-box {
    flex: 1.5;
    background: #fff;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group.full-width {
        grid-column: span 2;
    }

    .form-group label {
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 8px;
        color: #333;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 0; /* Industrial sharp corners */
        font-family: inherit;
        font-size: 14px;
        transition: border-color 0.3s;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--sem-yellow);
        }

/* Privacy Checkbox */
.privacy-note {
    margin: 30px 0;
}

    .privacy-note a {
        color: var(--sem-yellow);
        text-decoration: underline;
    }

/* Submit Button */
.btn-submit {
    width: 100%;
    background-color: var(--sem-yellow);
    border: none;
    padding: 18px;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

    .btn-submit:hover {
        background-color: #000;
        color: #fff;
    }

/* Responsive */
@media (max-width: 992px) {
    .inquiry-wrapper {
        flex-direction: column;
    }

    .inquiry-product-info {
        position: static;
        width: 100%;
        margin-bottom: 40px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }
}
