/* Sales Inquiry Page Styles */

/* Page Header */
.page-header {
    margin-bottom: 30px;
}

.page-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.page-title i {
    margin-right: 12px;
    color: #0077ff;
}

.page-subtitle {
    color: #a4b1cd;
    font-size: 16px;
}

/* Content Layout */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    max-width: 1200px;
}

/* Form Section */
.inquiry-section {
    background-color: #1a2333;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #243447;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.section-title i {
    margin-right: 10px;
    color: #0077ff;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-label .required {
    color: #ef4444;
    margin-left: 4px;
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 12px 16px;
    background-color: #0f1520;
    border: 1px solid #243447;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: #0077ff;
    box-shadow: 0 0 0 3px rgba(0, 119, 255, 0.1);
}

.form-input::placeholder, .form-textarea::placeholder {
    color: #6b7280;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.form-select {
    cursor: pointer;
}

.form-select option {
    background-color: #1a2333;
    color: #ffffff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100%;
}

.btn-primary {
    background-color: #0077ff;
    color: #ffffff;
}

.btn-primary:hover:not(:disabled) {
    background-color: #0066dd;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 119, 255, 0.3);
}

.btn-primary:disabled {
    background-color: #374151;
    color: #6b7280;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn i {
    margin-right: 8px;
}

/* Info Section */
.info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background-color: #1a2333;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #243447;
}

.info-card-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.info-card-title i {
    margin-right: 10px;
    color: #0077ff;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #a4b1cd;
}

.contact-item i {
    width: 20px;
    margin-right: 12px;
    color: #0077ff;
    text-align: center;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.service-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-list li {
    color: #a4b1cd;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.service-list li:before {
    content: "•";
    color: #0077ff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-list li:last-child {
    margin-bottom: 0;
}

.response-info {
    color: #a4b1cd;
    line-height: 1.6;
}

.response-info strong {
    color: #ffffff;
}

.response-note {
    font-size: 13px;
    color: #6b7280;
}

/* Success/Error Messages */
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    align-items: center;
}

.alert i {
    margin-right: 10px;
    flex-shrink: 0;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.alert-error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Spinner Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spin {
    animation: spin 1s linear infinite;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-title {
        font-size: 24px;
    }

    .inquiry-section, .info-card {
        padding: 20px;
    }

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

    .main-content {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 10px;
    }

    .inquiry-section, .info-card {
        padding: 16px;
    }

    .section-title, .info-card-title {
        font-size: 18px;
    }

    .page-title {
        font-size: 20px;
    }

    .btn {
        padding: 12px 20px;
    }
}