.contact-modal-enhanced .modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(30, 30, 45, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.contact-modal-enhanced .modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 2rem;
    position: relative;
}

.contact-modal-enhanced .modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.contact-modal-enhanced .modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.contact-modal-enhanced .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact-modal-enhanced .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.contact-modal-enhanced .modal-body {
    padding: 2rem;
}

.contact-modal-enhanced .cm-form-label {
    color: #a8b3cf;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-modal-enhanced .cm-form-input {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    padding: 0.875rem 1rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    width: 100%;
}

.contact-modal-enhanced .cm-form-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
    color: white;
    outline: none;
}

.contact-modal-enhanced .cm-form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.contact-modal-enhanced .cm-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-modal-enhanced .modal-footer {
    border: none;
    padding: 1.5rem 2rem 2rem;
    display: flex;
    gap: 1rem;
}

.contact-modal-enhanced .cm-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 0.875rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.contact-modal-enhanced .cm-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-modal-enhanced .cm-btn-primary:hover::before {
    left: 100%;
}

.contact-modal-enhanced .cm-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.contact-modal-enhanced .cm-btn-primary:active {
    transform: translateY(0);
}

.contact-modal-enhanced .cm-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-modal-enhanced .cm-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.contact-modal-enhanced .cm-form-group {
    margin-bottom: 1.5rem;
}

/* Demo button */
.cm-demo-trigger-btn {
    background: white;
    color: #667eea;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cm-demo-trigger-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}