/* Premium ERP Consultation Form Styles */

.consultation-page {
    padding: 40px 0;
    background-color: #f8fafc;
}

.contact-form-section {
    padding: 5rem 0;
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.highlight {
    color: #875a7b;
    position: relative;
}

.section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 2.5rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Side Form Container */
.form-container {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    padding: 2rem;
}

.form-header {
    margin-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 0.75rem;
}

.form-header h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #64748b;
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-group label {
    font-size: 0.90rem;
    font-weight: 600;
    color: #475569;
    margin-left: 2px;
}

/* Form Controls - Standardized */
.form-control {
    width: 100% !important;
    height: 42px !important;
    padding: 0 14px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    font-size: 0.95rem !important;
    transition: all 0.2s ease;
    background-color: #fff !important;
    color: #1e293b !important;
    box-sizing: border-box !important;
}

.form-control:focus {
    outline: none !important;
    border-color: #875a7b !important;
    box-shadow: 0 0 0 3px rgba(135, 90, 123, 0.1) !important;
}

select.form-control {
    cursor: pointer;
}

textarea.form-control {
    height: auto !important;
    min-height: 120px !important;
    padding: 12px 14px !important;
}

/* Checkbox Groups */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    background: #f8fafc;
    padding: 0.75rem;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #475569;
    cursor: pointer;
}

/* Submit Button */
.btn-primary-large {
    background: linear-gradient(135deg, #875a7b 0%, #714b67 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(113, 75, 103, 0.2);
}

.btn-primary-large:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(113, 75, 103, 0.3);
}

/* Right Side Styles */
.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.highlight-card {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: #fde68a;
}
