    .contact-section {
        /* background: linear-gradient(135deg, #f8f9fa 0%, #e9f2ff 100%); */
        padding: 120px 0;
    }
    
    .contact-form-wrapper {
        border: 1px solid rgba(13, 110, 253, 0.1);
    }
    
    .contact-info-card {
        transition: all 0.3s ease;
        border: 1px solid rgba(13, 110, 253, 0.1);
    }
    
    .contact-info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(13, 110, 253, 0.1) !important;
        border-color: rgba(13, 110, 253, 0.2);
    }
    
    .transition-all {
        transition: all 0.3s ease;
    }
    
    .form-floating label {
        color: #6c757d;
    }
    
    .form-control:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }
    
    .btn-primary {
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
    }
    
    .btn-primary i {
        transition: all 0.3s ease;
    }
    
    .btn-primary:hover i {
        transform: translateX(3px);
    }
    
    .icon-wrapper {
        transition: all 0.3s ease;
    }
    
    .contact-info-card:hover .icon-wrapper {
        background: rgba(13, 110, 253, 0.2) !important;
        transform: rotate(5deg) scale(1.1);
    }
