/* Professional Header */
.inquiry-header {
    background: linear-gradient(135deg, #09153D 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.inquiry-header .container {
    position: relative;
    z-index: 2;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.85);
}

.badge-inquiry {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-weight: 500;
    font-size: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* Company Info Card */
.company-info-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.company-logo-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.company-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-logo-placeholder {
    width: 100%;
    height: 100%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #64748b;
}

.company-name {
    color: #0f172a;
    font-weight: 700;
}

.rating-display {
    color: #fbbf24;
    font-size: 1rem;
}

/* Form Card */
.form-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.form-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #475569;
}

.form-card h2 {
    color: #0f172a;
    font-weight: 700;
    font-size: 1.75rem;
}

/* Professional Form Controls */
.form-control-modern,
.form-select {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: white;
}

.form-control-modern:focus,
.form-select:focus {
    border-color: #64748b;
    box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.1);
    outline: none;
}

.form-label {
    color: #334155;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-check-modern {
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.form-check-modern:hover {
    background: #f8fafc;
}

.form-check-input {
    width: 1.125rem;
    height: 1.125rem;
    border: 2px solid #cbd5e1;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #09153D;
    border-color: #09153D;
}

.form-check-label {
    color: #475569;
    font-size: 0.9rem;
}

.privacy-check {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #e2e8f0;
}

/* Professional Submit Button */
.submit-btn {
    background: #EE1C47;
    border: none;
    border-radius: 8px;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(238, 28, 71, 0.2);
    transition: all 0.2s ease;
}

.submit-btn:hover {
    background: #d01239;
    box-shadow: 0 4px 12px rgba(238, 28, 71, 0.25);
    transform: translateY(-1px);
}

.security-note {
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.security-note i {
    color: #10b981;
    margin-right: 0.5rem;
}

/* Professional Step Cards */
.info-steps h3 {
    color: #0f172a;
    font-weight: 700;
    font-size: 1.5rem;
}

.step-card {
    background: white;
    border-radius: 12px;
    padding: 1.75rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    position: relative;
}

.step-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #cbd5e1;
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 28px;
    height: 28px;
    background: #09153D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #475569;
}

.step-card h5 {
    color: #0f172a;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.step-card p {
    color: #64748b;
    font-size: 0.875rem;
}

/* Professional Alerts */
.alert {
    border-radius: 8px;
    border: 1px solid;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: #f0fdf4;
    border-color: #86efac;
    color: #166534;
}

.alert-danger {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

/* Breadcrumb */
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .inquiry-header h1 {
        font-size: 2rem;
    }

    .form-card .card-body {
        padding: 2rem 1.5rem;
    }

    .step-card {
        padding: 1.5rem;
    }
}
