.rfq-contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.rfq-contact-header {
    text-align: center;
    margin-bottom: 48px;
}

.rfq-contact-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.rfq-contact-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.rfq-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}

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

.rfq-contact-form-card,
.rfq-contact-info-card,
.rfq-business-hours-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.rfq-card-header {
    padding: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.rfq-card-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #1a1a1a;
}

.rfq-card-header p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.rfq-card-content {
    padding: 24px;
}

.rfq-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rfq-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rfq-form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.rfq-form-group input,
.rfq-form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: all 0.2s;
    box-sizing: border-box;
}

.rfq-form-group input:focus,
.rfq-form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.rfq-form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.rfq-submit-btn {
    width: 100%;
    padding: 12px 24px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.rfq-submit-btn:hover {
    background: #0052a3;
}

.rfq-submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.rfq-icon {
    width: 18px;
    height: 18px;
}

.rfq-form-message {
    padding: 12px;
    border-radius: 6px;
    margin-top: 8px;
    font-size: 0.875rem;
    display: none;
}

.rfq-form-message.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.rfq-form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.rfq-contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.rfq-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
}

.rfq-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.rfq-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rfq-info-icon svg {
    width: 24px;
    height: 24px;
    stroke: #0066cc;
}

.rfq-info-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #1a1a1a;
}

.rfq-info-item p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.rfq-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.rfq-hours-row:last-child {
    border-bottom: none;
}

.rfq-hours-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.rfq-hours-time {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .rfq-contact-header h1 {
        font-size: 2rem;
    }

    .rfq-contact-header p {
        font-size: 1rem;
    }

    .rfq-card-header h2 {
        font-size: 1.25rem;
    }
}
