/* CodLab Price Inquiry Modal */
.clinq-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.clinq-modal.active {
    opacity: 1;
    visibility: visible;
}

.clinq-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.clinq-modal-container {
    position: relative;
    background: #fff;
    border-radius: 16px;
    max-width: 640px;
    width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.clinq-modal.active .clinq-modal-container {
    transform: translateY(0);
}

.clinq-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.clinq-modal-close:hover {
    background: #f0f0f0;
    color: #333;
}

.clinq-modal-header {
    background: linear-gradient(135deg, #0A0A0A, #1A1A1A);
    color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.clinq-modal-header h3 {
    font-size: 1.125rem;
    margin: 0 0 0.25rem;
    color: #fff;
}

.clinq-modal-header .article {
    color: #B87333;
    font-size: 0.8125rem;
    font-weight: 500;
}

.clinq-form-group {
    margin-bottom: 1rem;
}

.clinq-form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 0.375rem;
}

.clinq-form-group input,
.clinq-form-group textarea {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.875rem;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.clinq-form-group input:focus,
.clinq-form-group textarea:focus {
    outline: none;
    border-color: #B87333;
    box-shadow: 0 0 0 3px rgba(184,115,51,0.1);
}

.clinq-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 480px) {
    .clinq-form-row { grid-template-columns: 1fr; }
}

.clinq-privacy {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 1rem;
}

.clinq-submit {
    width: 100%;
    justify-content: center;
}

.clinq-success {
    text-align: center;
    padding: 2rem 0;
}

.clinq-success h3 {
    font-size: 1.25rem;
    margin: 1rem 0 0.5rem;
    color: #22C55E;
}

.clinq-success p {
    color: #666;
    font-size: 0.875rem;
}
