.ps-page--get-request {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 40%);
    padding: 40px 0 64px;
}

.rfq-page-hero {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 32px;
    padding: 0 16px;
}

.rfq-page-hero__badge {
    display: inline-block;
    padding: 6px 14px;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #dc2626;
    background: #fef2f2;
    border-radius: 999px;
}

.rfq-page-hero h1 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.rfq-page-hero p {
    font-size: 16px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.rfq-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.rfq-info-card {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    color: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
    position: sticky;
    top: 24px;
}

.rfq-info-card h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.rfq-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.rfq-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.5;
    color: #e2e8f0;
}

.rfq-info-list li i {
    color: #f87171;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.rfq-info-card__note {
    font-size: 13px;
    color: #94a3b8;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin: 0;
    line-height: 1.5;
}

.rfq-form-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

.rfq-form-section {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f1f5f9;
}

.rfq-form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.rfq-form-section__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
}

.rfq-form-section__title i {
    color: #dc2626;
}

.rfq-field {
    margin-bottom: 16px;
}

.rfq-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.rfq-field label .required {
    color: #dc2626;
}

.rfq-field .form-control,
.rfq-field select,
.rfq-field textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 14px;
    color: #0f172a;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rfq-field .form-control:focus,
.rfq-field select:focus,
.rfq-field textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.rfq-field .form-control.is-invalid,
.rfq-field select.is-invalid,
.rfq-field textarea.is-invalid {
    border-color: #dc2626;
}

.rfq-field .invalid-feedback {
    display: block;
    font-size: 12px;
    color: #dc2626;
    margin-top: 5px;
}

.rfq-field__hint {
    font-size: 12px;
    color: #64748b;
    margin-top: 5px;
}

.rfq-field-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.rfq-upload-box {
    text-align: center;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 24px 16px;
    background: #f8fafc;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.rfq-upload-box:hover {
    border-color: #dc2626;
    background: #fef2f2;
}

.rfq-upload-box i {
    font-size: 28px;
    color: #dc2626;
    margin-bottom: 8px;
}

.rfq-upload-box strong {
    display: block;
    color: #0f172a;
    font-size: 14px;
}

.rfq-upload-box span {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}

.rfq-upload-box input[type="file"] {
    display: none;
}

.rfq-upload-filename {
    font-size: 12px;
    color: #059669;
    margin-top: 8px;
}

.rfq-char-count {
    text-align: right;
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}

.rfq-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
}

.rfq-checkbox input {
    margin-top: 3px;
    flex-shrink: 0;
}

.rfq-submit-btn {
    width: 100%;
    margin-top: 24px;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
}

.rfq-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(220, 38, 38, 0.3);
}

.rfq-alert {
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 20px;
    font-size: 14px;
}

.rfq-alert--success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.rfq-alert--error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.rfq-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 991px) {
    .rfq-page-grid {
        grid-template-columns: 1fr;
    }

    .rfq-info-card {
        position: static;
    }

    .rfq-field-row {
        grid-template-columns: 1fr;
    }

    .rfq-form-card {
        padding: 24px 20px;
    }
}
