.contact {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1), transparent 40%);
    pointer-events: none;
}

.bg-primary-soft {
    background-color: rgba(59, 130, 246, 0.2);
}

.badge.bg-primary-soft {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    color: #60a5fa;
}

.input-with-icon .form-control {
    background: rgba(15, 23, 42, 0.7) !important;
    border: 1px solid rgba(59, 130, 246, 0.4) !important;
    color: white !important;
    padding-left: 45px;
    transition: all 0.3s ease;
}

.input-with-icon .form-control:focus {
    background: rgba(15, 23, 42, 0.8) !important;
    border-color: #60a5fa !important;
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
}

.input-with-icon textarea.form-control {
    padding-top: 15px;
}

.message-icon {
    top: 20px !important;
    transform: none !important;
}

.btn-primary {
    background: linear-gradient(45deg, #3b82f6, #60a5fa);
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.9) !important;
}

.contact-form-wrapper {
    background: rgba(15, 23, 42, 0.7) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-content {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
}

.modal-header, .modal-footer {
    border-color: rgba(255, 255, 255, 0.1);
}

.form-check-label {
    color: rgba(255, 255, 255, 0.9) !important;
}

@media (max-width: 991.98px) {
    .contact {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}